/* ==========================================================================
   Yoga Dance Teacher Training — EN sales page — v2
   Design system: warm off-white / beige-crème light sections, ONE khaki band
   used sparingly (final CTA), single blush/peach accent (#b16537 -> #ead9c4).
   Titles: Playfair Display Regular/Italic (never bold). Body: Geist Light/Regular.
   Star-flower picto used as a small separator before section eyebrows.
   ========================================================================== */

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-display-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand colors — v2, per Sara's art direction (2026-09-10): no dark green
     anywhere; light warm sections only, one khaki band used sparingly.
     See NOTES.md "v2" for the full rationale. */
  /* Palette MOVA (MOVA-branding.pdf, « Les couleurs principales » + secondaires), choix de Sara le 10/09 :
     fond #FCFBF8 (celui des maquettes web MOVA de juillet), crème #EAD9C4, texte Végétal #173222
     (jamais en fond), taupe #8F7B6B (greige, filets et contours), accent terracotta #B16537.
     Rose poudré retiré (« trop pink »). Les teintes marquées « dérivée » sont ces couleurs à opacité réduite. */
  --cream: #fcfbf8;        /* fond de base (maquettes web MOVA) */
  --cream-deep: #f4ece1;   /* dérivée : crème #EAD9C4 à 45 % — sections alternées */
  --taupe: #8f7b6b;        /* taupe MOVA — greige : filets, contours */
  --khaki: #ead9c4;        /* crème MOVA — bande d'appel final */
  --khaki-deep: #173222;   /* végétal — texte sur la bande */
  --blush: #b16537;        /* terracotta MOVA (Rouge terre) — seul accent : boutons, étoile, soulignés */
  --blush-deep: #492d27;   /* brun MOVA — survol des boutons */
  --ink: #173222;          /* végétal MOVA — titres et textes */
  --ink-soft: rgba(23, 50, 34, 0.8);   /* dérivée du végétal — texte courant (AA) */
  --on-khaki: #173222;
  --on-khaki-soft: rgba(23, 50, 34, 0.75);
  --line: rgba(23, 50, 34, 0.14);
  --line-soft: rgba(23, 50, 34, 0.08);
  --line-on-khaki: rgba(23, 50, 34, 0.22);
  --danger: #b3261e;       /* état d'erreur du formulaire uniquement (fonctionnel) */
  --ok: #173222;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 45px -25px rgba(42, 34, 18, 0.28);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 400; font-style: normal;
  line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 0.45em; color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.3vw, 1.4rem); font-weight: 400; }
p { margin: 0 0 1em; }
a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--blush-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--ink); }
.section--khaki a:not(.btn) { color: var(--on-khaki); text-decoration-color: var(--blush); }
.section--khaki a:not(.btn):hover { text-decoration-color: var(--on-khaki); }
ul { padding-left: 0; list-style: none; margin: 0; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  border-radius: 4px;
}
.section--khaki :focus-visible { outline-color: var(--blush); }

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

.skip-link {
  position: absolute; left: 1rem; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  z-index: 1000; transition: transform 0.15s ease;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0.5rem); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--khaki { background: var(--khaki); color: var(--on-khaki); }
.section--khaki h2, .section--khaki h3 { color: var(--on-khaki); }
.section--cream { background: var(--cream); }
.section--cream-dark { background: var(--cream-deep); }

/* star-flower separator, used before every section eyebrow */
.section-eyebrow {
  font-family: var(--font-body); font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; font-size: 0.76rem; color: var(--ink-soft);
  margin: 0 0 0.85rem; display: flex; align-items: center; gap: 0.5rem;
}
.section-eyebrow::before {
  content: ""; display: inline-block; width: 12px; height: 12px; flex: none;
  background-color: var(--blush);
  -webkit-mask: url("../img/picto-sable.svg") center / contain no-repeat;
  mask: url("../img/picto-sable.svg") center / contain no-repeat;
}
.section--khaki .section-eyebrow { color: var(--ink-soft); }
.section--khaki .section-eyebrow::before { background-color: var(--blush); }
.section-head--center .section-eyebrow { justify-content: center; }
.section-head { max-width: 760px; margin: 0 0 2.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 500; font-size: 1rem;
  padding: 0.9rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, box-shadow .15s ease;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blush); color: var(--cream); font-size: 1.17rem; font-weight: 600; }
