/* =================================================================
   SORTIR DU BURN-OUT — Méthode David Laussot
   Direction : éditorial sobre masculin, autorité chaleureuse
   Palette : bleu nuit / pétrole + cuivre/or (carte de visite David) + blanc cassé
   ================================================================= */

:root {
  /* Sombres — bleu nuit (carte de visite David) — fond hero/sections + texte */
  --ink:        #14233A;     /* bleu nuit — texte principal + fonds sombres */
  --night:      #0C1A2E;     /* bleu nuit profond — hero overlay + footer */
  --slate:      #243A52;     /* pétrole — borders sombres */
  --dusk:       #586675;     /* gris bleuté — texte secondaire */

  /* Accents cuivre/or (carte de visite) — règle 75% bleu / 5% cuivre */
  --gold:        #C36B36;    /* cuivre — accent principal (CTA, mots-clés) */
  --gold-deep:   #A6531F;    /* cuivre profond — boutons / hover */
  --gold-soft:   #D6A05C;    /* amber-cuivre lumineux — italics sur sombre */
  --terra:       #C9743F;    /* cuivre-orange — accent chaud secondaire */
  --terra-soft:  #DBA074;    /* cuivre doux */

  /* Lumineux — blanc cassé */
  --cream:      #F4EFE7;     /* blanc cassé — fond doux */
  --paper:      #FBF8F2;     /* paper — fond principal */
  --bone:       #F8F3EA;     /* ivoire clair */
  --dust:       #D7CCBA;     /* taupe — borders sobres */
  --dust-soft:  #E8E1D5;     /* taupe très subtle */

  /* Utility */
  --wa-green:   #25D366;
  --wa-green-deep: #128C7E;

  /* Typo */
  --f-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --f-sans:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --e-smooth:  cubic-bezier(0.22, 0.61, 0.36, 1);
  --e-elegant: cubic-bezier(0.65, 0, 0.35, 1);
  --e-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; padding: 0;
  font-family: var(--f-sans);
  font-size: 17px; line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.005em; line-height: 1.18; margin: 0; }
p { margin: 0; }
em { font-style: italic; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* ── eyebrow / lede / h2 commune ── */
.section-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  margin: 0 auto 28px;
  max-width: 880px;
  text-align: center;
  line-height: 1.15;
}
.section-h2--left { text-align: left; margin-left: 0; }
.section-h2 em { font-style: italic; font-weight: 400; }
.h2__accent { color: var(--gold); font-style: italic; font-weight: 400; }
.section-lede {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: #3a3a3a;
  text-align: center;
  max-width: 740px;
  margin: 0 auto 56px;
  font-weight: 400;
  font-style: italic;
}

