/* ==========================================================================
   Studio Web by Élisa — feuille de style commune
   1. Système de conception (variables)
   2. Réinitialisation et bases
   3. Utilitaires de mise en page
   4. Typographie
   5. Boutons et liens
   6. En-tête et navigation
   7. Composants (cartes, chronologie, tableau, FAQ, avant/après…)
   8. Formulaires
   9. Pied de page
   10. Accessibilité et mouvement réduit
   ========================================================================== */

/* ---------------------------------------------------------------
   1. SYSTÈME DE CONCEPTION
   --------------------------------------------------------------- */
:root {
  /* Couleurs de marque */
  --navy: #081633;
  --navy-700: #102A55;
  --navy-500: #214488;
  --blue-400: #3D74C6;
  --blue-300: #6E9BDD;
  --raspberry: #D6206B;
  --raspberry-dark: #A52E6D;
  --cream: #F6F2E9;
  --cream-deep: #EFE8DA;
  --grey-blue: #CED6E7;
  --white: #FFFFFF;

  /* Couleurs d'usage */
  --gold: #C0993F;
  --gold-soft: #E0CE9E;
  --ink: var(--navy);
  --ink-soft: #58637F;
  --ink-on-dark: #E9EDF6;
  --ink-soft-on-dark: var(--grey-blue);
  --line: #E3E7F0;
  --line-dark: rgba(206, 214, 231, 0.22);
  --surface: var(--white);
  --surface-alt: var(--cream);

  /* Dégradé de marque (celui du logo) */
  --brand-gradient: radial-gradient(120% 120% at 22% 14%, #3D74C6 0%, #214488 34%, #102A55 62%, #081633 100%);

  /* Polices */
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Tailles de texte (fluides, mobile-first) */
  --fs-eyebrow: 0.72rem;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: clamp(1.125rem, 0.6vw + 1rem, 1.3125rem);
  --fs-h4: clamp(1.125rem, 0.7vw + 1rem, 1.375rem);
  --fs-h3: clamp(1.375rem, 1.1vw + 1.1rem, 1.875rem);
  --fs-h2: clamp(1.625rem, 1.5vw + 1.05rem, 2.375rem);
  --fs-h1: clamp(2rem, 2.6vw + 1rem, 3.25rem);
  --fs-display: clamp(2.25rem, 3.4vw + 1rem, 4rem);

  /* Interlignes et interlettrages */
  --lh-tight: 1.08;
  --lh-heading: 1.18;
  --lh-body: 1.72;
  --ls-eyebrow: 0.18em;
  --ls-display: -0.015em;

  /* Espacements (base 4px) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 40px;
  --sp-8: 56px;
  --sp-9: 72px;
  --sp-10: 96px;
  --sp-11: 128px;
  --section-y: clamp(64px, 9vw, 144px);
  --gutter: clamp(20px, 5vw, 48px);

  /* Largeurs maximales */
  --w-page: 1240px;
  --w-wide: 1440px;
  --w-text: 62ch;
  --w-narrow: 46ch;

  /* Rayons de bordure */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Ombres */
  --sh-sm: 0 1px 2px rgba(5, 15, 38, 0.06);
  --sh-md: 0 12px 32px -12px rgba(5, 15, 38, 0.16);
  --sh-lg: 0 32px 64px -28px rgba(5, 15, 38, 0.28);
  --sh-raspberry: 0 12px 28px -10px rgba(214, 32, 106, 0.45);

  /* Transitions */
  --t-fast: 140ms ease;
  --t-base: 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-slow: 420ms cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Focus */
  --focus-ring: 3px solid var(--raspberry);
  --focus-offset: 3px;
}

/* ---------------------------------------------------------------
   2. RÉINITIALISATION ET BASES
   --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
}

img { height: auto; }

figure { margin: 0; }

ul, ol { margin: 0; padding: 0; }

li { list-style: none; }

table { border-collapse: collapse; width: 100%; }

button, input, select, textarea { font: inherit; color: inherit; }

/* ---------------------------------------------------------------
   3. UTILITAIRES DE MISE EN PAGE
   --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--w-page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--wide { max-width: var(--w-wide); }
.wrap--text { max-width: calc(var(--w-text) + var(--gutter) * 2); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(40px, 5vw, 72px); }

.section--cream { background: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }

.section--navy {
  background: var(--navy);
  background-image: var(--brand-gradient);
  color: var(--ink-on-dark);
}
.section--navy .lede,
.section--navy p,
.section--navy li { color: var(--ink-soft-on-dark); }
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy strong { color: var(--white); }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 620px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid { gap: var(--sp-6); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: var(--sp-7);
  align-items: center;
}

@media (min-width: 1080px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 88px);
  }
  .split--text-first { grid-template-columns: 1.08fr 0.92fr; }
  .split--media-wide { grid-template-columns: 0.9fr 1.1fr; }
}

@media (min-width: 1080px) and (max-width: 1240px) {
  .hero-title { font-size: clamp(2.25rem, 2.6vw + 0.5rem, 2.75rem); }
}

.section-head { max-width: calc(var(--w-text) + 4ch); margin-bottom: var(--sp-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head > * + * { margin-top: var(--sp-4); }

.hairline {
  height: 1px;
  border: 0;
  background: var(--line);
  margin: 0;
}
.section--navy .hairline { background: var(--line-dark); }

.rule-gold {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border: 0;
  margin: 0;
}

/* ---------------------------------------------------------------
   4. TYPOGRAPHIE
   --------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-display);
  color: var(--navy);
  margin: 0;
  text-wrap: pretty;
}

h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); text-wrap: balance; }
h2 { font-size: var(--fs-h2); text-wrap: balance; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0; max-width: var(--w-text); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--navy-500);
  margin: 0;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

.section--navy .eyebrow { color: var(--gold-soft); }
.section-head--center .eyebrow { justify-content: center; }

.lede {
  font-size: var(--fs-lg);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: var(--w-text);
}

.small { font-size: var(--fs-sm); color: var(--ink-soft); }
.tiny { font-size: var(--fs-xs); color: var(--ink-soft); }

.accent { color: var(--raspberry); }
.serif-italic { font-family: var(--font-display); font-style: italic; }

.num {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: var(--gold);
  line-height: 1;
}

/* ---------------------------------------------------------------
   5. BOUTONS ET LIENS
   --------------------------------------------------------------- */
a {
  color: var(--navy-500);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
a:hover { color: var(--raspberry); }

.section--navy a:not(.btn),
.site-footer p a:not(.btn),
.page-head a:not(.btn),
.cta-panel a:not(.btn) { color: var(--gold-soft); }
.section--navy a:not(.btn):hover,
.site-footer p a:not(.btn):hover,
.page-head a:not(.btn):hover,
.cta-panel a:not(.btn):hover { color: var(--white); }

.section--navy .small,
.section--navy .tiny,
.hero .small,
.hero .tiny,
.about-hero-copy .small,
.about-hero-copy .tiny,
.site-footer .small,
.site-footer .tiny,
.page-head .small,
.page-head .tiny,
.cta-panel .small,
.cta-panel .tiny { color: var(--grey-blue); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 52px;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--t-base), color var(--t-base),
              border-color var(--t-base), box-shadow var(--t-base),
              transform var(--t-base);
}

.btn svg { flex: none; }

.btn--primary {
  background: var(--raspberry);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--raspberry-dark);
  color: var(--white);
  box-shadow: var(--sh-raspberry);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-500);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: rgba(5, 15, 38, 0.22);
  color: var(--navy);
}
.btn--outline:hover {
  border-color: var(--navy);
  background: rgba(5, 15, 38, 0.04);
  color: var(--navy);
}

.btn--light {
  background: var(--white);
  color: var(--navy);
}
.btn--light:hover {
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  border-color: rgba(206, 214, 231, 0.4);
  color: var(--white);
}
.btn--ghost-light:hover {
  border-color: var(--grey-blue);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn--sm { min-height: 44px; padding: 10px 22px; font-size: var(--fs-xs); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-500);
  text-decoration: none;
  min-height: 44px;
}
.link-arrow::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width var(--t-base);
}
.link-arrow:hover { color: var(--raspberry); }
.link-arrow:hover::after { width: 34px; }

