/* Live Band Toere — site vitrine. Charte du logo : turquoise toʻere + bois + crème. */
:root {
  --bg: #17100b;        /* fond — bois sombre / carbonisé */
  --bg2: #241812;       /* dégradés de cartes */
  --panel: #241a12;     /* surfaces */
  --fg: #ece5cf;        /* crème — texte */
  --muted: #a99a83;     /* texte atténué sur bois */
  --accent: #37bfa5;    /* turquoise du logo — couleur "sync" */
  --accent2: #5fd4bd;   /* turquoise clair */
  --strike: #d98a3d;    /* ocre "frappe du bois" — accent secondaire, parcimonieux */
  --border: #3a2c1f;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, SFMono-Regular, monospace;
  --radius: 16px;
  --maxw: 1080px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .h2, .brand, .cta-band h2, .feat-txt h3 { font-family: var(--display); letter-spacing: -0.015em; }
a { color: var(--accent2); text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }

/* Header */
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(23,16,11,0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: var(--fg); }
.brand .logo { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: grid; place-items: center; font-size: 16px; }
.brand-logo { height: 40px; width: auto; display: block; }
footer .brand-logo { height: 34px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0e2a24; font-weight: 700; font-size: 15px;
  padding: 11px 20px; border-radius: 11px; border: none; cursor: pointer;
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--accent2); }
.btn.ghost { background: transparent; border: 1.5px solid var(--border); color: var(--fg); }
.btn.ghost:hover { border-color: var(--accent); }
.btn.lg { padding: 15px 28px; font-size: 16px; border-radius: 13px; }
/* Burger menu — mobile */
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger span + span { margin-top: 6px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 720px) {
  .burger { display: block; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; inset: 64px 0 0 0; z-index: 19; height: calc(100dvh - 64px);
    background: rgba(23,16,11,0.98); backdrop-filter: blur(16px);
    padding: 12px 22px 32px; overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--fg); }
  .nav-links a.btn { border-bottom: none; margin-top: 12px; justify-content: center; }
}