.btn-primary:hover { background: var(--blush-deep); color: var(--cream); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { background: rgba(23,50,34,0.05); }
.section--khaki .btn-secondary { color: var(--on-khaki); border-color: var(--line-on-khaki); }
.section--khaki .btn-secondary:hover { background: rgba(252,251,248,0.08); }
.btn-dark { background: var(--blush-deep); color: var(--cream); }  /* brun MOVA, plus de bouton vert foncé */
.btn-dark:hover { background: var(--blush); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-ghost-link {
  display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 500;
  text-decoration: none; color: var(--ink); border-bottom: 1.5px solid var(--blush-deep);
  padding-bottom: 0.1em;
}
.section--khaki .btn-ghost-link { color: var(--on-khaki); border-bottom-color: var(--blush); }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--cream-deep); color: var(--ink); border-bottom: 1px solid var(--line);
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.85rem; text-align: center; padding: 0.6rem 1rem;
}
.announce strong { font-weight: 600; }

/* ---------- signature strip ---------- */
.signature-strip {
  background: var(--cream); text-align: center; padding: 0.4rem 1rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft); border-bottom: 1px solid var(--line-soft);
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream); border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; gap: 0.5rem; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; min-width: 0; }
.nav-logo img { height: 26px; width: 110px; object-fit: contain; object-position: left center; }
@media (min-width: 480px) { .nav-logo img { height: 32px; width: 140px; } }
.nav-logo .logo-svg { display: block; width: 110px; height: auto; overflow: visible; }
@media (min-width: 480px) { .nav-logo .logo-svg { width: 140px; } }
.logo-star { transform-box: fill-box; transform-origin: 50% 50%; will-change: transform; }
.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.12em;
}
.nav-links a:hover { color: var(--ink-soft); border-bottom: 1.5px solid var(--blush-deep); }
.nav-cta { display: flex; align-items: center; gap: 0.5rem; flex: none; }
.nav-cta .btn { padding: 0.7rem 1.1rem; font-size: 0.85rem; white-space: nowrap; }
.nav-toggle {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  flex: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.5rem 0.6rem; cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0; background: var(--cream);
  border-top: 1px solid var(--line-soft);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile-signature {
  padding: 0.85rem 1.25rem 0.4rem; font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft);
}
.nav-mobile a {
  padding: 0.9rem 1.25rem; text-decoration: none; color: var(--ink);
  border-bottom: 1px solid var(--line-soft); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* ---------- hero (full-bleed photo) ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream-deep); }
.hero-photo {
  position: relative; min-height: 78vh; display: flex; align-items: flex-end;
}
.hero-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
}
/* parallaxe : la photo glisse dans ce cadre (voir site.js) */
.hero-photo picture { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img, .hero-copy, [data-parallax] img { will-change: transform; }
/* photos de contenu : image plus haute que le cadre, qui glisse dedans (site.js) ; cadrage au repos inchangé */
[data-parallax] { position: relative; overflow: hidden; }
.fit-photo[data-parallax] img { position: absolute; left: 0; top: -30%; width: 100%; height: 160%; object-fit: cover; }
.talk-figure[data-parallax] { aspect-ratio: 4 / 5; }
.talk-figure[data-parallax] img { position: absolute; left: 0; top: -15%; width: 100%; height: 130%; aspect-ratio: auto; object-fit: cover; object-position: 88% 50%; }
/* degrade remplace par un panneau verre depoli (demande Sara 10/09) */
.hero-scrim { display: none; }
/* le .container, item flex a marges auto, se retrecissait et centrait le texte : on le remet pleine largeur */
.hero-photo > .container { width: 100%; }
.hero-copy {
  position: relative; z-index: 2;
  margin: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.75rem, 3.5vw, 3rem);
  max-width: min(620px, 64vw);
  background: rgba(252,251,248,0.42);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(23,50,34,0.10), inset 0 1px 0 rgba(255,255,255,0.65);
}
.hero-eyebrow {
  font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.76rem; color: var(--ink-soft); margin-bottom: 1.1rem; display: flex; align-items: center; gap: 0.5rem;
}
.hero-eyebrow::before {
  content: ""; display: inline-block; width: 12px; height: 12px; flex: none;
  background-color: var(--blush-deep);
  -webkit-mask: url("../img/picto-sable.svg") center / contain no-repeat;
  mask: url("../img/picto-sable.svg") center / contain no-repeat;
}
.hero h1 { color: var(--ink); max-width: 11ch; }
.hero-lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 40ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; margin: 1.75rem 0 0; }
.hero-actions .btn-ghost-link { font-size: 0.95rem; }
/* mobile : image au-dessus, texte en dessous sur creme (pas de panneau verre) */
@media (max-width: 680px) {
  .hero-photo { display: block; min-height: 0; }
  .hero-photo picture { position: relative; display: block; }
  .hero-photo img { position: relative; height: 48vh; min-height: 320px; object-position: center 30%; }
  .hero-copy {
    margin: 0; padding: 2rem 0 2.75rem; max-width: none;
    background: none; -webkit-backdrop-filter: none; backdrop-filter: none;
    border: 0; border-radius: 0; box-shadow: none;
  }
}