/* ---------------------------------------------------------------
   6. EN-TÊTE ET NAVIGATION
   --------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: var(--sp-4);
  z-index: 100;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r-pill);
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform var(--t-base);
}
.skip-link:focus-visible { transform: translateY(0); color: var(--white); }

.topbar {
  background: var(--navy);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 52%),
    linear-gradient(100deg, #16336B 0%, #0E2149 52%, #050F26 100%);
  color: var(--white);
  box-shadow: inset 0 -1px 0 rgba(110, 155, 221, 0.35);
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2) var(--sp-4);
  min-height: 48px;
  padding: 8px var(--gutter);
  text-align: center;
}
.topbar p {
  margin: 0;
  max-width: none;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--white);
}
.topbar .btn {
  min-height: 34px;
  padding: 6px 16px;
  font-size: 0.75rem;
}
.topbar .btn { background: var(--raspberry); color: var(--white); border-color: var(--raspberry); }
.topbar .btn:hover { background: var(--raspberry-dark); color: var(--white); border-color: var(--raspberry-dark); transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 72px;
}

@media (min-width: 1000px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .header-inner > .nav-desktop { justify-self: center; }
  .header-inner > .header-cta { justify-self: end; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  line-height: 1.1;
  text-decoration: none;
  color: var(--navy);
  flex: none;
}
.brand:hover { color: var(--navy); }

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 4px 12px -4px rgba(8, 22, 51, 0.45);
  flex: none;
}

.brand-words { display: flex; flex-direction: column; }
.brand b {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--navy);
}
.brand .brand-words > span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--raspberry);
}

.header-cta { display: none; }
@media (min-width: 1000px) { .header-cta { display: inline-flex; } }

/* Navigation bureau */
.nav-desktop { display: none; }

@media (min-width: 1000px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
  }
  .nav-mobile { display: none !important; }
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.nav-link:hover { background: var(--cream); color: var(--navy-500); }

.nav-link[aria-current="page"] {
  color: var(--raspberry);
  background: rgba(214, 32, 106, 0.07);
}

/* Navigation mobile — sans JavaScript */
.nav-mobile { position: relative; }

.nav-mobile > summary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 48px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(5, 15, 38, 0.18);
  border-radius: var(--r-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.nav-mobile > summary::-webkit-details-marker { display: none; }
.nav-mobile > summary::marker { content: ""; }

.burger { width: 18px; display: grid; gap: 4px; }
.burger i {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
}
.nav-mobile[open] > summary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.nav-mobile[open] .burger i { background: var(--white); }

.nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(88vw, 320px);
  padding: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}

.nav-panel ul { display: grid; gap: 2px; }

.nav-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.nav-panel a:hover { background: var(--cream); color: var(--navy-500); }
.nav-panel a[aria-current="page"] { color: var(--raspberry); }
.nav-panel .btn { width: 100%; margin-top: var(--sp-3); }

/* ---------------------------------------------------------------
   7. COMPOSANTS
   --------------------------------------------------------------- */

/* Héros */
.hero { padding-block: clamp(48px, 7vw, 104px) clamp(48px, 7vw, 96px); }

.hero-title { font-size: var(--fs-display); }

.hero-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--sh-lg);
}
.hero-media img {
  width: 100%;
  height: clamp(280px, 44vw, 540px);
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  right: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--raspberry);
  flex: none;
}

.hero-facts {
  display: grid;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  margin-top: var(--sp-6);
  border-top: 1px solid var(--line);
}
@media (min-width: 620px) { .hero-facts { grid-template-columns: repeat(3, 1fr); } }

.hero-fact strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h4);
  color: var(--navy);
  margin-bottom: 2px;
}
.hero-fact span { font-size: var(--fs-xs); color: var(--ink-soft); }

/* Héros immersif */
.hero--immersive {
  position: relative;
  background: var(--navy);
  background-image:
    linear-gradient(100deg, rgba(8, 22, 51, 0.94) 0%, rgba(13, 38, 87, 0.86) 42%, rgba(31, 93, 168, 0.62) 72%, rgba(46, 110, 190, 0.5) 100%),
    url("../img/elisa-rendez-vous.jpg");
  background-image: linear-gradient(100deg, rgba(8, 22, 51, 0.94) 0%, rgba(13, 38, 87, 0.86) 42%, rgba(31, 93, 168, 0.62) 72%, rgba(46, 110, 190, 0.5) 100%), image-set(url("../img/elisa-rendez-vous.jpg.webp") type("image/webp"), url("../img/elisa-rendez-vous.jpg") type("image/jpeg"));
  background-size: cover, cover;
  background-position: center, 72% center;
  background-repeat: no-repeat;
  color: var(--ink-on-dark);
  padding-block: clamp(88px, 11vw, 176px);
  overflow: hidden;
}
.hero--immersive .lede { max-width: 44ch; }

@media (min-width: 1080px) {
  .hero--immersive .hero-copy { max-width: min(62%, 52rem); }
}

@media (max-width: 860px) {
  .hero--immersive {
    background-color: var(--navy);
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/elisa-rendez-vous.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/elisa-rendez-vous.jpg.webp") type("image/webp"), url("../img/elisa-rendez-vous.jpg") type("image/jpeg"));
    background-size: cover, cover;
    background-position: center, 62% 30%;
    min-height: 0;
    padding-block: clamp(28px, 7vw, 44px);
  }
  .hero--immersive .hero-copy,
  .hero--immersive .lede { max-width: none; }
  .hero--immersive .hero-headline { font-size: clamp(1.75rem, 7.5vw, 2.25rem); line-height: 1.12; }
  .hero--immersive .lede { font-size: 1rem; line-height: 1.45; }
  .hero--immersive .stack-lg { gap: var(--sp-3); }
  .hero--immersive .btn { width: 100%; }
  .hero--immersive .stars-note { font-size: 0.8125rem; line-height: 1.4; }
  .hero--immersive .tiny { font-size: 0.72rem; line-height: 1.35; }
}
.hero--immersive .eyebrow { color: var(--gold-soft); }
.hero--immersive .lede { color: var(--grey-blue); }

.hero-headline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(2.25rem, 3.2vw + 1rem, 4rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
  text-wrap: balance;
}

/* Le visuel se fond dans le dégradé : ni carte blanche, ni coins arrondis */
.hero--immersive .hero-media {
  background: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  aspect-ratio: 3 / 2;
}
.hero--immersive .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.5));
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%),
    linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--grey-blue);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--line-dark);
}
.hero-note .dot {
  width: 8px; height: 8px; border-radius: var(--r-pill);
  background: var(--raspberry); flex: none;
}

.stars-note {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--grey-blue);
}
.stars-note .stars { color: var(--gold-soft); letter-spacing: 0.12em; font-size: var(--fs-sm); }

/* Sous-menu de navigation */
.has-sub { position: relative; }
.has-sub > summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.has-sub > summary::-webkit-details-marker { display: none; }
.has-sub > summary::marker { content: ""; }
.has-sub > summary:hover { background: var(--cream); color: var(--navy-500); }
.has-sub > summary::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.sub-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  min-width: 260px;
  padding: var(--sp-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  z-index: 60;
}
.sub-panel a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.sub-panel a:hover { background: var(--cream); color: var(--navy-500); }
.nav-panel .sub-list { padding-left: var(--sp-4); }
.nav-panel .sub-list a { font-weight: 500; color: var(--ink-soft); }

/* Onglets */
.tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-7);
}
.tab-btn {
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--grey-blue);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--navy);
  font-size: var(--fs-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.tab-btn:hover { border-color: var(--navy-500); }
.tab-btn[aria-selected="true"] {
  background: var(--raspberry);
  border-color: var(--raspberry);
  color: var(--white);
}
.tab-panel {
  max-width: 62ch;
  margin-inline: auto;
  text-align: center;
}
.tab-panel[hidden] { display: none; }
.tab-panel h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-4); }
.tab-panel p { margin-inline: auto; }