/* Hero « pupitre » — message à gauche, appareils à droite. Le scrim est latéral :
   la lisibilité vient de la gauche, pas d'un voile uniforme. */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh; min-height: 92dvh;
  display: flex; align-items: center;
  text-align: left; padding: 96px 0 0;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
  filter: grayscale(1) contrast(1.06) brightness(1.04);
}
.hero-tint {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(165deg, rgba(55,191,165,0.92) 0%, rgba(45,120,105,0.85) 45%, rgba(23,16,11,0.92) 100%);
  mix-blend-mode: multiply;
}
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(23,16,11,0.94) 0%, rgba(23,16,11,0.78) 42%, rgba(23,16,11,0.42) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 40px; align-items: center;
}
.hero-copy { padding-bottom: 80px; }
.hero .lead { color: rgba(236,229,207,0.94); }
.eyebrow { display: inline-block; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent2); background: rgba(55,191,165,0.12); border: 1px solid rgba(55,191,165,0.3); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(32px, 3.9vw, 48px); line-height: 1.05; font-weight: 800; letter-spacing: -0.025em; text-wrap: balance; }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent2), var(--strike)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 620px; margin: 22px 0 32px; }
.hero .wave-hero { margin: 20px 0 0; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Appareils du hero — cadres CSS contenant de vraies captures.
   Les deux largeurs sont des variables : c'est le seul levier de l'arbitrage de taille. */
.hero-devices {
  /* Fluides : la rangée doit tenir dans la gouttière à toute largeur, sans point
     de rupture dédié. Les bornes hautes sont le levier de l'arbitrage de taille. */
  --device-w-pilot: clamp(124px, 30vw, 268px);
  --device-w-follower: clamp(72px, 16vw, 142px);
  /* Thème des captures : SÉPIA (#f0dcb2 / texte #43301c). Ces valeurs DOIVENT suivre
     le thème réellement utilisé dans les captures — sinon la bande d'état et la zone
     d'indicateur ne raccordent pas et une couture apparaît. Vérifier au pipeur de
     couleur sur une capture avant de changer de thème. */
  --screen-bg: #f0dcb2;
  --screen-ink: rgba(67,48,28,0.55);
  --screen-fg: rgba(67,48,28,0.92);
  --page-cycle: 8.4s;
  --follower-lag: 140ms;
  display: flex; align-items: flex-end; justify-content: flex-end;
  column-gap: 16px; margin-bottom: -170px;
}
.device { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.device--pilot { --dw: var(--device-w-pilot); }
.device--follower { --dw: var(--device-w-follower); }
.device--follower:first-child { transform: rotate(-4deg); margin-bottom: 54px; }
.device--follower:last-child  { transform: rotate(4deg);  margin-bottom: 54px; }
/* Châssis façon iPhone : lisière fine et régulière, grand rayon proportionnel à la
   largeur (16 %), et une Dynamic Island plutôt qu'un haut-parleur. Toutes les cotes
   sont dérivées de --dw pour que pilote et suiveurs soient homothétiques. */
.device__frame {
  position: relative; width: var(--dw);
  padding: calc(var(--dw) * 0.032);
  border-radius: calc(var(--dw) * 0.15);
  background: linear-gradient(150deg, var(--panel), var(--bg2));
  border: 1px solid var(--border);
}
/* Cerclage en outline et non en box-shadow : le site n'utilise aucune ombre portée. */
.device--pilot .device__frame {
  border-color: var(--strike); outline: 3px solid rgba(217,138,61,0.18);
}
.device--follower .device__frame {
  border-color: var(--accent); outline: 3px solid rgba(55,191,165,0.18);
}

/* Ratio d'ensemble : 2,16 — celui de l'écran d'un iPhone. Les captures étant
   désormais prises BARRE MASQUÉE, l'image monte à 2,007:1 (contre 1,798 avant) :
   les bandes de compensation tombent de 35 % à 21,7 % de la largeur, soit une
   barre d'état (13 %) et une zone d'indicateur (8,7 %) de taille réaliste. */
.device__screen {
  position: relative; aspect-ratio: 600 / 1344;
  border-radius: calc(var(--dw) * 0.12); overflow: hidden;
  /* Fond = celui de l'app, pour que les bandes prolongent la capture au lieu de
     la border de noir. L'Island, elle, reste plus sombre et se détache. */
  background: var(--screen-bg);
}
/* Barre d'état : heure à gauche, réseau/wifi/batterie à droite, de part et
   d'autre de l'Island. Purement décorative — aria-hidden côté markup. */
.device__status {
  position: absolute; top: 0; left: 0; right: 0; z-index: 2;
  height: calc(var(--dw) * 0.125);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 calc(var(--dw) * 0.058);
  color: var(--screen-fg);
}
.device__time {
  font-family: var(--body); font-weight: 700;
  font-size: calc(var(--dw) * 0.055); line-height: 1; letter-spacing: -0.01em;
}
.device__stat { width: calc(var(--dw) * 0.175); height: auto; display: block; }
.device__home {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: calc(var(--dw) * 0.035);
  width: calc(var(--dw) * 0.32); height: calc(var(--dw) * 0.012);
  border-radius: 999px; background: var(--screen-ink); z-index: 3;
}
.device__island {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: calc(var(--dw) * 0.030);
  width: calc(var(--dw) * 0.30); height: calc(var(--dw) * 0.088);
  border-radius: 999px; background: #000; z-index: 3;
}
/* La capture commence sous la zone de statut, pour ne pas passer derrière l'Island. */
.device__page {
  position: absolute; top: calc(var(--dw) * 0.13); left: 0;
  width: 100%; height: auto; display: block;
}
/* La page N reste dessous ; la page N+1 apparaît par-dessus. Le fondu dure 5 % du cycle. */
.device__page--next { opacity: 0; animation: page-turn var(--page-cycle) linear infinite; }
.device--follower .device__page--next { animation-delay: var(--follower-lag); }
@keyframes page-turn {
  0%, 45%  { opacity: 0; }
  50%, 95% { opacity: 1; }
  100%     { opacity: 0; }
}
.device__label {
  font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--muted);
}
.device--pilot .device__label { color: var(--strike); }
.device--follower .device__label { color: var(--accent2); }
@media (prefers-reduced-motion: reduce) {
  .device__page--next { animation: none; opacity: 0; }
}

/* Sections */
.h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; letter-spacing: -0.02em; text-align: center; }
.sub { color: var(--muted); text-align: center; max-width: 580px; margin: 14px auto 0; font-size: 17px; }