/* ──────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--f-sans);
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.25s var(--e-smooth), box-shadow 0.25s var(--e-smooth), background 0.25s var(--e-smooth);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
}
.btn--primary {
  background: var(--gold);
  color: var(--paper);
  padding: 12px 24px;
  font-size: 14px;
  box-shadow: 0 8px 22px -8px rgba(195,107,54,0.55);
}
.btn--primary:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px -10px rgba(195,107,54,0.65);
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  padding: 12px 24px;
  font-size: 14px;
  border-color: rgba(255,255,255,0.35);
}
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); }
.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--xl { padding: 18px 36px; font-size: 16px; }
.btn--wa { background: var(--gold); }
.btn--wa:hover { background: var(--gold-deep); }
.btn__arrow { transition: transform 0.3s var(--e-smooth); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ──────────────────────────────────────────────────────
   NAV
   ────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(12,26,46,0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,196,163,0.08);
  transition: padding 0.4s var(--e-smooth), background 0.4s var(--e-smooth);
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(12,26,46,0.96);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--paper); }
.nav__brand-mark { color: var(--gold-soft); display: flex; }
.nav__brand-mark img { height: 34px; width: auto; display: block; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-name {
  font-family: var(--f-display); font-size: 17px; font-weight: 500;
  color: var(--paper); letter-spacing: -0.01em;
}
.nav__brand-sub {
  font-family: var(--f-sans); font-size: 10.5px; font-weight: 400;
  color: rgba(247,241,227,0.55); letter-spacing: 0.04em; margin-top: 1px;
}
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: 13px; font-weight: 500; color: rgba(247,241,227,0.78);
  position: relative; padding: 6px 0;
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--gold-soft); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-soft); transition: width 0.3s var(--e-smooth);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { font-size: 13px; padding: 10px 20px; }

@media (max-width: 960px) {
  .nav__links { display: none; }
}
@media (max-width: 600px) {
  .nav { padding: 12px 0; }
  .nav__brand-sub { display: none; }
  .nav__brand-name { font-size: 15px; }
  .nav__cta { padding: 8px 14px; font-size: 12px; }
  .container { padding: 0 18px; }
}

/* ──────────────────────────────────────────────────────
   HERO — full-bleed (image background + text overlay)
   ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 84px;
  overflow: hidden;
  color: var(--paper);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__image { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__static,
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__static {
  will-change: transform;
  animation: hero-ken-burns 22s var(--e-out) infinite alternate;
}
.hero__video { display: none; }
@media (max-width: 600px) {
  .hero__static { display: none; }
  .hero__video { display: block; }
}
@keyframes hero-ken-burns {
  0%   { transform: scale(1.02) translate(0%, 0%); }
  100% { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,26,46,0.45) 0%, rgba(12,26,46,0.55) 45%, rgba(12,26,46,0.92) 100%),
    linear-gradient(110deg, rgba(195,107,54,0.18) 0%, rgba(195,107,54,0.10) 50%, rgba(12,26,46,0.05) 100%);
  mix-blend-mode: multiply;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: 920px;
  margin: 0 auto; width: 100%;
}
.hero__inner > * {
  opacity: 0; transform: translateY(24px);
  animation: hero-reveal 1s var(--e-smooth) forwards;
}
.hero__inner > *:nth-child(1) { animation-delay: 0.15s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.3s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.45s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.6s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.75s; }
@keyframes hero-reveal { to { opacity: 1; transform: translateY(0); } }

.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 24px;
  position: relative; padding-left: 28px;
}
.hero__eyebrow::before {
  content: ''; position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 20px; height: 1px; background: var(--gold-soft);
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(24px, 4.6vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 auto 30px;
  color: var(--paper);
  max-width: 920px;
  text-wrap: balance;
  text-shadow: 0 4px 30px rgba(12,26,46,0.35);
}
.hero__title em {
  font-style: italic; font-weight: 400; color: var(--gold-soft);
}
#h1Rotate { transition: opacity 0.4s var(--e-smooth); }
/* Hero centré — H1 + H2 + bouton au centre (laisse voir le visage de la photo) */
.hero__inner { text-align: center; }
.hero__eyebrow { padding-left: 0; }
.hero__eyebrow::before { display: none; }
.hero__subtitle { margin-left: auto; margin-right: auto; }
.hero__cta { justify-content: center; }
/* H1 sur UNE ligne pleine largeur sur PC (>=1024px) — wrap 2 lignes en dessous */
@media (min-width: 1024px) {
  .hero__inner { max-width: 94vw; }
  .hero__title {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(30px, 3.0vw, 58px);
  }
  .hero__subtitle { max-width: 700px; }
}
.hero__subtitle {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.4vw, 19px);
  letter-spacing: 0;
  color: rgba(247,241,227,0.78);
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 600px;
  font-style: italic;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px;
}
.hero__note {
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 0.10em;
  color: rgba(247,241,227,0.55);
  text-transform: uppercase;
  margin: 0;
  font-weight: 500;
}
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-line {
  display: block; width: 1px; height: 36px;
  background: rgba(247,241,227,0.4);
  animation: hero-scroll 2s var(--e-smooth) infinite;
}
@keyframes hero-scroll {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 720px) {
  .hero { justify-content: flex-end; padding: 100px 0 60px; }
  .hero__inner { max-width: 100%; }
  .hero__title { font-size: 30px; line-height: 1.1; margin-bottom: 14px; text-align: center; }
  .hero__eyebrow { text-align: center; padding-left: 0; margin-bottom: 14px; font-size: 10.5px; }
  .hero__eyebrow::before { display: none; }
  .hero__subtitle { text-align: center; font-size: 14px; margin: 0 auto 28px; max-width: 100%; }
  .hero__cta { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 18px; }
  .hero__cta .btn--lg { padding: 13px 24px; font-size: 14px; width: 90%; justify-content: center; }
  .hero__note { text-align: center; font-size: 10.5px; letter-spacing: 0.06em; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(12,26,46,0.10) 0%, rgba(12,26,46,0.25) 45%, rgba(12,26,46,0.94) 68%, rgba(12,26,46,0.98) 100%),
      linear-gradient(110deg, rgba(195,107,54,0.10) 0%, rgba(12,26,46,0.05) 100%);
  }
  .hero__scroll { display: none; }
}

/* ──────────────────────────────────────────────────────
   PATHOS
   ────────────────────────────────────────────────────── */
.pathos {
  padding: 110px 0;
  background: var(--paper);
  position: relative;
}
.pathos .section-eyebrow,
.pathos .section-h2 { text-align: center; margin-left: auto; margin-right: auto; }
.pathos .section-h2 { display: block; }
.pathos .section-h2 em { display: inline; }
.pathos__triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
}
.pathos__figure {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 60px -22px rgba(12,26,46,0.22);
  aspect-ratio: 3 / 4;
  margin: 0;
  transition: transform 0.5s var(--e-smooth);
}
.pathos__figure:hover { transform: translateY(-4px); }
.pathos__figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--e-smooth);
}
.pathos__figure:hover img { transform: scale(1.05); }
.pathos__figure figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 32px 24px 22px;
  color: var(--paper);
  background: linear-gradient(to top, rgba(12,26,46,0.94) 0%, rgba(12,26,46,0.55) 65%, transparent 100%);
  display: flex; flex-direction: column; gap: 10px;
}
.pathos__cap-num {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-soft);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pathos__cap-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(14.5px, 1.1vw, 17px);
  color: var(--paper);
  line-height: 1.4;
  font-weight: 300;
}
.pathos__verbatim {
  max-width: 720px; margin: 40px auto 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--dust);
  text-align: center;
}
.pathos__verbatim p {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: #2a2a2a;
  font-style: italic;
  font-weight: 400;
}
.pathos__verbatim strong { color: var(--ink); font-weight: 500; font-style: normal; }
.pathos__verbatim em { color: var(--gold); font-style: italic; }