/* ---------- certificate card (moved into pricing) ---------- */
.cert-card {
  background: var(--cream); color: var(--ink); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow); position: relative; border: 1px solid var(--line-soft);
}
.cert-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.cert-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.cert-title { font-family: var(--font-display); font-style: italic; font-size: 1.35rem; margin: 0.2rem 0 0; }
.cert-stamp {
  flex: none; width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid var(--blush-deep);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 0.55rem; font-weight: 600; letter-spacing: 0.03em; color: var(--ink-soft);
  padding: 0.4rem; line-height: 1.2; transform: rotate(-8deg);
}
.cert-rows { display: grid; gap: 0.55rem; margin: 1rem 0; font-size: 0.92rem; }
.cert-rows div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px dashed var(--line); padding-bottom: 0.5rem; }
.cert-rows dt { color: var(--ink-soft); font-weight: 500; }
.cert-rows dd { margin: 0; font-weight: 500; text-align: right; }
.cert-offer-tag { font-size: 0.8rem; font-weight: 500; color: var(--ok); margin-bottom: 0.2rem; }

/* ---------- stats band ---------- */
.stats-band { background: var(--cream-deep); }
.stats-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--ink); font-weight: 400; }
.stat-label { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.25rem; }
.stats-source { text-align: center; font-size: 0.76rem; color: var(--ink-soft); margin-top: 1.75rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 1.75rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem; background: transparent; border: 1px solid var(--line);
  color: var(--ink); font-size: 0.78rem; font-weight: 500; padding: 0.5rem 0.9rem; border-radius: 999px;
}

/* ---------- merged narrative block (what's really holding you back) ---------- */
.narrative-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.narrative-item { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.narrative-item h3 { margin-bottom: 0.4rem; font-style: italic; }
.narrative-item p { color: var(--ink-soft); margin: 0; }

/* ---------- what changes (3-up) ---------- */
.trio { display: grid; gap: 1.5rem; margin-top: 2rem; }
.trio-item { background: var(--cream); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.trio-num {
  width: 38px; height: 38px; border-radius: 50%; background: transparent; border: 1.5px solid var(--taupe); color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-weight: 400; margin-bottom: 1rem; font-family: var(--font-display);
}
.trio-item p { color: var(--ink-soft); margin: 0; }

/* ---------- highlighted single question ---------- */
.highlight-question {
  background: var(--cream); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow); max-width: 820px; margin: 0 auto; border: 1px solid var(--line-soft);
}
.highlight-question h2 { font-style: italic; }
.highlight-question p { color: var(--ink-soft); font-size: 1.05rem; margin: 0; }

/* ---------- how it works ---------- */
.steps { display: grid; gap: 1.5rem; margin-top: 2rem; counter-reset: step; }
.step { display: flex; gap: 1.25rem; }
.step-num {
  flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--blush-deep);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 400; font-size: 1.1rem;
}
.step h3 { margin-bottom: 0.3rem; }
.step p { color: var(--ink-soft); margin: 0; }
.steps-cta { display: flex; justify-content: center; margin-top: 2.75rem; }