/* Accordéon de méthode */
.steps { max-width: calc(var(--w-text) + 10ch); margin-inline: auto; }
.steps details { border-top: 1px solid var(--line); }
.steps details:last-of-type { border-bottom: 1px solid var(--line); }
.steps summary {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-block: var(--sp-5);
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--navy);
}
.steps summary::-webkit-details-marker { display: none; }
.steps summary::marker { content: ""; }
.steps summary:hover { color: var(--raspberry); }
.steps summary b {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  flex: none;
}
.steps summary span { flex: 1; }
.steps summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  background:
    linear-gradient(var(--raspberry), var(--raspberry)) center/12px 1.5px no-repeat,
    linear-gradient(var(--raspberry), var(--raspberry)) center/1.5px 12px no-repeat;
  transition: transform var(--t-base);
}
.steps details[open] summary::after { transform: rotate(45deg); }
.steps .step-body {
  padding: 0 0 var(--sp-6) calc(var(--sp-4) + 26px);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

/* Bandeau défilant */
.marquee {
  background: var(--cream);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: 14px;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: var(--sp-6);
  animation: marquee 38s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-6);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-500);
  white-space: nowrap;
}
.marquee-track i { color: var(--raspberry); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Bandeau de page intérieure */
.page-head {
  background: var(--navy);
  background-image: var(--brand-gradient);
  color: var(--ink-on-dark);
  padding-block: clamp(48px, 7vw, 104px) clamp(48px, 7vw, 96px);
}
.page-head h1 { color: var(--white); }
.page-head .lede { color: var(--grey-blue); }
.page-head .eyebrow { color: var(--gold-soft); }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--grey-blue);
  margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--grey-blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span[aria-hidden="true"] { color: rgba(206, 214, 231, 0.5); }

/* Cartes */
.card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
}
.card:hover {
  border-color: var(--grey-blue);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.card h3 { font-size: var(--fs-h4); }
.card p { font-size: var(--fs-sm); color: var(--ink-soft); max-width: none; }
.card .link-arrow { margin-top: auto; }

.card--cream { background: var(--cream); border-color: transparent; }
.card--flat:hover { transform: none; box-shadow: none; }

.card--dark {
  background: rgba(8, 22, 51, 0.55);
  backdrop-filter: blur(2px);
  border-color: var(--line-dark);
  color: var(--ink-on-dark);
}
.card--dark h3 { color: var(--white); }
.card--dark p { color: var(--grey-blue); }

.icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: var(--cream);
  color: var(--navy-500);
  flex: none;
}
.card--cream .icon-badge { background: var(--white); }
.card--dark .icon-badge { background: rgba(206, 214, 231, 0.12); color: var(--gold-soft); }

.check-list { display: grid; gap: var(--sp-3); }
.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.check-list svg { margin-top: 5px; color: var(--raspberry); }
.section--navy .check-list svg { color: var(--gold-soft); }

/* Problèmes / solutions */
.pair-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 900px) { .pair-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }

.pair-col {
  padding: var(--sp-6);
  border-radius: var(--r-md);
}
.pair-col--problem { background: var(--cream); }
.pair-col--solution { background: var(--navy); background-image: var(--brand-gradient); color: var(--ink-on-dark); }
.pair-col--solution h3, .pair-col--solution h4 { color: var(--white); }
.pair-col--solution p { color: var(--grey-blue); }

.pair-col--light {
  background: var(--white);
  border: 1px solid var(--grey-blue);
  color: var(--navy);
}
.section--navy .pair-col--light h3,
.section--navy .pair-col--light b { color: var(--navy); }
.section--navy .pair-col--light p,
.section--navy .pair-col--light li { color: #1E293B; }
.pair-col--light .pair-list li { border-color: var(--line); }

.pair-col h3 { margin-bottom: var(--sp-5); font-size: var(--fs-h3); }
.pair-list { display: grid; gap: var(--sp-4); }
.pair-list li {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  line-height: 1.62;
}
.pair-list li:first-child { padding-top: 0; border-top: 0; }
.pair-col--solution .pair-list li { border-color: var(--line-dark); color: var(--grey-blue); }
.pair-list b { display: block; font-weight: 700; color: inherit; margin-bottom: 2px; font-size: var(--fs-base); }
.pair-col--solution .pair-list b { color: var(--white); }

/* Chronologie */
.timeline { display: grid; gap: 0; counter-reset: step; }

.timeline-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: var(--sp-5);
  padding-block: var(--sp-6);
  border-top: 1px solid var(--line);
}
.timeline-step:last-child { border-bottom: 1px solid var(--line); }
.section--navy .timeline-step { border-color: var(--line-dark); }

.timeline-step > div:first-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.timeline-step h3 { font-size: var(--fs-h4); margin-bottom: var(--sp-2); }
.timeline-step p { font-size: var(--fs-sm); color: var(--ink-soft); }
.section--navy .timeline-step p { color: var(--grey-blue); }
.timeline-step .tiny { margin-top: var(--sp-3); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

@media (min-width: 900px) {
  .timeline-step { grid-template-columns: 52px 1fr 1fr; align-items: start; }
}

/* Tableau comparatif */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
}

.compare {
  min-width: 720px;
  font-size: var(--fs-sm);
}
.compare caption {
  caption-side: top;
  text-align: left;
  padding: var(--sp-5) var(--sp-6) 0;
  font-size: var(--fs-xs);
  color: var(--ink-soft);
}
.compare th,
.compare td {
  padding: 16px var(--sp-5);
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.compare thead th {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-base);
  color: var(--navy);
  background: var(--cream);
  border-bottom: 1px solid var(--grey-blue);
}
.compare tbody th {
  font-weight: 700;
  color: var(--navy);
  font-size: var(--fs-sm);
}
.compare td { color: var(--ink-soft); }
.compare tbody tr:last-child th,
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover td,
.compare tbody tr:hover th { background: rgba(246, 242, 233, 0.5); }

/* FAQ */
.faq { display: grid; gap: 0; max-width: calc(var(--w-text) + 8ch); }

.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.section--navy .faq details { border-color: var(--line-dark); }

.faq summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-5);
  min-height: 44px;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary:hover { color: var(--raspberry); }
.section--navy .faq summary { color: var(--white); }
.section--navy .faq summary:hover { color: var(--gold-soft); }

.faq summary::after {
  content: "";
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 8px;
  background:
    linear-gradient(var(--raspberry), var(--raspberry)) center/14px 1.5px no-repeat,
    linear-gradient(var(--raspberry), var(--raspberry)) center/1.5px 14px no-repeat;
  transition: transform var(--t-base);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.section--navy .faq summary::after {
  background:
    linear-gradient(var(--gold-soft), var(--gold-soft)) center/14px 1.5px no-repeat,
    linear-gradient(var(--gold-soft), var(--gold-soft)) center/1.5px 14px no-repeat;
}

.faq-answer {
  padding-bottom: var(--sp-6);
  padding-right: var(--sp-7);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}
.faq-answer > * + * { margin-top: var(--sp-3); }
.section--navy .faq-answer { color: var(--grey-blue); }

summary { cursor: pointer; }
summary.link-arrow { list-style: none; }
summary.link-arrow::-webkit-details-marker { display: none; }
summary.link-arrow::marker { content: ""; }

/* Avant / après */
.case {
  padding-block: var(--section-y);
  border-top: 1px solid var(--line);
}
.case:first-of-type { border-top: 0; padding-top: 0; }

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--cream);
  color: var(--navy-500);
  font-size: var(--fs-xs);
  font-weight: 600;
}
.tag--raspberry { background: rgba(214, 32, 106, 0.09); color: var(--raspberry-dark); }
.tag--dark { background: rgba(206, 214, 231, 0.14); color: var(--grey-blue); }

.shot {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid var(--line);
}
.shot img {
  width: 100%;
  height: clamp(220px, 32vw, 380px);
  object-fit: cover;
}
.shot figcaption {
  padding: 14px var(--sp-5);
  font-size: var(--fs-xs);
  color: var(--ink-soft);
  background: var(--white);
  border-top: 1px solid var(--line);
}
.shot figcaption b {
  display: block;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 2px;
}

.ba-grid { display: grid; gap: var(--sp-4); }
@media (min-width: 760px) { .ba-grid { grid-template-columns: 1.25fr 0.75fr; align-items: start; } }

.ba-before img { height: clamp(180px, 22vw, 260px); filter: grayscale(1) contrast(0.9); opacity: 0.75; }

.detail-list { display: grid; gap: var(--sp-5); }
.detail-list > div { padding-top: var(--sp-5); border-top: 1px solid var(--line); }
.detail-list > div:first-child { padding-top: 0; border-top: 0; }
.detail-list dt {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: var(--sp-2);
}
.detail-list dd { margin: 0; font-size: var(--fs-sm); color: var(--ink-soft); line-height: 1.65; }