/* Feature grid */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 720px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: linear-gradient(180deg, var(--panel), var(--bg2));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px;
}
.card .ic { width: 32px; height: 32px; margin-bottom: 16px; display: block; color: var(--accent); }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card-more { display: inline-block; margin-top: 14px; font-family: var(--display); font-weight: 700; font-size: 14.5px; color: var(--accent2); }
.card-more:hover { color: var(--accent); }

/* Alternating feature rows */
.feat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding: 46px 0; border-top: 1px solid var(--border); }
.feat-row:first-of-type { border-top: none; }
.feat-row.rev .feat-media { order: 2; }
@media (max-width: 760px) { .feat-row, .feat-row.rev { grid-template-columns: 1fr; gap: 22px; } .feat-row.rev .feat-media { order: 0; } }
.feat-txt h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.feat-txt p { color: var(--muted); margin-top: 12px; font-size: 16.5px; }
.feat-txt ul { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.feat-txt li { color: var(--fg); font-size: 15.5px; padding-left: 26px; position: relative; }
.feat-txt li::before { content: "✓"; position: absolute; left: 0; color: var(--accent2); font-weight: 800; }
.feat-media {
  aspect-ratio: 4/3; border-radius: var(--radius); border: 1px solid var(--border);
  background: radial-gradient(120% 120% at 30% 0%, rgba(55,191,165,0.18), var(--panel));
  display: grid; place-items: center; font-size: 68px; color: var(--accent2);
}
.feat-ic { width: 92px; height: 92px; color: var(--accent); }
/* Capture d'app dans une zone média : même châssis iPhone que le hero, réutilisé
   via les classes .device__*, qui sont toutes dérivées de --dw. Les éléments sont
   des <span> — d'où le display:block ci-dessous. La barre d'état (heure + icônes)
   est omise à cette taille : elle ne ferait que du bruit sous 240px. */
.feat-media { position: relative; overflow: hidden; }
.feat-device {
  --dw: 232px;
  /* Mêmes variables d'écran que le hero : sans elles la bande d'état et la zone
     d'indicateur restent sombres au lieu de prolonger la capture. */
  --screen-bg: #f0dcb2;
  --screen-ink: rgba(67,48,28,0.55);
  display: block; margin: 0 auto; transform: translateY(9%);
}
.feat-device .device__frame,
.feat-device .device__screen,
.feat-device .device__page { display: block; }
.feat-device .device__frame { border-color: var(--border); }
@media (max-width: 900px) { .feat-device { --dw: 196px; } }
@media (max-width: 760px) { .feat-device { --dw: 208px; } }
@media (max-width: 480px) { .feat-device { --dw: 168px; } }
/* Variante home : mêmes rangs, respiration réduite — la home donne envie d'aller
   voir la page fonctionnalités, elle ne la remplace pas. */
.feat-row--compact { padding: 34px 0; }
.feat-row--compact .feat-txt h3 { font-size: 22px; }
.feat-row--compact .feat-txt ul { margin-top: 12px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, rgba(55,191,165,0.16), rgba(217,138,61,0.10)); border: 1px solid rgba(55,191,165,0.28); border-radius: 22px; padding: 48px; text-align: center; }
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; }
.cta-band p { color: var(--muted); margin: 12px auto 26px; max-width: 500px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.step .n { font-family: var(--mono); width: 30px; height: 30px; border-radius: 8px; background: rgba(55,191,165,0.16); color: var(--accent2); font-weight: 700; display: grid; place-items: center; margin-bottom: 12px; }
.step h4 { font-size: 16px; font-weight: 700; }
.step p { color: var(--muted); font-size: 14px; margin-top: 6px; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; color: var(--muted); font-size: 14px; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); }
.foot-links a:hover { color: var(--fg); }