@media (max-width: 960px) {
  .pathos__triptych { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .pathos { padding: 70px 0; }
  .pathos__triptych { grid-template-columns: 1fr; gap: 16px; margin: 40px 0; }
  .pathos__figure { aspect-ratio: 4 / 3; }
  .pathos__figure figcaption { padding: 22px 18px 16px; }
  .pathos__cap-num { font-size: 24px; }
  .pathos__verbatim p { font-size: 16px; }
}

/* ──────────────────────────────────────────────────────
   BRIDGE — Ce que vous avez déjà essayé (PASTOR Amplify→Bridge)
   ────────────────────────────────────────────────────── */
.bridge {
  padding: 100px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.bridge::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(195,107,54,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(196,168,108,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.bridge .container { position: relative; z-index: 1; }
.bridge .section-eyebrow { color: var(--gold-soft); text-align: center; }
.bridge .section-h2 {
  color: var(--paper);
  max-width: 920px;
  font-size: clamp(28px, 3.6vw, 46px);
  margin-bottom: 56px;
}
.bridge .section-h2 em { color: var(--paper); font-style: italic; opacity: 0.85; }
.bridge .section-h2 .h2__accent { color: var(--gold-soft); }

.bridge__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 48px;
}
.bridge__item {
  padding: 28px 26px 26px;
  background: rgba(247,241,227,0.04);
  border: 1px solid rgba(247,241,227,0.08);
  border-left: 3px solid var(--gold-soft);
  border-radius: var(--r-md);
  transition: background 0.3s ease, transform 0.3s var(--e-smooth);
}
.bridge__item:hover {
  background: rgba(247,241,227,0.06);
  transform: translateY(-3px);
}
.bridge__item-head {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 14px;
  line-height: 1.25;
}
.bridge__item-body {
  font-family: var(--f-sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(247,241,227,0.72);
  margin: 0;
}

.bridge__verdict {
  max-width: 740px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(247,241,227,0.10);
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
  color: rgba(247,241,227,0.92);
  font-style: italic;
  text-align: center;
  font-weight: 300;
}
.bridge__verdict strong { color: var(--gold-soft); font-weight: 500; font-style: normal; }
.bridge__verdict em { color: var(--paper); font-style: italic; font-weight: 400; }

@media (max-width: 960px) {
  .bridge__list { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 720px) {
  .bridge { padding: 60px 0; }
  .bridge .section-h2 { font-size: 24px; margin-bottom: 36px; }
  .bridge__item { padding: 22px 20px; }
  .bridge__item-head { font-size: 17px; }
  .bridge__verdict { font-size: 16.5px; padding-top: 28px; }
}

/* ──────────────────────────────────────────────────────
   DAVID — éthos
   ────────────────────────────────────────────────────── */
.david {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
  position: relative;
}
.david__layout {
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 90px;
  align-items: stretch;
}
.david__photo {
  width: 100%;
  height: 100%;
}
.david__figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  margin: 0;
}
.david__figure--portrait {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  box-shadow:
    0 50px 90px -28px rgba(12,26,46,0.45),
    0 22px 44px -20px rgba(195,107,54,0.22);
}
.david__figure--soin {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 3 / 4;
  z-index: 1;
  rotate: 1.4deg;
  transform-origin: center;
  box-shadow:
    0 40px 80px -28px rgba(12,26,46,0.30),
    0 18px 36px -20px rgba(195,107,54,0.16);
  transition: rotate 0.6s var(--e-smooth), scale 0.6s var(--e-smooth), box-shadow 0.6s var(--e-smooth);
}
.david__figure--soin:hover { rotate: 0deg; scale: 1.02; }

/* Flottaison douce des 2 photos (desktop) — donne de la vie + de la profondeur entre 2 photos similaires */
@media (min-width: 961px) {
  .david__figure--portrait {
    transition: scale 0.6s var(--e-smooth), box-shadow 0.6s var(--e-smooth);
  }
  .david__figure--portrait:hover {
    scale: 1.025;
    box-shadow:
      0 60px 104px -28px rgba(12,26,46,0.50),
      0 26px 50px -20px rgba(195,107,54,0.26);
  }
}
@keyframes davidFloatA {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
@keyframes davidFloatB {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 9px; }
}
@media (prefers-reduced-motion: reduce) {
  .david__figure--portrait, .david__figure--soin { animation: none; }
}
.david__figure img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.david__figure--portrait img { object-position: center 22%; }
.david__figure--soin img { object-position: center 28%; }
.david__figure-caption {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  background: rgba(12,26,46,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid var(--gold-soft);
  display: flex; flex-direction: column; gap: 4px;
  color: var(--paper);
}
.david__figure-caption .david__figure-name { font-size: 17px; }
.david__figure-caption .david__figure-role { font-size: 11.5px; }
.david__figure-caption .david__figure-loc { font-size: 11px; }
.david__figure-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.david__figure-role {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
  margin-top: 2px;
}
.david__figure-loc {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(247,241,227,0.65);
  margin-top: 6px;
}

.david__copy { padding-top: 8px; }
.david__copy p {
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #2a2a2a;
}
.david__copy p strong { color: var(--ink); font-weight: 600; }

.david__verbatim {
  margin: 30px 0;
  padding: 22px 26px;
  background: var(--paper);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  box-shadow: 0 10px 30px -12px rgba(12,26,46,0.12);
}
.david__verbatim p {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 10px;
}
.david__verbatim-who {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.david__anti-ia {
  margin: 30px 0 0;
  padding: 22px 26px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold-soft);
  box-shadow: 0 14px 32px -16px rgba(12,26,46,0.30);
}
.david__anti-ia p {
  font-family: var(--f-display);
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(247,241,227,0.92);
  margin: 0;
  font-weight: 300;
}
.david__anti-ia p strong { color: var(--gold-soft); font-weight: 500; font-style: italic; }

.david__creds {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--dust-soft);
}
.david__creds li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: var(--dusk);
  margin-bottom: 8px;
}
.david__creds li span {
  color: var(--gold); font-weight: 700; font-size: 18px; line-height: 1.2; flex-shrink: 0;
}

.david__family {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--dusk);
}
.david__signature {
  margin-top: 22px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
}

@media (max-width: 960px) {
  .david__layout { grid-template-columns: 1fr; gap: 50px; }
  .david__photo {
    max-width: 420px;
    margin: 0 auto;
    height: auto;
  }
  .david__figure--portrait {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
    aspect-ratio: 4 / 5;
  }
}
@media (max-width: 720px) {
  .david { padding: 70px 0; }
  .david__photo {
    grid-template-columns: 1fr;
    gap: 28px;
    position: static;
  }
  /* Parent figure: auto-size to fit img + caption (no aspect-ratio on parent) */
  .david__figure--portrait {
    aspect-ratio: auto;
    height: auto;
    overflow: visible;
    box-shadow: none;
    max-width: 360px;
    margin: 0 auto;
    background: transparent;
  }
  /* Aspect ratio on the img itself */
  .david__figure--portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    object-position: center 8%;
    border-radius: var(--r-lg);
    box-shadow: 0 30px 60px -22px rgba(12,26,46,0.28);
  }
  /* Caption flows naturally below img */
  .david__figure-caption {
    position: static;
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: var(--r-md);
    left: auto; right: auto; bottom: auto;
  }
  .david__figure-caption .david__figure-name { font-size: 17px; }
  .david__figure-caption .david__figure-role { font-size: 11.5px; }
  .david__figure-caption .david__figure-loc { font-size: 11px; }
  /* Photo soin standalone */
  .david__figure--soin {
    aspect-ratio: 4 / 5;
    margin: 0 auto;
    max-width: 360px;
    width: 100%;
  }
  .david__figure--soin img { object-position: center 22%; }
  .david__copy p { font-size: 15.5px; }
  .david__verbatim { padding: 18px 20px; }
  .david__verbatim p { font-size: 16.5px; }
}

/* ──────────────────────────────────────────────────────
   MÉTHODE — 3 axes
   ────────────────────────────────────────────────────── */
.methode {
  padding: 120px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.methode::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(195,107,54,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(195,107,54,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.methode .container { position: relative; z-index: 1; }
.methode .section-eyebrow { color: var(--gold-soft); }
.methode .section-h2 { color: var(--paper); }
.methode .section-lede { color: rgba(247,241,227,0.78); }

.methode__proof {
  max-width: 760px;
  margin: 0 auto 50px;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(196,168,108,0.08) 0%, rgba(195,107,54,0.04) 100%);
  border: 1px solid rgba(196,168,108,0.20);
  border-radius: var(--r-lg);
  position: relative;
}
.methode__proof::before {
  content: '"';
  position: absolute; top: 6px; left: 22px;
  font-family: var(--f-display); font-size: 86px; line-height: 1;
  color: var(--gold-soft); opacity: 0.30; font-style: italic;
}
.methode__proof-lede {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--paper);
  margin: 0 0 14px;
  font-weight: 400;
}
.methode__proof-lede em { color: var(--gold-soft); font-style: italic; }
.methode__proof-body {
  font-family: var(--f-display);
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(247,241,227,0.85);
  margin: 0 0 18px;
  font-weight: 300;
}
.methode__proof-body em { color: var(--gold-soft); font-style: italic; }
.methode__proof-body strong { color: var(--paper); font-weight: 500; font-style: normal; }
.methode__proof-who {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-soft);
  margin: 0;
  text-align: right;
}

.methode__example {
  margin: 20px 0 0;
  padding: 16px 20px 14px;
  background: rgba(247,241,227,0.04);
  border-left: 2px solid var(--gold-soft);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: rgba(247,241,227,0.78) !important;
  font-style: italic;
}
.methode__example em { font-style: italic; }

.methode__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}
.methode__pillar {
  background: linear-gradient(180deg, rgba(247,241,227,0.04) 0%, rgba(247,241,227,0.02) 100%);
  border: 1px solid rgba(247,241,227,0.10);
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  transition: transform 0.4s var(--e-smooth), border-color 0.3s ease, background 0.3s ease;
}
.methode__pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(196,168,108,0.35);
  background: linear-gradient(180deg, rgba(247,241,227,0.06) 0%, rgba(247,241,227,0.03) 100%);
}
.methode__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.methode__title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--paper);
  margin: 0 0 14px;
  line-height: 1.15;
}
.methode__what {
  font-family: var(--f-sans);
  font-size: 13.5px;
  color: var(--gold-soft);
  margin: 0 0 16px;
  line-height: 1.5;
}
.methode__what strong { font-weight: 600; color: var(--gold-soft); }
.methode__pillar p:not(.methode__what) {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(247,241,227,0.72);
  margin: 0;
}
.methode__pillar p strong { color: var(--paper); font-weight: 500; }