/* ---------- program ---------- */
.modules { display: grid; gap: 1rem; margin-top: 1.5rem; }
.module {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: flex-start;
  background: var(--cream-deep); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem;
}
.module-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--ink-soft); font-weight: 400; line-height: 1; }
.module h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.module p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.included-box { background: var(--cream-deep); border-left: 3px solid var(--blush-deep); border-radius: var(--radius); padding: 1.75rem; margin-top: 2.5rem; }
.included-box h3 { color: var(--ink); font-style: italic; }
.included-grid { display: grid; gap: 0.6rem; margin: 1rem 0 1.5rem; }
.included-grid li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--ink-soft); font-size: 0.95rem; }
.included-grid svg { flex: none; margin-top: 0.2em; color: var(--ink); }
.program-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.75rem; }

/* ---------- is it for you ---------- */
.fit-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); max-width: 620px; margin: 2rem auto 0; aspect-ratio: 16/9; }
.fit-photo img { width: 100%; height: 100%; object-fit: cover; }
.fit-grid { display: grid; gap: 2rem; margin-top: 2rem; }
.fit-col h3 { display: flex; align-items: center; gap: 0.5rem; font-style: italic; }
.fit-list { display: grid; gap: 0.8rem; margin-top: 1.25rem; }
.fit-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; color: var(--ink-soft); }
.fit-list svg { flex: none; margin-top: 0.2em; }
.fit-yes svg { color: var(--ok); }
.fit-no svg { color: var(--blush); }