/* Articles (Conseils) */
.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.article-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.article-card img { width: 100%; height: 200px; object-fit: cover; }
.article-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  flex: 1;
}
.article-body h3 { font-size: var(--fs-h4); }
.article-body p { font-size: var(--fs-sm); color: var(--ink-soft); max-width: none; }
.article-body .link-arrow { margin-top: auto; }

.article-featured { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) {
  .article-featured { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}
.article-featured img {
  width: 100%;
  height: clamp(240px, 34vw, 420px);
  object-fit: cover;
  border-radius: var(--r-md);
}

.topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Appel à l'action */
.cta-panel {
  position: relative;
  padding: clamp(36px, 6vw, 80px);
  border-radius: var(--r-lg);
  background: var(--navy);
  background-image: var(--brand-gradient);
  color: var(--ink-on-dark);
  overflow: hidden;
}
.cta-panel::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(192, 153, 63, 0.35);
}
.cta-panel h2 { color: var(--white); position: relative; }
.cta-panel p { color: var(--grey-blue); position: relative; }
.cta-panel .btn-row { position: relative; }

.cta-panel--cream { background: var(--cream); background-image: none; color: var(--ink); }
.cta-panel--cream h2 { color: var(--navy); }
.cta-panel--cream p { color: var(--ink-soft); }
.cta-panel--cream::after { border-color: rgba(5, 15, 38, 0.12); }

/* Audit offert */
.audit-band {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--grey-blue);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}
@media (min-width: 900px) {
  .audit-band { grid-template-columns: 1fr auto; gap: var(--sp-8); }
}

/* Bloc portrait / à propos */
.portrait {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-deep);
}
.portrait img {
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  object-fit: cover;
  object-position: center 30%;
}

.quote {
  margin: 0;
  padding-left: var(--sp-6);
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  line-height: 1.35;
  color: var(--navy);
}
.section--navy .quote { color: var(--white); border-color: var(--gold-soft); }
.quote footer { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-top: var(--sp-4); }
.section--navy .quote footer { color: var(--grey-blue); }

/* Grille de valeurs */
.value-grid { display: grid; gap: 0; border-top: 1px solid var(--line); }
.section--navy .value-grid { border-color: var(--line-dark); }
.value-grid > div {
  padding-block: var(--sp-6);
  border-bottom: 1px solid var(--line);
}
.section--navy .value-grid > div { border-color: var(--line-dark); }
@media (min-width: 900px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid > div { padding: var(--sp-6) var(--sp-6) var(--sp-7) 0; }
  .value-grid > div + div { border-left: 1px solid var(--line); padding-left: var(--sp-6); }
  .section--navy .value-grid > div + div { border-color: var(--line-dark); }
}
.value-grid h3 { font-size: var(--fs-h4); margin: var(--sp-4) 0 var(--sp-3); }
.value-grid p { font-size: var(--fs-sm); color: var(--ink-soft); max-width: none; }
.section--navy .value-grid p { color: var(--grey-blue); }

/* Bandeau de services (page services) */
.service-block {
  display: grid;
  gap: var(--sp-6);
  padding-block: var(--sp-8);
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .service-block { grid-template-columns: 0.34fr 0.66fr; gap: var(--sp-8); }
}
.service-block h2 { font-size: var(--fs-h3); }
.service-block .num { display: block; margin-bottom: var(--sp-3); }
.service-cols { display: grid; gap: var(--sp-5); }
@media (min-width: 620px) { .service-cols { grid-template-columns: 1fr 1fr; } }
.service-cols h3 {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: var(--sp-3);
}
.service-cols p, .service-cols li { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---------------------------------------------------------------
   8. FORMULAIRES
   --------------------------------------------------------------- */
.form-card {
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
}

fieldset {
  margin: 0 0 var(--sp-7);
  padding: 0;
  border: 0;
}
fieldset:last-of-type { margin-bottom: var(--sp-6); }

legend {
  padding: 0 0 var(--sp-5);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-500);
}

.field-grid { display: grid; gap: var(--sp-5); }
@media (min-width: 620px) { .field-grid--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: var(--sp-2); }

.field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
}
.field label .opt { font-weight: 400; color: var(--ink-soft); }

.field .hint { font-size: var(--fs-xs); color: var(--ink-soft); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--grey-blue);
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
  color: var(--navy);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

textarea { min-height: 156px; resize: vertical; line-height: 1.6; }

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy-500) 50%),
    linear-gradient(135deg, var(--navy-500) 50%, transparent 50%);
  background-position: calc(100% - 22px) 23px, calc(100% - 16px) 23px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

input::placeholder, textarea::placeholder { color: #93A0BC; }

input:hover, select:hover, textarea:hover { border-color: var(--blue-400); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--raspberry);
  box-shadow: 0 0 0 3px rgba(214, 32, 106, 0.14);
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: var(--sp-3);
  align-items: start;
  padding: var(--sp-5);
  background: var(--cream);
  border-radius: var(--r-sm);
}
.consent input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--raspberry);
}
.consent label { font-size: var(--fs-xs); line-height: 1.6; color: var(--ink-soft); }

.radio-list { display: grid; gap: 10px; }
.radio-list label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--sp-3);
  align-items: start;
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.55;
  color: var(--navy);
  cursor: pointer;
}
.radio-list input { width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--raspberry); }
.radio-list--inline { display: flex; flex-wrap: wrap; gap: var(--sp-5); }

.form-note { font-size: var(--fs-xs); color: var(--ink-soft); }

.req { color: var(--raspberry); }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer-bottom .social-row { justify-content: flex-start; }
@media (min-width: 760px) { .footer-bottom .social-row { justify-content: flex-end; } }
.social-row a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-dark);
  color: var(--grey-blue);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.social-row a:hover {
  background: var(--raspberry);
  border-color: var(--raspberry);
  color: var(--white);
}

/* Newsletter */
.newsletter { margin-top: var(--sp-5); }
.newsletter form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-3);
}
.newsletter input[type="email"] {
  flex: 1 1 200px;
  min-height: 48px;
  background: rgba(255,255,255,0.06);
  border-color: var(--line-dark);
  color: var(--white);
}
.newsletter input[type="email"]::placeholder { color: rgba(206,214,231,0.6); }
.newsletter .btn { min-height: 48px; padding: 12px 22px; }
.newsletter .tiny { margin-top: var(--sp-3); color: var(--grey-blue); }

.nl-widget {
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 32px);
}
@media (max-width: 860px) { .nl-widget { padding: clamp(16px, 4vw, 24px); } }

/* Onglet newsletter vertical, collé au bord gauche */
.nl-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
}

.nl-tab > summary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 18px 12px;
  background: var(--raspberry);
  color: var(--white);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: 0 10px 30px -10px rgba(8, 22, 51, 0.5);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  cursor: pointer;
  list-style: none;
  transition: background var(--t-fast);
}
.nl-tab > summary::-webkit-details-marker { display: none; }
.nl-tab > summary::marker { content: ""; }
.nl-tab > summary:hover { background: var(--raspberry-dark); }
.nl-tab[open] > summary { background: var(--navy); }

.nl-panel {
  width: min(88vw, 560px);
  margin-left: 8px;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--grey-blue);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.nl-panel h2 {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  margin-bottom: var(--sp-2);
}
.nl-panel p { font-size: var(--fs-xs); color: var(--ink-soft); margin-bottom: var(--sp-3); }
.nl-panel iframe {
  width: 100%;
  height: 305px;
  border: 0;
  display: block;
}

@media (max-width: 1079px) {
  .nl-tab { top: auto; bottom: 12px; transform: none; align-items: flex-end; }
  .nl-tab > summary { padding: 14px 10px; letter-spacing: 0.1em; }
  .nl-panel { padding: var(--sp-4); }
  .nl-panel iframe { height: 340px; }
}

@media print { .nl-tab { display: none; } }