.methode__note {
  font-family: var(--f-sans);
  font-size: 13px;
  color: rgba(247,241,227,0.5);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid rgba(247,241,227,0.10);
}

@media (max-width: 960px) {
  .methode__grid { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 720px) {
  .methode { padding: 70px 0; }
  .methode__pillar { padding: 28px 24px; }
}

/* ──────────────────────────────────────────────────────
   PARCOURS — 4 temps
   ────────────────────────────────────────────────────── */
.parcours {
  padding: 120px 0;
  background: var(--bone);
  position: relative;
}
.parcours__timeline {
  max-width: 880px; margin: 0 auto;
  position: relative;
}
.parcours__timeline::before {
  content: ''; position: absolute;
  left: 40px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(180deg, var(--dust) 0%, var(--gold) 50%, transparent 100%);
}
.parcours__step {
  display: flex; gap: 32px;
  margin-bottom: 50px;
  position: relative;
}
.parcours__step:last-child { margin-bottom: 0; }
.parcours__step-num {
  flex-shrink: 0;
  width: 80px;
}
.parcours__step-num span {
  display: flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  background: var(--paper);
  border: 1px solid var(--dust);
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 28px -14px rgba(12,26,46,0.18);
}
.parcours__step-body { flex: 1; padding-top: 14px; }
.parcours__step-when {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.parcours__step-title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.parcours__step-body p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  margin: 0;
}
.parcours__step-body p strong { font-weight: 600; color: var(--ink); }

@media (max-width: 720px) {
  .parcours { padding: 70px 0; }
  .parcours__timeline::before { left: 24px; }
  .parcours__step { gap: 20px; margin-bottom: 38px; }
  .parcours__step-num { width: 48px; }
  .parcours__step-num span { width: 48px; height: 48px; font-size: 17px; }
  .parcours__step-body { padding-top: 4px; }
  .parcours__step-title { font-size: 21px; }
  .parcours__step-body p { font-size: 15px; }
}

/* ──────────────────────────────────────────────────────
   CAS ACCOMPAGNÉS
   ────────────────────────────────────────────────────── */
.cas {
  padding: 110px 0;
  background: var(--paper);
}
.cas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto 36px;
}
.cas__card {
  background: var(--cream);
  border: 1px solid var(--dust-soft);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
}
.cas__card::before {
  content: '"';
  position: absolute; top: 12px; right: 26px;
  font-family: var(--f-display); font-size: 80px;
  color: var(--gold); opacity: 0.18; line-height: 1;
}
.cas__who {
  font-family: var(--f-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.cas__card p:not(.cas__who) {
  font-family: var(--f-display);
  font-size: 17px;
  line-height: 1.6;
  color: #2a2a2a;
  font-style: italic;
  margin: 0;
}
.cas__card p:not(.cas__who) strong { color: var(--ink); font-weight: 500; font-style: normal; }

.cas__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.cas__timeline::before {
  content: ''; position: absolute;
  left: 8px; top: 8px; bottom: 14px;
  width: 1px; background: linear-gradient(180deg, var(--gold-soft) 0%, var(--dust) 100%);
}
.cas__timeline li {
  position: relative;
  padding: 0 0 18px 30px;
  font-family: var(--f-display);
  font-size: 15.5px;
  line-height: 1.6;
  color: #2a2a2a;
  font-style: italic;
}
.cas__timeline li::before {
  content: ''; position: absolute;
  left: 4px; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px var(--cream);
}
.cas__timeline li:last-child { padding-bottom: 0; }
.cas__when {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 6px;
  font-style: normal;
}
.cas__timeline li strong { color: var(--ink); font-weight: 500; font-style: normal; }
.cas__disclaimer {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--dusk);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid var(--dust-soft);
}
@media (max-width: 720px) {
  .cas { padding: 70px 0; }
  .cas__grid { grid-template-columns: 1fr; gap: 18px; }
  .cas__card { padding: 28px 24px; }
  .cas__card p:not(.cas__who) { font-size: 15.5px; }
}

/* ──────────────────────────────────────────────────────
   AVIS GOOGLE
   ────────────────────────────────────────────────────── */
.avis { padding: 100px 0; background: var(--paper); }
.avis__bridge { max-width: 720px; margin-left: auto; margin-right: auto; }
.avis__rating {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 26px auto 44px;
}
.avis__rating-stars { color: var(--gold); font-size: 22px; letter-spacing: 3px; line-height: 1; }
.avis__rating-score {
  font-family: var(--f-sans); font-size: 15px; color: var(--ink); letter-spacing: 0.01em;
}
.avis__rating-score strong { font-family: var(--f-display); font-size: 20px; font-weight: 500; }
.avis__grid {
  columns: 3 300px; column-gap: 24px;
  max-width: 1120px; margin: 0 auto;
}
.avis__card {
  break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
  display: inline-block; width: 100%;
  background: var(--cream); border: 1px solid var(--dust-soft);
  border-radius: var(--r-lg); padding: 24px 22px; margin: 0 0 24px;
}
.avis__card-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; line-height: 1; margin-bottom: 12px; }
.avis__text {
  font-family: var(--f-display); font-size: 15.5px; line-height: 1.62;
  color: #2a2a2a; font-style: italic; margin: 0 0 16px;
}
.avis__author { display: flex; align-items: center; gap: 11px; }
.avis__avatar {
  flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans); font-weight: 600; font-size: 15px; line-height: 1;
}
.avis__id { display: flex; flex-direction: column; line-height: 1.25; }
.avis__name { font-family: var(--f-sans); font-weight: 600; font-size: 13.5px; color: var(--ink); }
.avis__source { font-family: var(--f-sans); font-size: 11px; color: var(--dusk); }
@media (max-width: 720px) {
  .avis { padding: 64px 0; }
  .avis__grid { columns: 1; }
  .avis__rating { margin-bottom: 32px; }
}