/* ---------- founder ---------- */
.founder-grid { display: grid; gap: 2rem; align-items: center; }
.founder-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; background: var(--cream-deep); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Portrait placeholder — no confirmed photo of Élodie is available yet (see PORTRAIT_ELODIE comment in index.html) */
.founder-photo.founder-photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 26%, var(--cream), var(--cream-deep) 72%);
}
.founder-photo.founder-photo--placeholder img { width: 34%; height: auto; object-fit: contain; opacity: 0.9; }
.founder-quote {
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic; color: var(--ink);
  border-left: 3px solid var(--blush-deep); padding-left: 1.25rem; margin: 0 0 1.25rem;
}
.founder-name { font-weight: 600; }
.founder-role { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ---------- values ---------- */
.values-grid { display: grid; gap: 1.5rem; margin-top: 2rem; grid-template-columns: repeat(2,1fr); }
.value-item { text-align: left; }
.value-item h3 { margin-bottom: 0.35rem; font-style: italic; }
.value-item p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ---------- testimonials (currently disabled — kept for a future reactivation) ---------- */
.testimonials-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.testimonial { background: var(--cream-deep); border-radius: var(--radius); padding: 1.75rem; }
.testimonial p { font-size: 1.05rem; color: var(--ink); margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 400; overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-loc { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- capture form ---------- */
.form-wrap { display: grid; gap: 2.5rem; }
.form-card { background: var(--cream); color: var(--ink); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.form-grid { display: grid; gap: 1.1rem; }
.form-row-2 { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 500; font-size: 0.88rem; margin-bottom: 0.4rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select {
  width: 100%; padding: 0.75rem 0.9rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus { border-color: var(--ink); }
.field-hint { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.3rem; }
.field.has-error input, .field.has-error select { border-color: var(--danger); }
.field-error { display: none; color: var(--danger); font-size: 0.8rem; margin-top: 0.3rem; }
.field.has-error .field-error { display: block; }
fieldset { border: 0; padding: 0; margin: 0; }
legend { font-weight: 500; font-size: 0.88rem; margin-bottom: 0.5rem; padding: 0; }
.radio-group { display: grid; gap: 0.6rem; }
@media (min-width: 640px) { .radio-group { grid-template-columns: 1fr 1fr; } }
.radio-option {
  display: flex; align-items: flex-start; gap: 0.6rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.7rem 0.85rem; cursor: pointer; font-size: 0.9rem;
}
.radio-option:has(input:checked) { border-color: var(--ink); background: rgba(177,101,55,0.10); }
.radio-option input { margin-top: 0.2rem; }
.consent-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--ink-soft); }
.consent-row input { margin-top: 0.25rem; flex: none; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 1rem; font-size: 0.9rem; }
.form-status[data-state="error"] { color: var(--danger); }
.form-status[data-state="success"] { color: var(--ok); }
.form-submit-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.75rem; }

.thankyou-panel { text-align: center; padding: 1rem 0; }
.thankyou-panel h3 { color: var(--ink); font-style: italic; }
.scheduler-frame-wrap {
  margin-top: 1.5rem; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line);
  background: #fff;
}
.scheduler-frame-wrap iframe { width: 100%; height: 640px; border: 0; display: block; }
.scheduler-placeholder {
  display: flex; flex-direction: column; gap: 0.4rem; align-items: center; justify-content: center; text-align: center;
  min-height: 320px; padding: 2rem; color: var(--ink-soft); font-size: 0.9rem; background: var(--cream-deep);
}
.scheduler-placeholder code { background: rgba(23,50,34,0.08); padding: 0.1em 0.4em; border-radius: 4px; display: inline-block; }

.scheduler-fallback { margin-top: 1rem; font-size: 0.9rem; }

/* ---------- book a call (standalone) ---------- */
.book-call-card { background: var(--cream); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; gap: 2.5rem; }
.price-card { background: var(--cream); color: var(--ink); border-radius: var(--radius); padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: var(--shadow); border: 1px solid var(--line-soft); }
.price-card-eyebrow { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; color: var(--ink-soft); }
.price-card h3 { margin: 0.3rem 0 1rem; font-style: italic; }
.price-was { color: var(--ink-soft); text-decoration: line-through; margin-left: 0.5rem; }
.price-checklist { display: grid; gap: 0.65rem; margin: 1.5rem 0; }
.price-checklist li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.price-checklist svg { flex: none; margin-top: 0.2em; color: var(--ok); }
.price-legal { font-size: 0.82rem; color: var(--ink-soft); margin-top: 1.25rem; }
.price-legal a { color: var(--ink); font-weight: 500; }
.cert-lines { display: grid; gap: 1.25rem; }
.cert-line h4 { margin: 0 0 0.25rem; font-size: 1rem; font-weight: 500; }
.cert-line p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.pricing-side { display: grid; gap: 1.75rem; align-content: start; }

/* ---------- FAQ accordion ---------- */
.accordion { border-top: 1px solid var(--line); margin-top: 1.5rem; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 0.25rem; font-family: var(--font-body); font-weight: 500; font-size: 1.02rem; color: var(--ink);
}
.accordion-trigger .icon { flex: none; transition: transform 0.2s ease; color: var(--ink-soft); }
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); }
.accordion-panel { overflow: hidden; max-height: 0; transition: max-height 0.25s ease; }
.accordion-panel[data-open="true"] { max-height: 400px; }
.accordion-panel-inner { padding: 0 0.25rem 1.3rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- next step (the one khaki band) ---------- */
.next-step { text-align: center; }
.next-step h2 { color: var(--on-khaki); font-style: italic; }
.next-step .btn-primary { background: var(--blush); color: var(--cream); font-size: 1.17rem; font-weight: 600; }
.contacts-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; text-align: left; grid-template-columns: 1fr; }
@media (min-width: 700px) { .contacts-grid { grid-template-columns: repeat(3,1fr); } }
.contact-item { border-top: 1px solid var(--line-on-khaki); padding-top: 1rem; }
.contact-item h4 { margin: 0 0 0.35rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.contact-item p { margin: 0; }
.contact-item a { color: var(--on-khaki); font-weight: 500; text-decoration: none; }
.contact-item a:hover { color: var(--ink-soft); }

/* ---------- footer ---------- */
.site-footer { background: var(--cream-deep); color: var(--ink-soft); font-size: 0.85rem; padding: 2.5rem 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; }
.footer-grid img { height: 22px; width: 110px; object-fit: contain; object-position: left center; }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.85rem; }
.footer-links a:hover { color: var(--ink-soft); text-decoration: underline; text-decoration-color: var(--blush-deep); }
.footer-legal { margin-top: 1rem; line-height: 1.6; }