/* Page hero (secondary pages) */
.page-head { padding: 64px 0 20px; text-align: center; }
.page-head h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 800; letter-spacing: -0.02em; }
.page-head p { color: var(--muted); font-size: 18px; margin-top: 14px; }
.badge-soon { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--accent2); background: rgba(55,191,165,0.14); border: 1px solid rgba(55,191,165,0.3); padding: 3px 9px; border-radius: 999px; vertical-align: middle; }

/* Signature — l'onde toʻere (rythme / synchro) */
.wave { display: block; width: 200px; max-width: 60%; height: 20px; color: var(--accent); overflow: visible; }
.wave-hero { margin: 20px auto 0; }
.wave-accent { width: 132px; margin: 18px auto 0; }
.wave-line { stroke: currentColor; stroke-width: 3; stroke-linecap: round; opacity: .38; }
.wave-beat { stroke: var(--accent2); stroke-width: 3.4; stroke-linecap: round; stroke-dasharray: 7 93; stroke-dashoffset: 0; animation: wave-beat 3.4s linear infinite; filter: drop-shadow(0 0 6px rgba(95,212,189,0.6)); }
.wave-accent .wave-beat { animation-duration: 4.6s; }
@keyframes wave-beat { to { stroke-dashoffset: -100; } }
@media (prefers-reduced-motion: reduce) { .wave-beat { animation: none; stroke-dasharray: none; opacity: .55; filter: none; } }