/* ──────────────────────────────────────────────────────
   STATS
   ────────────────────────────────────────────────────── */
.stats {
  padding: 80px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.stats::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(195,107,54,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
}
.stats__item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(247,241,227,0.04);
  border: 1px solid rgba(247,241,227,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
}
.stats__big {
  font-family: var(--f-display);
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.stats__label {
  font-family: var(--f-sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(247,241,227,0.78);
  margin: 0;
}
.stats__label small {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(247,241,227,0.5);
  font-style: italic;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr; gap: 16px; }
  .stats__item { padding: 24px 16px; }
}

/* ──────────────────────────────────────────────────────
   RDV — calendar + cta
   ────────────────────────────────────────────────────── */
.rdv {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
}
.rdv__layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  max-width: 1080px; margin: 0 auto;
  align-items: start;
}
.rdv__calendar {
  background: var(--paper);
  border: 1px solid var(--dust-soft);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: 0 30px 60px -25px rgba(12,26,46,0.20);
}
.rdv__cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.rdv__cal-month {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.rdv__cal-nav {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: 1px solid var(--dust-soft);
  border-radius: 50%;
  font-size: 20px;
  color: var(--gold);
  transition: background 0.2s ease, color 0.2s ease;
}
.rdv__cal-nav:hover { background: var(--gold); color: var(--paper); }
.rdv__cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 12px;
  text-align: center;
}
.rdv__cal-weekdays span {
  font-family: var(--f-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dusk);
}
.rdv__cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.rdv__cal-day {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-sans); font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}
.rdv__cal-day:hover {
  background: var(--gold);
  color: var(--paper);
  transform: translateY(-1px);
}
.rdv__cal-day.is-empty { background: transparent; cursor: default; }
.rdv__cal-day.is-empty:hover { background: transparent; color: var(--ink); transform: none; }
.rdv__cal-day.is-disabled {
  color: var(--dust);
  background: transparent;
  cursor: not-allowed;
}
.rdv__cal-day.is-disabled:hover { background: transparent; color: var(--dust); transform: none; }
.rdv__cal-day.is-today { border-color: var(--gold); font-weight: 700; }
.rdv__cal-day.is-selected {
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}
.rdv__cal-slots {
  margin-top: 24px; padding-top: 22px;
  border-top: 1px solid var(--dust-soft);
}
.rdv__cal-slots-title {
  font-family: var(--f-sans); font-size: 13px; font-weight: 600;
  color: var(--dusk); margin: 0 0 14px;
  letter-spacing: 0.04em;
}
.rdv__cal-slots-title span { color: var(--ink); }
.rdv__cal-slots-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.rdv__cal-slot {
  padding: 10px 12px;
  background: var(--cream);
  border: 1px solid var(--dust-soft);
  border-radius: var(--r-sm);
  font-family: var(--f-sans); font-size: 13.5px; font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}