/* ---------- placeholder chips ---------- */
.tbc {
  background: rgba(179,38,30,0.1); color: var(--danger); border: 1px dashed var(--danger);
  border-radius: 4px; padding: 0 0.35em; font-size: 0.85em; font-weight: 600;
}

/* ---------- responsive layout tweaks ---------- */
@media (min-width: 860px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .trio { grid-template-columns: repeat(3, 1fr); }
  .fit-grid { grid-template-columns: 1fr 1fr; }
  .founder-grid { grid-template-columns: 0.8fr 1.2fr; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .form-wrap { grid-template-columns: 1.3fr 0.9fr; align-items: start; }
  .pricing-grid { grid-template-columns: 1.1fr 0.9fr; }
  .module { grid-template-columns: 64px 1fr; }
}
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- image sous « Prefer to skip the form? » (demande Sara 10/09) ---------- */
.talk-side { display: flex; flex-direction: column; gap: 1.5rem; }
.talk-figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-deep); }
.talk-figure img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 699px) { .talk-figure { display: none; } }

/* rotation de l’étoile-fleur au défilement (piloté par site.js) */
.founder-photo--placeholder img { will-change: transform; transform-origin: 50% 50%; }

/* ---------- accents terracotta (demande Sara 10/09) ---------- */
/* 1. Emplacement portrait d'Élodie : étoile-fleur crème sur fond terracotta */
.founder-photo.founder-photo--placeholder { background: var(--blush); }
/* 2. « The question we hear most » : section terracotta, carte crème posée dessus */
.section--terracotta { background: var(--blush); }
.section--terracotta .highlight-question { background: var(--khaki); border-color: transparent; }
/* 3. « Prefer to skip the form? » : carte terracotta, texte clair en corps « grand » pour le contraste AA */
.talk-side .book-call-card { background: var(--blush); color: var(--cream); border-color: transparent; }
.talk-side .book-call-card h3 { color: var(--cream); }
.talk-side .book-call-card p { color: var(--cream); font-size: 1.2rem; font-weight: 600; }
.talk-side .book-call-card .btn-secondary { color: var(--cream); border-color: rgba(252, 251, 248, 0.65); font-size: 1.17rem; font-weight: 600; }
.talk-side .book-call-card .btn-secondary:hover { background: rgba(252, 251, 248, 0.12); }

/* ---------- agenda anglais pas encore branché : état d'attente propre, sans jargon (demande Sara 10/09) ---------- */
.scheduler-placeholder { min-height: 0 !important; padding: clamp(1.75rem, 5vw, 3rem); text-align: center; color: var(--ink); }
.scheduler-soon { max-width: 460px; margin: 0 auto; }
.scheduler-soon-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 0 0 0.6rem; color: var(--ink); }
.scheduler-soon p { color: var(--ink-soft); margin: 0; }
.scheduler-soon a { color: var(--ink); font-weight: 600; white-space: nowrap; }
.scheduler-fallback { display: none; }   /* affiché par site.js seulement quand l'agenda est configuré */

/* ---------- « The question we hear most » : texte posé directement sur le terracotta, sans carte (demande Sara 10/09) ---------- */
/* Terracotta #B16537 + crème : contraste 4,25:1 → tous les textes en corps « grand » (≥ 24 px, ou ≥ 18,7 px gras) pour rester AA. */
.section--terracotta .highlight-question { background: transparent; box-shadow: none; border: 0; padding: 0; max-width: 880px; margin: 0 auto; text-align: center; }
.section--terracotta .highlight-question h2 { color: var(--cream); }
.section--terracotta .highlight-question p { color: var(--cream); font-size: 1.5rem; font-weight: 300; line-height: 1.5; }
.section--terracotta .highlight-question .section-eyebrow { color: var(--cream); font-size: 1.17rem; font-weight: 700; justify-content: center; }
.section--terracotta .highlight-question .section-eyebrow::before { background-color: var(--cream); }