/* FAQ — accordéon */
.faq { max-width: 760px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq details { background: var(--panel); border: 1px solid var(--border); border-radius: 14px; }
.faq details[open] { border-color: rgba(55,191,165,0.4); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--fg); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover, .faq details[open] summary { color: var(--accent2); }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: 14px; }
.faq-a { padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

/* Language toggle */
.lang-toggle { background:transparent; border:1.5px solid var(--border); color:var(--muted); font-family:var(--mono); font-size:12px; font-weight:700; padding:5px 10px; border-radius:8px; cursor:pointer; letter-spacing:.05em; }
.lang-toggle:hover { border-color:var(--accent); color:var(--fg); }

/* Hero « pupitre » — sous 900px la grille se plie : message centré, appareils dessous. */
@media (max-width: 900px) {
  .hero { text-align: center; padding: 88px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-copy { padding-bottom: 0; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .wave-hero { margin: 20px auto 0; }
  .hero-cta { justify-content: center; }
  .hero-devices { justify-content: center; margin-bottom: -90px; column-gap: 10px; }
}


/* ===========================================================================
   Mouvement — sobriété volontaire. Seuls `transform` et `opacity` sont animés,
   et tout est atténué (jamais supprimé) sous prefers-reduced-motion, comme le
   fait déjà l'onde toʻere.
   =========================================================================== */

/* 1. Entrée au défilement des rangs de fonctionnalité et des cartes.
   Le masquage est conditionné à la classe .js-anim, posée par le script :
   sans JavaScript, le contenu reste visible. Jamais de contenu invisible
   par défaut sur une page vitrine. */
.js-anim .reveal { opacity: 0; transform: translateY(24px); }
.js-anim .reveal.in { opacity: 1; transform: none; }
.js-anim .reveal {
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
/* Décalage interne : le texte arrive, la vignette suit de 60 ms. */
.js-anim .feat-row.reveal .feat-media { transition: transform .5s var(--ease-out) 60ms, opacity .5s var(--ease-out) 60ms; }
.js-anim .feat-row.reveal:not(.in) .feat-media { opacity: 0; transform: translateY(14px); }
.js-anim .feat-row.reveal.in .feat-media { opacity: 1; transform: none; }
/* Cartes d'une même grille : décalage de 70 ms, sans jamais bloquer le clic. */
.js-anim .grid .reveal:nth-child(2) { transition-delay: 70ms; }
.js-anim .grid .reveal:nth-child(3) { transition-delay: 140ms; }
.js-anim .grid .reveal:nth-child(4) { transition-delay: 210ms; }

/* 2. FAQ : l'accordéon claquait. `::details-content` + `interpolate-size` est
   le seul moyen d'animer un <details> sans JavaScript ; là où ce n'est pas
   supporté, l'ouverture reste instantanée — dégradation propre. */
@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .faq details::details-content {
    block-size: 0; overflow: hidden; opacity: 0;
    transition: block-size .26s var(--ease-out), opacity .2s var(--ease-out),
                content-visibility .26s allow-discrete;
  }
  .faq details[open]::details-content { block-size: auto; opacity: 1; }
}

/* 3 et 4. Survols — uniquement sur pointeur fin : pas de survol fantôme au
   tactile, où le premier appui déclencherait l'état sans l'intention. */
@media (hover: hover) and (pointer: fine) {
  .card { transition: transform .18s var(--ease-out), border-color .18s var(--ease-out); }
  .card:hover { transform: translateY(-3px); border-color: var(--accent); }
  .feat-media .feat-device { transition: transform .32s var(--ease-out); }
  .feat-row:hover .feat-media .feat-device { transform: translateY(-6px) rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
  /* Atténué, pas supprimé : l'entrée devient un simple fondu, sans déplacement. */
  .js-anim .reveal,
  .js-anim .feat-row.reveal .feat-media { transform: none !important; transition-duration: .2s; }
  .js-anim .reveal:not(.in),
  .js-anim .feat-row.reveal:not(.in) .feat-media { transform: none !important; }
  .card:hover { transform: none; }
  .feat-row:hover .feat-media .feat-device { transform: none; }
}


/* ===========================================================================
   Section claire — la MOITIÉ CLAIRE de la charte (crème #ece5cf), pas un thème
   inventé. La charte est une paire bois/crème (cf. src/themes.ts) ; le site
   n'utilisait jusqu'ici que la moitié sombre.

   Les tokens sont redéfinis LOCALEMENT sur la section : rien n'est modifié en
   global, les 10 pages restent intactes.

   ⚠️ Les accents DOIVENT être assombris. Mesuré sur crème :
      --accent2 #5fd4bd -> 1,43:1   --accent #37bfa5 -> 1,82:1   illisibles.
      Les valeurs ci-dessous montent à 5,49:1 et 4,712:1.
   =========================================================================== */
.section--light {
  background: #ece5cf;
  --fg: #17100b;          /* bois — 14,95:1 sur crème */
  --muted: #6b5b46;       /* bois atténué — 5,19:1 */
  --panel: #f4efdc;       /* carte, un ton au-dessus du fond */
  --bg2: #e3d9bd;         /* fin du dégradé de carte */
  --border: #d5c9a8;
  --accent: #1a8a76;      /* turquoise assombri, tracés décoratifs */
  --accent2: #12655a;     /* turquoise assombri, texte — 5,49:1 */
  color: var(--fg);
}
.section--light .h2, .section--light h3, .section--light h4 { color: var(--fg); }
/* La pastille de numéro d'étape était une teinte turquoise pensée pour le bois. */
.section--light .step .n { background: rgba(26,138,118,0.14); }
/* La FAQ porte deux valeurs turquoise en dur, calibrées pour le bois : sur crème
   elles deviennent des halos invisibles. */
.section--light .faq details[open] { border-color: rgba(18,101,90,0.45); }
/* Le bouton porte déjà une encre sombre : il garde le turquoise VIF en fond.
   L'assombrissement ne vaut que pour du texte turquoise POSÉ sur la crème. */
.section--light .btn { background: var(--accent-solid, #37bfa5); }
.section--light .btn:hover { background: #5fd4bd; }
.section--light .btn.ghost { background: transparent; }
.section--light .eyebrow { background: rgba(26,138,118,0.12); border-color: rgba(26,138,118,0.35); }