.rdv__cal-slot:hover { background: var(--gold); color: var(--paper); border-color: var(--gold); }
.rdv__cal-slot.is-selected { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.rdv__cta-box {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: 38px 32px;
}
.rdv__cta-eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 16px;
}
.rdv__cta-text {
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--paper);
  margin: 0 0 28px;
  font-weight: 400;
}
.rdv__cta-box .btn { width: 100%; }
.rdv__cta-note {
  font-family: var(--f-sans);
  font-size: 12.5px;
  color: rgba(247,241,227,0.55);
  margin: 18px 0 0;
  text-align: center;
  line-height: 1.5;
}
.rdv__cta-note a {
  color: var(--gold-soft);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .rdv__layout { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .rdv { padding: 70px 0; }
  .rdv__calendar { padding: 22px 18px; }
  .rdv__cal-month { font-size: 18px; }
  .rdv__cal-nav { width: 34px; height: 34px; font-size: 18px; }
  .rdv__cal-day { font-size: 13.5px; }
  .rdv__cal-slots-grid { grid-template-columns: repeat(3, 1fr); }
  .rdv__cta-box { padding: 28px 22px; }
}

/* ──────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────── */
.faq {
  padding: 110px 0;
  background: var(--paper);
}
.faq__list {
  max-width: 800px; margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--dust-soft);
  padding: 6px 0;
}
.faq__item summary {
  list-style: none;
  font-family: var(--f-display);
  font-size: 18.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 22px 40px 22px 0;
  cursor: pointer;
  position: relative;
  line-height: 1.35;
  transition: color 0.2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute; right: 0; top: 22px;
  font-family: var(--f-display); font-size: 28px;
  color: var(--gold);
  line-height: 1; font-weight: 300;
  transition: transform 0.3s var(--e-smooth);
}
.faq__item[open] summary::after { content: '−'; transform: rotate(0); }
.faq__item summary:hover { color: var(--gold); }
.faq__item p {
  font-family: var(--f-sans);
  font-size: 15.5px;
  line-height: 1.7;
  color: #3a3a3a;
  padding: 0 60px 24px 0;
  margin: 0;
  animation: faq-open 0.4s var(--e-smooth);
}
@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .faq { padding: 70px 0; }
  .faq__item summary { font-size: 16px; padding: 18px 36px 18px 0; }
  .faq__item summary::after { font-size: 24px; top: 18px; }
  .faq__item p { font-size: 14.5px; padding-right: 0; }
}