/* ---------------------------------------------------------------
   9. PIED DE PAGE
   --------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  background-image: radial-gradient(90% 140% at 8% 0%, #1B3A72 0%, #0E2149 42%, #081633 100%);
  color: var(--grey-blue);
  padding-block: var(--sp-9) var(--sp-6);
}

.footer-grid { display: grid; gap: var(--sp-8); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1.1fr 1fr 0.9fr; } }

.site-footer h2,
.site-footer .footer-h {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: var(--sp-5);
}

.footer-brand img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  object-fit: cover;
  margin-bottom: var(--sp-4);
}

.footer-brand b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: var(--sp-3);
}
.footer-brand p { font-size: var(--fs-sm); color: var(--grey-blue); max-width: 34ch; }

.site-footer ul { display: grid; gap: var(--sp-1); }
.site-footer ul a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: var(--fs-sm);
  color: var(--grey-blue);
  text-decoration: none;
}
.site-footer ul a:hover { color: var(--white); }

.footer-mail {
  display: inline-block;
  font-size: var(--fs-sm);
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(192, 153, 63, 0.7);
  text-underline-offset: 5px;
  white-space: nowrap;
  overflow-wrap: normal;
}

@media (max-width: 420px) {
  .footer-mail { white-space: normal; overflow-wrap: anywhere; }
}
.footer-mail:hover { color: var(--gold-soft); }

.footer-bottom {
  display: grid;
  gap: var(--sp-5) var(--sp-7);
  align-items: center;
  margin-top: var(--sp-8);
  padding: var(--sp-5) var(--sp-5) 0;
  border-top: 1px solid var(--line-dark);
  font-size: var(--fs-xs);
}
@media (min-width: 760px) {
  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
}
.footer-copy { display: grid; gap: var(--sp-2); }
.footer-legal { font-size: 0.75rem; }
.footer-legal a { color: #A9B6D0; text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* Pastille WhatsApp */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(8, 22, 51, 0.5);
  transition: transform var(--t-base), background var(--t-fast);
}
.wa-float:hover { background: #1EB855; color: #fff; transform: translateY(-2px); }
@media print { .wa-float { display: none; } }

/* Cookies */
.cookie-zone {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  gap: var(--sp-3);
}
.cookie-launcher {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--grey-blue);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--navy-500);
  cursor: pointer;
  box-shadow: var(--sh-md);
  transition: background var(--t-fast), color var(--t-fast);
}
.cookie-launcher:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.cookie-dialog {
  width: min(84vw, 400px);
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: var(--sp-5);
  background: var(--white);
  border: 1px solid var(--grey-blue);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
}
.cookie-dialog[hidden] { display: none; }
.cookie-dialog h2 { font-size: var(--fs-h4); margin-bottom: var(--sp-3); }
.cookie-dialog p { font-size: var(--fs-xs); color: var(--ink-soft); max-width: none; }
.cookie-prefs { display: grid; gap: var(--sp-3); margin-top: var(--sp-4); }
.cookie-prefs[hidden] { display: none; }
.cookie-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--sp-3);
  align-items: start;
  font-size: var(--fs-xs);
  color: var(--ink-soft);
}
.cookie-row input { width: 20px; height: 20px; margin: 0; accent-color: var(--raspberry); }
.cookie-row b { display: block; color: var(--navy); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-5); }
.cookie-actions .btn[hidden] { display: none; }
.cookie-note { margin-top: var(--sp-4); font-size: var(--fs-xs); }

@media (max-width: 720px) {
  .cookie-zone { left: 12px; right: 78px; bottom: 12px; flex-direction: column; align-items: flex-start; }
  .cookie-dialog { width: 100%; }
}
@media print { .cookie-zone { display: none; } }

/* ---------------------------------------------------------------
   10. ACCESSIBILITÉ ET MOUVEMENT RÉDUIT
   --------------------------------------------------------------- */
:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: var(--r-xs);
}

.site-footer :focus-visible,
.section--navy :focus-visible,
.page-head :focus-visible,
.cta-panel :focus-visible {
  outline-color: var(--gold-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .btn:hover,
  .card:hover,
  .article-card:hover { transform: none; }
}

@media print {
  .site-header, .nav-mobile, .site-footer .footer-legal { display: none; }
  body { color: #000; background: #fff; }
}


/* Rangée d'avis clients */
.avis-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--sp-4);
  align-items: start;
}
@media (max-width: 700px) {
  .avis-row { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}


/* Bloc de prise de rendez-vous */
.rdv-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  background: var(--cream);
  border: 1px solid var(--line);
  overflow: hidden;
}
.rdv-split > .rdv-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(28px, 4vw, 56px);
}
.rdv-split > .rdv-widget {
  background: var(--white);
  border-left: 1px solid var(--line);
}
@media (max-width: 860px) {
  .rdv-split { grid-template-columns: minmax(0, 1fr); }
  .rdv-split > .rdv-widget { border-left: 0; border-top: 1px solid var(--line); }
}


/* Pied de page compact */
.site-footer--slim { padding-block: var(--sp-7) var(--sp-5); }
.site-footer--slim .footer-grid { gap: var(--sp-5) var(--sp-6); }
.site-footer--slim .footer-brand img { width: 44px; height: 44px; margin-bottom: var(--sp-2); }
.site-footer--slim .footer-brand b { font-size: 1rem; margin-bottom: var(--sp-1); }
.site-footer--slim .footer-brand p { font-size: 0.8125rem; line-height: 1.45; max-width: 30ch; }
.site-footer--slim h2,
.site-footer--slim .footer-h { margin-bottom: var(--sp-2); }
.site-footer--slim ul { gap: 2px; }
.site-footer--slim ul a,
.site-footer--slim ul li { font-size: 0.8125rem; line-height: 1.5; min-height: 0; padding-block: 2px; }
@media (min-width: 820px) {
  .site-footer--slim .footer-grid { grid-template-columns: 1.4fr 1fr 0.9fr 0.9fr; }
}
.site-footer--slim .footer-mail { font-size: 0.75rem; }
.site-footer--slim .footer-bottom { margin-top: var(--sp-5); padding-top: var(--sp-4); gap: var(--sp-3) var(--sp-6); }
.site-footer--slim .footer-copy { gap: 6px; }
.site-footer--slim .footer-legal { font-size: 0.75rem; gap: 4px 10px; align-items: center; }
.site-footer--slim .footer-legal span { color: #6D7FA3; }
.site-footer--slim .social-row a { width: 32px; height: 32px; }
.site-footer--slim .social-row svg { width: 17px; height: 17px; }
.btn--sm { padding: 10px 18px; font-size: 0.8125rem; }


/* En-tête page À propos */
.about-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(380px, 44vw, 520px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.about-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
  z-index: -2;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(6,18,46,0.96) 0%, rgba(6,18,46,0.90) 42%, rgba(6,18,46,0.68) 72%, rgba(6,18,46,0.55) 100%);
}
.about-hero-inner { padding-block: clamp(48px, 6vw, 88px); }
.about-hero-copy { max-width: 44ch; color: var(--white); }
.about-hero-copy h1 { color: var(--white); }
.about-hero-copy .eyebrow { color: var(--gold-soft); }
.about-hero-copy .lede { color: var(--grey-blue); }
@media (max-width: 760px) {
  .about-hero { min-height: 0; background: var(--navy); }
  .about-hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: 62% 30%; z-index: -2;
  }
  .about-hero::before {
    display: block;
    background: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%);
  }
  .about-hero-inner { padding-block: clamp(28px, 7vw, 40px); }
  .about-hero-copy h1 { font-size: clamp(1.75rem, 7.5vw, 2.25rem); line-height: 1.12; }
  .about-hero-copy .lede { font-size: 1rem; line-height: 1.45; }
  .about-hero .btn { width: 100%; }
}


/* Bloc IA — page À propos */
.ia-panel {
  margin-top: var(--sp-6);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: var(--navy);
  background-image: radial-gradient(90% 160% at 6% 0%, #1B3A72 0%, #0E2149 48%, #081633 100%);
  border: 1px solid var(--line-dark);
  color: var(--ink-on-dark);
}
.ia-panel h2 { color: var(--white); font-size: clamp(1.25rem, 1.2vw + 0.9rem, 1.6rem); }
.ia-panel p { color: var(--grey-blue); max-width: 72ch; }


/* Liste de faits clés (bloc « En bref ») */
.facts { display: grid; gap: var(--sp-3); margin: 0; }
.facts > div {
  display: grid;
  gap: 2px var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line);
}
.facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--raspberry);
}
.facts dd { margin: 0; color: var(--ink-soft); }
@media (min-width: 760px) {
  .facts > div { grid-template-columns: 12rem 1fr; align-items: baseline; }
}

.faq-answer mark {
  background: rgba(197, 43, 99, 0.10);
  color: var(--raspberry);
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 600;
}


/* Formules de maintenance */
.plans { display: grid; gap: var(--sp-5); align-items: start; }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }

.plan {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
}
.plan h3 { font-size: var(--fs-h4); margin: 0; }
.plan-tagline { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }
.plan-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.plan-price b {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  line-height: 1;
  color: var(--navy);
}
.plan-price span { font-size: var(--fs-sm); color: var(--ink-soft); }
.plan-year { font-size: var(--fs-sm); color: var(--raspberry); font-weight: 600; margin: 0; }
.plan ul { display: grid; gap: var(--sp-2); margin: 0; padding: 0; list-style: none; }
.plan ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink-soft);
}
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2px solid var(--raspberry);
  border-bottom: 2px solid var(--raspberry);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; }
.plan-note { font-size: var(--fs-xs); color: var(--ink-soft); margin: 0; }

.plan--featured {
  border-color: var(--raspberry);
  box-shadow: var(--sh-md);
}
.plan-badge {
  position: absolute;
  top: calc(var(--sp-6) * -1 + 6px);
  left: var(--sp-6);
  background: var(--raspberry);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
@media (min-width: 900px) { .plan--featured { transform: translateY(-8px); } }

/* Pages juridiques */
.legal { max-width: var(--w-text); }
.legal h2 { font-size: var(--fs-h3); margin-top: var(--sp-8); }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: var(--fs-h4); margin-top: var(--sp-6); }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul, .legal ol { display: grid; gap: var(--sp-2); padding-left: 1.2rem; margin-top: var(--sp-3); }
.legal > * + * { margin-top: var(--sp-3); }


/* --- Robustesse de mise en page (anti-débordement) --- */
html, body { overflow-x: hidden; }
.grid > *, .plans > *, .split > *, .rdv-split > *, .footer-grid > *,
.section-head, .card, .plan, .stack, .stack-lg {
  min-width: 0;
}
.card p, .card h3, .plan p, .plan li, .plan h3,
.section-head h2, .section-head p, .faq summary, .faq-answer p {
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* Grilles de cartes : 3 / 2 / 1 colonnes */
@media (min-width: 768px) and (max-width: 1023px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .plan--featured { transform: none; }
}
@media (min-width: 1024px) {
  .plans { grid-template-columns: repeat(3, 1fr); }
}

/* Encadré des conditions sous les tarifs */
.plan-terms {
  margin-top: var(--sp-7);
  padding: var(--sp-6);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  display: grid;
  gap: var(--sp-3);
}
.plan-terms p { color: var(--ink-soft); max-width: none; }

/* Fil d'Ariane dans l'en-tête image */
.about-hero-copy .breadcrumb { margin-bottom: 0; }

/* Numéros d'étapes dans les cartes */
.card .num { margin-bottom: var(--sp-2); }


/* Section diagnostic préalable : deux colonnes équilibrées */
.diag-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 1024px) {
  .diag-split { grid-template-columns: 1fr 1.2fr; gap: 40px; }
}
.diag-split > * { min-width: 0; }

.diag-card {
  width: 100%;
  min-width: 0;
  padding: 32px;
  background: var(--white);
}
.diag-card .check-list,
.diag-card .check-list li {
  width: 100%;
  min-width: 0;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
}


/* Navigation : 7 entrées, on resserre sur les écrans intermédiaires */
@media (min-width: 1000px) and (max-width: 1320px) {
  .nav-desktop ul { gap: 10px; }
  .nav-desktop .nav-link,
  .nav-desktop .has-sub > summary { font-size: 0.8125rem; padding-inline: 8px; }
}
.nav-desktop ul { flex-wrap: wrap; }
.sub-panel { min-width: 16rem; }


/* Sous-bloc « Non compris » dans les cartes de formule */
.plan-exclu {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-4);
  display: grid;
  gap: var(--sp-2);
}
.plan-exclu-title {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}
.plan-exclu ul { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.plan-exclu ul li {
  position: relative;
  padding-left: 1.1rem;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--ink-soft);
}
.plan-exclu ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.6rem;
  height: 0;
  border-top: 1.5px solid var(--grey-blue);
}

/* Cartes à contour bleu marine (page Expertises) */
.card--outline {
  background: var(--white);
  border: 1px solid #0C1E44;
  border-radius: var(--r-md);
  box-shadow: 0 2px 6px -3px rgba(12, 30, 68, 0.18);
  padding: var(--sp-6);
}
.card--outline:hover {
  border-color: #0C1E44;
  box-shadow: 0 10px 24px -12px rgba(12, 30, 68, 0.28);
  transform: translateY(-2px);
}
.card--outline .btn { margin-top: auto; align-self: flex-start; }


/* Fil d'Ariane : icône maison */
.breadcrumb .crumb-home {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px;
  border-radius: 4px;
}
.breadcrumb .crumb-home svg { display: block; }
.breadcrumb { font-size: var(--fs-xs); }
.about-hero-copy .breadcrumb { margin-bottom: 0; }

.avis-row--compact .shot { max-width: 260px; }


/* Détails dépliables d'une formule */
.plan-details { border-top: 1px solid var(--line); padding-top: var(--sp-3); }
.plan-details > summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--raspberry);
}
.plan-details > summary::-webkit-details-marker { display: none; }
.plan-details > summary::marker { content: ""; }
.plan-details > summary::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--t-base);
}
.plan-details[open] > summary::after { transform: rotate(225deg) translateY(2px); }
.plan-details-body { display: grid; gap: var(--sp-4); padding-bottom: var(--sp-3); }
.plan-details-title {
  margin: 0;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.plan-details-body ul { display: grid; gap: 4px; margin: 0; padding: 0; list-style: none; }
.plan-details-body ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: var(--fs-xs);
  line-height: 1.55;
  color: var(--ink-soft);
}
.plan-details-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2px solid var(--raspberry);
  border-bottom: 2px solid var(--raspberry);
  transform: rotate(-45deg);
}

/* Prix « À partir de » : mention avant le montant */
.plan-price--from { flex-wrap: wrap; gap: 4px 8px; }
.plan-price--from span { order: -1; width: 100%; }

/* Périmètre d'une formule : précision neutre */
.plan-scope { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }


/* Accroche de rappel (sans italique) */
.claim {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  margin-inline: auto;
  max-width: 54ch;
  text-wrap: pretty;
}

/* Cartes métier carrées, contour bleu marine */
.metier-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .metier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .metier-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .metier-grid { grid-template-columns: repeat(4, 1fr); } }

.metier-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  min-width: 0;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border: 1px solid #0C1E44;
  border-radius: var(--r-md);
  box-shadow: 0 2px 6px -3px rgba(12, 30, 68, 0.18);
  padding: var(--sp-5);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
@media (hover: hover) {
  .metier-card:hover { box-shadow: 0 12px 26px -14px rgba(12, 30, 68, 0.3); transform: translateY(-2px); }
}
.metier-card h3 { font-size: var(--fs-h4); margin: 0; }
.metier-card p { margin: 0; max-width: none; font-size: 0.8125rem; line-height: 1.5; }
.metier-need { color: var(--ink-soft); }
.metier-gain { color: var(--navy); font-weight: 500; }
.metier-card .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 400px) { .metier-card { aspect-ratio: auto; } }


/* Bandeau de page centré */
.page-head--center .wrap { text-align: center; }
.page-head--center .breadcrumb,
.page-head--center .btn-row { justify-content: center; }
.page-head--center .lede,
.page-head--center p { margin-inline: auto; }

.page-head--center .eyebrow { justify-content: center; }

/* En-tête photo (page WordPress) */
.page-head--photo {
  background-color: var(--navy);
  background-image:
    linear-gradient(100deg, rgba(8, 22, 51, 0.92) 0%, rgba(11, 32, 74, 0.84) 42%, rgba(31, 93, 168, 0.62) 100%),
    url("../img/hero-wordpress-laptop.jpg");
  background-image: linear-gradient(100deg, rgba(8, 22, 51, 0.92) 0%, rgba(11, 32, 74, 0.84) 42%, rgba(31, 93, 168, 0.62) 100%), image-set(url("../img/hero-wordpress-laptop.jpg.webp") type("image/webp"), url("../img/hero-wordpress-laptop.jpg") type("image/jpeg"));
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  min-height: clamp(460px, 46vw, 640px);
  display: flex;
  align-items: center;
}
.page-head--photo .hero-price {
  margin: var(--sp-4) 0 0;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 600;
  color: var(--gold-soft);
}
.page-head--photo .hero-subline {
  margin: var(--sp-4) 0 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--grey-blue);
  max-width: 46ch;
}
@media (max-width: 900px) {
  .page-head--photo {
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/hero-wordpress-laptop.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/hero-wordpress-laptop.jpg.webp") type("image/webp"), url("../img/hero-wordpress-laptop.jpg") type("image/jpeg"));
    background-position: center, 60% center;
  }
}

/* En-tête photo — page Contact */
.page-head--photo-contact {
  background-image:
    linear-gradient(100deg, rgba(8, 22, 51, 0.93) 0%, rgba(11, 32, 74, 0.86) 42%, rgba(31, 93, 168, 0.64) 100%),
    url("../img/hero-contact.jpg");
  background-image: linear-gradient(100deg, rgba(8, 22, 51, 0.93) 0%, rgba(11, 32, 74, 0.86) 42%, rgba(31, 93, 168, 0.64) 100%), image-set(url("../img/hero-contact.jpg.webp") type("image/webp"), url("../img/hero-contact.jpg") type("image/jpeg"));
  background-position: center, 60% 30%;
}
@media (max-width: 900px) {
  .page-head--photo-contact {
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/hero-contact.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/hero-contact.jpg.webp") type("image/webp"), url("../img/hero-contact.jpg") type("image/jpeg"));
    background-position: center, 55% 25%;
  }
}

/* En-tête page Audit : photo plein cadre + film bleu */
.about-hero--audit .about-hero-img { object-position: 60% 30%; }
.about-hero--audit::before {
  background: linear-gradient(100deg, rgba(6,18,46,0.90) 0%, rgba(6,18,46,0.82) 45%, rgba(6,18,46,0.6) 100%);
}
.about-hero--audit .about-hero-copy { max-width: none; }
.about-hero--audit .about-hero-copy .lede,
.about-hero--audit .about-hero-note { max-width: 62ch; }
.about-hero--audit h1 {
  font-size: clamp(1.6rem, 2.9vw, 2.9rem);
  text-wrap: nowrap;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .about-hero--audit h1 { white-space: normal; text-wrap: pretty; }
}
.about-hero-note {
  margin: var(--sp-3) 0 0;
  color: var(--gold-soft);
  font-weight: 600;
}
.about-hero-kicker {
  margin: var(--sp-5) 0 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-blue);
}
@media (max-width: 760px) {
  .about-hero--audit .about-hero-img { object-position: 58% 22%; }
}

/* En-tête photo — page Expertises */
.page-head--photo-expertises {
  background-image:
    linear-gradient(100deg, rgba(6,18,46,0.92) 0%, rgba(6,18,46,0.86) 50%, rgba(6,18,46,0.82) 100%),
    url("../img/hero-expertises.jpg");
  background-image: linear-gradient(100deg, rgba(6,18,46,0.92) 0%, rgba(6,18,46,0.86) 50%, rgba(6,18,46,0.82) 100%), image-set(url("../img/hero-expertises.jpg.webp") type("image/webp"), url("../img/hero-expertises.jpg") type("image/jpeg"));
  background-position: center, 40% 35%;
}
@media (max-width: 900px) {
  .page-head--photo-expertises {
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/hero-expertises.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/hero-expertises.jpg.webp") type("image/webp"), url("../img/hero-expertises.jpg") type("image/jpeg"));
    background-position: center, 35% 30%;
  }
}

/* En-tête photo — page Applications web */
.page-head--photo-app {
  background-image:
    linear-gradient(100deg, rgba(6,18,46,0.93) 0%, rgba(6,18,46,0.87) 48%, rgba(6,18,46,0.7) 100%),
    url("../img/hero-applications-web.jpg");
  background-image: linear-gradient(100deg, rgba(6,18,46,0.93) 0%, rgba(6,18,46,0.87) 48%, rgba(6,18,46,0.7) 100%), image-set(url("../img/hero-applications-web.jpg.webp") type("image/webp"), url("../img/hero-applications-web.jpg") type("image/jpeg"));
  background-position: center, 35% center;
}
.page-head--photo-app h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
@media (max-width: 900px) {
  .page-head--photo-app {
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/hero-applications-web.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/hero-applications-web.jpg.webp") type("image/webp"), url("../img/hero-applications-web.jpg") type("image/jpeg"));
    background-position: center, 40% center;
  }
}

.cta-panel--cream .small,
.cta-panel--cream .tiny { color: var(--ink-soft); }

/* En-tête photo — page Visibilité en ligne */
.page-head--photo-visibilite {
  background-image:
    linear-gradient(100deg, rgba(6,18,46,0.92) 0%, rgba(6,18,46,0.87) 50%, rgba(6,18,46,0.83) 100%),
    url("../img/hero-visibilite.jpg");
  background-image: linear-gradient(100deg, rgba(6,18,46,0.92) 0%, rgba(6,18,46,0.87) 50%, rgba(6,18,46,0.83) 100%), image-set(url("../img/hero-visibilite.jpg.webp") type("image/webp"), url("../img/hero-visibilite.jpg") type("image/jpeg"));
  background-position: center, 55% 40%;
}
@media (max-width: 900px) {
  .page-head--photo-visibilite {
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/hero-visibilite.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/hero-visibilite.jpg.webp") type("image/webp"), url("../img/hero-visibilite.jpg") type("image/jpeg"));
    background-position: center, 50% 35%;
  }
}

/* Lien « Agent IA » mis en valeur dans la navigation */
.nav-link--new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(214, 32, 106, 0.45);
  border-radius: var(--r-pill);
  padding-inline: 14px;
}
.nav-link--new:hover { border-color: var(--raspberry); }
.nav-pill {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  background: var(--raspberry);
  border-radius: var(--r-pill);
  padding: 2px 7px;
}

/* En-tête page Agent IA */
.page-head--photo-ia {
  background-image:
    linear-gradient(100deg, rgba(6,18,46,0.92) 0%, rgba(6,18,46,0.82) 45%, rgba(6,18,46,0.55) 100%),
    url("../img/hero-agent-ia.jpg");
  background-image: linear-gradient(100deg, rgba(6,18,46,0.92) 0%, rgba(6,18,46,0.82) 45%, rgba(6,18,46,0.55) 100%), image-set(url("../img/hero-agent-ia.jpg.webp") type("image/webp"), url("../img/hero-agent-ia.jpg") type("image/jpeg"));
  background-position: center, right center;
}
.page-head--photo-ia .hero-price {
  margin: 0;
  line-height: 1.2;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-soft);
}
@media (max-width: 900px) {
  .page-head--photo-ia {
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/hero-agent-ia.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/hero-agent-ia.jpg.webp") type("image/webp"), url("../img/hero-agent-ia.jpg") type("image/jpeg"));
    background-position: center, 70% center;
  }
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: var(--sp-4);
}
.price-badge {
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--raspberry);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Visuel agent IA */
.ia-visual { margin: 0 0 var(--sp-7); }
.ia-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.section--navy .price-line,
.price-line {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--gold-soft);
}
.price-line b {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
}

/* En-tête photo — page Services complémentaires */
.page-head--photo-services {
  background-image:
    linear-gradient(100deg, rgba(6,18,46,0.93) 0%, rgba(6,18,46,0.87) 48%, rgba(6,18,46,0.74) 100%),
    url("../img/hero-services.jpg");
  background-image: linear-gradient(100deg, rgba(6,18,46,0.93) 0%, rgba(6,18,46,0.87) 48%, rgba(6,18,46,0.74) 100%), image-set(url("../img/hero-services.jpg.webp") type("image/webp"), url("../img/hero-services.jpg") type("image/jpeg"));
  background-position: center, 60% 35%;
}
@media (max-width: 900px) {
  .page-head--photo-services {
    background-image:
      linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%),
      url("../img/hero-services.jpg");
    background-image: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%), image-set(url("../img/hero-services.jpg.webp") type("image/webp"), url("../img/hero-services.jpg") type("image/jpeg"));
    background-position: center, 55% 30%;
  }
}

.hero-claim {
  margin: var(--sp-3) 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  color: var(--gold-soft);
}
.plan { position: relative; }