/* ──────────────────────────────────────────────────────
   FINAL CTA
   ────────────────────────────────────────────────────── */
.final {
  padding: 130px 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(195,107,54,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at top, rgba(195,107,54,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.final .container { position: relative; z-index: 1; }
.final__overline {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: rgba(247,241,227,0.85);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
  font-style: italic;
  text-align: center;
}
.final__overline em { color: var(--gold-soft); font-style: italic; }
.final__overline strong { color: var(--paper); font-weight: 500; font-style: normal; }
.final__h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: var(--paper);
  margin: 0 0 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.final__lede {
  font-family: var(--f-display);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: rgba(247,241,227,0.78);
  max-width: 640px;
  margin: 0 auto 44px;
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 720px) { .final { padding: 80px 0; } }

/* ──────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────── */
.site-footer {
  background: var(--night);
  color: rgba(247,241,227,0.7);
  padding: 80px 0 130px;
  position: relative;
  border-top: 1px solid rgba(247,241,227,0.06);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}
.site-footer__brand-name {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.site-footer__brand-sub {
  font-family: var(--f-sans);
  font-size: 12px;
  color: var(--gold-soft);
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: inline-block;
}
.site-footer__addr {
  font-size: 13.5px;
  line-height: 1.65;
  margin-top: 16px;
  color: rgba(247,241,227,0.55);
}
.site-footer__h {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 16px;
}
.site-footer__col ul li { margin-bottom: 10px; }
.site-footer__col a {
  font-size: 13.5px;
  color: rgba(247,241,227,0.72);
  transition: color 0.2s ease;
}
.site-footer__col a:hover { color: var(--gold-soft); }

.site-footer__urgence {
  background: linear-gradient(90deg, rgba(195,107,54,0.10) 0%, rgba(195,107,54,0.04) 100%);
  border-left: 3px solid var(--terra);
  padding: 18px 22px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-bottom: 36px;
}
.site-footer__urgence p {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(247,241,227,0.85);
  margin: 0;
}
.site-footer__urgence strong { color: var(--paper); font-weight: 600; }
.site-footer__urgence a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(247,241,227,0.08);
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.site-footer__legal { font-size: 12.5px; display: flex; gap: 14px; align-items: center; }
.site-footer__legal a { color: rgba(247,241,227,0.7); text-decoration: underline; text-underline-offset: 2px; }
.site-footer__legal a:hover { color: var(--gold-soft); }
.site-footer__legal span { opacity: 0.5; }
.site-footer__disclaimer {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(247,241,227,0.5);
  font-style: italic;
  max-width: 540px;
  text-align: right;
  margin: 0;
}
@media (max-width: 720px) {
  .site-footer { padding: 60px 0 130px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 30px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .site-footer__disclaimer { text-align: left; }
}

/* ──────────────────────────────────────────────────────
   STICKY BAR
   ────────────────────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--ink);
  border-top: 1px solid rgba(196,168,108,0.18);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transform: translateY(100%);
  transition: transform 0.42s var(--e-smooth);
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.45);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__text {
  font-family: var(--f-sans); font-size: 13.5px;
  color: rgba(247,241,227,0.85);
  margin: 0;
  font-weight: 400;
}
.sticky-bar__btn { padding: 11px 20px; font-size: 13.5px; }

@media (max-width: 720px) {
  .sticky-bar {
    padding: 10px 14px 14px;
    flex-direction: column; gap: 6px;
  }
  .sticky-bar__text { font-size: 12.5px; text-align: center; }
  .sticky-bar__btn { width: 100%; max-width: 320px; padding: 11px 16px; font-size: 13.5px; }
}

/* ──────────────────────────────────────────────────────
   AUDIO WIDGET — voix David + bed (règle 44 + 46 SKILL)
   ────────────────────────────────────────────────────── */
.audio-widget {
  position: fixed;
  bottom: 96px; left: 28px;
  z-index: 195;
  display: flex; align-items: center; gap: 12px;
}
.audio-widget__fab {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-soft);
  border: 2px solid var(--gold-soft);
  box-shadow: 0 18px 36px -14px rgba(12,26,46,0.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.3s var(--e-smooth), background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.audio-widget__fab:hover { transform: scale(1.08); background: var(--gold); color: var(--ink); }
.audio-widget__fab.is-playing {
  background: var(--gold);
  color: var(--ink);
  animation: aw-pulse 2.4s var(--e-smooth) infinite;
}
@keyframes aw-pulse {
  0%   { box-shadow: 0 18px 36px -14px rgba(196,168,108,0.55), 0 0 0 0 rgba(196,168,108,0.45); }
  50%  { box-shadow: 0 18px 36px -14px rgba(196,168,108,0.55), 0 0 0 18px rgba(196,168,108,0.0); }
  100% { box-shadow: 0 18px 36px -14px rgba(196,168,108,0.55), 0 0 0 0 rgba(196,168,108,0.0); }
}
.audio-widget__label {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(12,26,46,0.20);
}

.audio-welcome {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 178px;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 16px 16px 16px;
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold-soft);
  box-shadow: 0 20px 40px -16px rgba(12,26,46,0.45);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.4s var(--e-smooth), transform 0.4s var(--e-smooth);
}
.audio-welcome.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.audio-welcome__close {
  position: absolute; top: 6px; right: 8px;
  background: none; border: none; color: rgba(247,241,227,0.5);
  font-size: 13px; cursor: pointer; line-height: 1;
  padding: 4px;
}
.audio-welcome__close:hover { color: var(--paper); }
.audio-welcome__title {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold-soft);
  margin: 0 0 4px;
  letter-spacing: 0.01em;
}
.audio-welcome__sub {
  font-family: var(--f-sans);
  font-size: 11.5px;
  color: rgba(247,241,227,0.78);
  margin: 0;
  line-height: 1.4;
}
.audio-welcome__arrow {
  position: absolute;
  bottom: -8px; left: 22px;
  width: 0; height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--ink);
}

@media (max-width: 600px) {
  .audio-widget {
    bottom: calc(140px + env(safe-area-inset-bottom, 0px));
    left: 16px;
  }
  .audio-widget__label { display: none; }
  .audio-welcome { width: 162px; }
}

/* ──────────────────────────────────────────────────────
   SCROLL REVEAL
   ────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--e-smooth), transform 0.8s var(--e-smooth);
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }

/* ============ WOW EFFECTS (lab demo) ============ */
.btn--breathe { animation: cta-breathe 4.2s ease-in-out infinite; }
@keyframes cta-breathe {
  0%,100% { box-shadow: 0 8px 22px -8px rgba(195,107,54,.55), 0 0 0 0 rgba(195,107,54,.45); }
  50%     { box-shadow: 0 8px 22px -8px rgba(195,107,54,.55), 0 0 0 16px rgba(195,107,54,0); }
}
.parcours__progress {
  position: absolute; left: 40px; top: 0; width: 2px; height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  transform: scaleY(0); transform-origin: top center; pointer-events: none;
}
.parcours__step-num span {
  transition: border-color .55s var(--e-out), color .55s var(--e-out), box-shadow .55s var(--e-out);
}
.parcours__step.lit .parcours__step-num span {
  border-color: var(--gold); color: var(--gold);
  box-shadow: 0 0 0 6px rgba(195,107,54,.12);
}
@media (max-width: 720px) { .parcours__progress { left: 24px; } }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 200; transition: width .12s linear; pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn--breathe { animation: none; }
  .parcours__progress, .scroll-progress { display: none; }
}