/* Contenus externes soumis au consentement */
.consent-embed { position: absolute; inset: 0; display: flex; }
.consent-embed[data-consent-height] { position: static; inset: auto; }
.consent-embed .consent-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-3);
  padding: clamp(20px, 4vw, 36px);
  background: var(--navy);
  color: var(--ink-on-dark);
  border-radius: var(--r-md);
  text-align: left;
}
.consent-card-service {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}
.consent-card-why { margin: 0; color: var(--white); }
.consent-card-note { margin: 0; font-size: var(--fs-xs); color: var(--grey-blue); }
.consent-card-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-2); }


/* ------------------------------------------------------------------
   Modèle « Studio Web — pleine largeur »
   Neutralise le conteneur et la carte blanche de Kadence pour que les
   sections pleine largeur touchent réellement les bords de l'écran.
   ------------------------------------------------------------------ */
.swbe-fullwidth {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
}
.swbe-fullwidth .site-main,
.swbe-fullwidth .entry-content-wrap,
.swbe-fullwidth > .site-main > .entry {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.swbe-fullwidth .entry.content-bg {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}


/* ------------------------------------------------------------------
   Téléphone — corrections du 11/09/2026 (rien ne change sur ordinateur)
   Bandeaux photo, étapes du projet, pied de page.
   ------------------------------------------------------------------ */

/* Pages intérieures à bandeau photo */
@media (max-width: 860px) {
  .page-head--photo { min-height: 0; padding-block: clamp(28px, 7vw, 44px); }
  .page-head--photo h1,
  .page-head--photo-app h1 { font-size: clamp(1.75rem, 7.5vw, 2.25rem); line-height: 1.12; }
  .page-head--photo .lede { font-size: 1rem; line-height: 1.45; }
  .page-head--photo .btn { width: 100%; }
}

/* Variante Audit : même film uniforme et même titre que les autres pages */
@media (max-width: 760px) {
  .about-hero--audit::before {
    background: linear-gradient(180deg, rgba(8,22,51,0.78) 0%, rgba(8,22,51,0.74) 100%);
  }
  .about-hero--audit h1 { font-size: clamp(1.75rem, 7.5vw, 2.25rem); line-height: 1.12; }
}

/* Lisibilité du texte sur la photo */
@media (max-width: 860px) {
  .hero--immersive .hero-copy,
  .page-head--photo .wrap,
  .about-hero-copy {
    text-shadow: 0 1px 2px rgba(3, 10, 26, 0.9), 0 3px 14px rgba(3, 10, 26, 0.75);
  }
  .hero--immersive .btn,
  .page-head--photo .btn,
  .about-hero .btn { text-shadow: none; }
}

/* « Comment se déroule votre projet ? » : le texte prend toute la largeur */
@media (max-width: 600px) {
  .timeline .timeline-step { grid-template-columns: 1fr; gap: var(--sp-2); padding-block: var(--sp-5); }
  .timeline .timeline-step > div:first-child { padding-top: 0; }
}

/* Pied de page : tient dans un écran, liens d'au moins 44 px */
@media (max-width: 760px) {
  footer.site-footer { padding-top: var(--sp-5); padding-bottom: 72px; }
  footer.site-footer .site-bottom-footer-inner-wrap { padding-top: 4px; padding-bottom: 0; }
  footer.site-footer .site-middle-footer-inner-wrap { padding-top: 0; padding-bottom: var(--sp-3); }
  footer.site-footer .footer-html { margin-top: 0; margin-bottom: 0; }
  .site-footer .swbe-f .swbe-f-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .site-footer .swbe-f .swbe-f-brand,
  .site-footer .swbe-f .swbe-f-col:last-child { grid-column: 1 / -1; }
  .site-footer .swbe-f .swbe-f-brand { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 4px 12px; }
  .site-footer .swbe-f .swbe-f-logo { width: 40px; height: 40px; margin: 0; }
  .site-footer .swbe-f .swbe-f-base { flex: 1 1 100%; max-width: none; margin: 0; font-size: 0.8125rem; }
  /* Zone d'intervention : une seule ligne séparée par des points */
  .site-footer .swbe-f .swbe-f-col:nth-child(2) { gap: 0; }
  .site-footer .swbe-f .swbe-f-col:nth-child(3) { display: block; font-size: 0.8125rem; line-height: 1.45; }
  .site-footer .swbe-f .swbe-f-col:nth-child(3) .swbe-f-title { display: block; font-size: 15px; line-height: 1.5; margin-bottom: 6px; }
  .site-footer .swbe-f .swbe-f-col:nth-child(3) span:not(.swbe-f-title) { display: inline; font-size: 0.8125rem; line-height: 1.45; }
  .site-footer .swbe-f .swbe-f-col:nth-child(3) span:not(.swbe-f-title):not(:last-child)::after { content: " · "; color: #6D7FA3; }
  /* Sites WordPress : 3 entrées ; Refonte, Expertises et Services restent dans le menu */
  .site-footer .swbe-f .swbe-f-col:nth-child(2) a:nth-of-type(2),
  .site-footer .swbe-f .swbe-f-col:nth-child(2) a:nth-of-type(4),
  .site-footer .swbe-f .swbe-f-col:nth-child(2) a:nth-of-type(6) { display: none; }
  /* Contact : bouton pleine largeur, coordonnées côte à côte */
  .site-footer .swbe-f .swbe-f-col:last-child { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0 18px; }
  .site-footer .swbe-f .swbe-f-col:last-child .swbe-f-title { flex: 1 1 100%; }
  .site-footer .swbe-f .swbe-f-col:last-child .swbe-f-btn { flex: 1 1 100%; justify-content: center; margin: 2px 0 0; }
  .site-footer .swbe-f .swbe-f-col a { min-height: 44px; }
  /* Mentions légales */
  .site-footer .swbe-f .swbe-f-legal { margin-top: var(--sp-4); padding-top: var(--sp-3); gap: 0; }
  .site-footer .swbe-f .swbe-f-legal a,
  .site-footer .swbe-f .swbe-f-legal span { font-size: 0.72rem; }
}


/* ------------------------------------------------------------------
   Textes descendus sous le bandeau — 11/09/2026
   Sur les pages dont le bandeau était trop haut, les paragraphes
   secondaires sont placés en tête de la première section.
   ------------------------------------------------------------------ */
.hero-suite {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 62ch;
  margin: 0 0 var(--sp-7);
}
.hero-suite > p { margin: 0; }
.hero-suite .stars-note { display: block; color: var(--ink-soft); font-size: var(--fs-sm); }
.hero-suite .lede { max-width: none; }
.hero-suite--center { margin-inline: auto; text-align: center; align-items: center; }
.hero-suite--serp {
  max-width: 560px;
  padding: clamp(18px, 4vw, 28px);
  border-radius: var(--r-lg);
  background: var(--navy);
  background-image: var(--brand-gradient);
}
.hero-suite--serp .seo-serp { max-width: none; }

/* Téléphone : marges et titre réduits sur les bandeaux Référencement SEO et Applications web */
@media (max-width: 860px) {
  .page-id-1130 .page-head { padding-block: clamp(28px, 7vw, 44px); }
  .page-id-1130 .page-head h1 { font-size: clamp(1.75rem, 7.5vw, 2.25rem); line-height: 1.12; }
  .page-id-1130 .page-head .lede { font-size: 1rem; line-height: 1.45; margin-top: var(--sp-3) !important; }
  .page-id-1130 .page-head .btn-row { margin-top: var(--sp-4) !important; }
  .page-id-1130 .page-head .btn { width: 100%; }
  .page-head--photo-app .lede { margin-top: var(--sp-3) !important; }
  .page-head--photo-app .btn-row { margin-top: var(--sp-4) !important; }
}


/* Téléphone — bandeaux jusqu'aux bords de l'écran (11/09/2026)
   Accueil, À propos, Tarifs, Services, Maintenance, Audit,
   Contact, Expertises, Applications web, Visibilité, Agent IA, Sites WordPress */
@media (max-width: 767px) {
  .page-id-1010 .hero--immersive,
  .page-id-1020 .about-hero,
  .page-id-1060 .about-hero,
  .page-id-1070 .page-head--photo-services,
  .page-id-1110 .about-hero,
  .page-id-1100 .about-hero,
  .page-id-1170 .page-head--photo,
  .page-id-1050 .page-head--photo,
  .page-id-1090 .page-head--photo,
  .page-id-1120 .page-head--photo,
  .page-id-1080 .page-head--photo,
  .page-id-1030 .page-head--photo {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
