/* ==========================================================================
   ID MOMENTUM : feuille de style
   Navy & Gold, verre dépoli, Inter pour le texte, Allura pour les accents.
   Un fil doré traverse toute la page ; il est dessiné par main.js.
   ========================================================================== */

@import url("fonts.css");

/* --------------------------------------------------------------------------
   1. JETONS
   -------------------------------------------------------------------------- */
:root {
  --navy:      #0D1B2A;
  --navy-deep: #07111C;
  --ocean:     #1B365D;
  --gold:      #C99A47;
  --champagne: #E6C17A;
  --ivory:     #F5EBDD;

  --ink:   var(--ivory);
  --ink-2: rgba(245, 235, 221, .70);
  --ink-3: rgba(245, 235, 221, .56);
  --line:  rgba(230, 193, 122, .18);
  --line-soft: rgba(245, 235, 221, .09);
  --glass: rgba(255, 255, 255, .045);
  --glass-2: rgba(255, 255, 255, .08);

  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --script: "Allura", "Brush Script MT", "Segoe Script", cursive;

  --fs-giant: clamp(2.5rem, 5.6vw, 5.2rem);
  --fs-h2:    clamp(2.2rem, 5vw, 4.4rem);
  --fs-h3:    clamp(1.25rem, 1.8vw, 1.6rem);
  --fs-lead:  clamp(1.05rem, 1.35vw, 1.25rem);
  --fs-body:  clamp(.98rem, 1.02vw, 1.05rem);

  --sec-y:  clamp(6rem, 12vw, 11rem);
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --max:    1200px;

  --ease: cubic-bezier(.2, .7, .2, 1);
  --r: 24px;
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(70% 55% at 75% -5%, rgba(27, 54, 93, .95) 0%, rgba(27, 54, 93, 0) 60%),
    radial-gradient(50% 40% at 10% 40%, rgba(27, 54, 93, .45) 0%, rgba(27, 54, 93, 0) 60%),
    radial-gradient(60% 40% at 80% 95%, rgba(27, 54, 93, .5) 0%, rgba(27, 54, 93, 0) 60%),
    var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--champagne); color: var(--navy); }
[id] { scroll-margin-top: 96px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; top: -80px; left: var(--gutter); z-index: 300; background: var(--champagne); color: var(--navy); padding: .7rem 1.2rem; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.skip:focus { top: 1rem; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHIE
   -------------------------------------------------------------------------- */
h1, h2, h3 { font-weight: 500; letter-spacing: -.028em; line-height: 1.0; }
h1 { font-size: var(--fs-giant); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.01em; line-height: 1.2; }

/* Titre dégradé ivoire, comme les grands titres de la référence */
.grad, h1, h2 {
  background: linear-gradient(180deg, #FFFFFF 0%, var(--ivory) 45%, rgba(245, 235, 221, .55) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* L'accent manuscrit : un mot ou une ligne en Allura, doré */
h1 em, h2 em, .script {
  font-family: var(--script); font-style: normal; font-weight: 400; letter-spacing: 0;
  background: linear-gradient(90deg, var(--champagne), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
h1 em, h2 em { font-size: 1.32em; line-height: .95; display: inline-block; padding-right: .12em; }
.script { display: block; font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1; }
.script--big { font-size: clamp(2rem, 4vw, 3.4rem); }

.lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--ink-2); max-width: 56ch; }
.muted { color: var(--ink-3); }
p + p { margin-top: 1em; }
strong { font-weight: 600; color: var(--ink); }
.tag { font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--champagne); }

/* --------------------------------------------------------------------------
   4. MISE EN PAGE
   -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); position: relative; }
.wrap--narrow { max-width: 860px; }
#page { position: relative; }
.sec { position: relative; z-index: 2; padding-block: var(--sec-y); }
.sh { max-width: 780px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.sh--center { margin-inline: auto; text-align: center; }
.sh h2 { margin-top: .8rem; }
.sh .lead { margin-top: 1.6rem; }
.sh--center .lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   5. VERRE, PASTILLES, BOUTONS
   -------------------------------------------------------------------------- */
.glass {
  position: relative;
  background: linear-gradient(160deg, var(--glass-2) 0%, var(--glass) 60%, rgba(255, 255, 255, .02) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.pill {
  display: inline-flex; align-items: center; gap: .6em;
  padding: .5em 1.05em .5em .85em; border-radius: 999px;
  background: var(--glass-2); border: 1px solid var(--line-soft);
  font-size: .82rem; font-weight: 500; color: var(--ink); white-space: nowrap;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--champagne); box-shadow: 0 0 10px rgba(230, 193, 122, .8); }
.pill--ghost i { background: var(--ivory); box-shadow: none; }

.btn {
  display: inline-flex; align-items: center; gap: .7em;
  padding: .95em 1.7em; border-radius: 999px;
  font-size: .86rem; font-weight: 600; letter-spacing: .01em;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: var(--navy); border: 1px solid transparent;
  box-shadow: 0 10px 30px -12px rgba(230, 193, 122, .6);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(230, 193, 122, .75); }
.btn .arrow { transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--ghost { background: var(--glass-2); color: var(--ink); border-color: var(--line); box-shadow: none; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.btn--ghost:hover { box-shadow: none; border-color: rgba(230, 193, 122, .45); }
.link { position: relative; color: var(--champagne); font-weight: 500; }
.link::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.link:hover::after { transform: scaleX(1); transform-origin: left; }

/* --------------------------------------------------------------------------
   6. EN-TÊTE
   -------------------------------------------------------------------------- */
.hd { position: fixed; inset: 0 0 auto; z-index: 100; padding-block: 1.1rem; transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease); border-bottom: 1px solid transparent; }
.hd.is-stuck { padding-block: .65rem; background: rgba(13, 27, 42, .72); border-bottom-color: var(--line-soft); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.hd__in { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; align-items: center; gap: .75rem; }
.brand svg { width: 36px; height: 36px; color: var(--ivory); }
.brand span { font-size: .92rem; font-weight: 600; letter-spacing: .14em; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a { font-size: .84rem; color: var(--ink-2); position: relative; padding-block: .3rem; transition: color .4s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--champagne); transform: scaleX(0); transform-origin: right; transition: transform .45s var(--ease); }
.nav a:hover, .nav a.is-on { color: var(--ink); }
.nav a:hover::after, .nav a.is-on::after { transform: scaleX(1); transform-origin: left; }
.nav .btn { padding: .7em 1.3em; font-size: .78rem; }
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 110; }
.nav-toggle span { position: absolute; left: 11px; width: 22px; height: 1.5px; background: var(--ink); transition: transform .45s var(--ease); }
.nav-toggle span:nth-child(1) { top: 19px; } .nav-toggle span:nth-child(2) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. LE FIL : le calque SVG qui traverse la page (géométrie posée par main.js)
   -------------------------------------------------------------------------- */
.trail { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: visible; }
.trail__ghost { fill: none; stroke: rgba(230, 193, 122, .16); stroke-width: 1; stroke-dasharray: 3 9; stroke-linecap: round; }
.trail__line { fill: none; stroke: var(--champagne); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trail__branch { fill: none; stroke: var(--champagne); stroke-width: 1.5; stroke-linecap: round; opacity: .85; transition: stroke-dashoffset 1.6s var(--ease); }
.trail__tip { fill: var(--champagne); opacity: 0; transform-box: fill-box; transform-origin: center; transform: scale(.2); transition: opacity .6s var(--ease) .9s, transform .8s var(--ease) .9s; }
.trail__tip.on { opacity: 1; transform: scale(1); }
.trail__dot { transition: opacity .35s var(--ease); }
.trail__dot .halo { fill: rgba(230, 193, 122, .28); filter: url(#glow); }
.trail__dot .core { fill: #FFF2D6; }
.trail__dot .ring { fill: none; stroke: rgba(230, 193, 122, .5); stroke-width: 1; }
.trail__end circle { fill: none; stroke: var(--champagne); stroke-width: 1; opacity: 0; transform-box: fill-box; transform-origin: center; }
.trail__end.on circle { animation: ringOut 2.4s var(--ease) infinite; }
.trail__end.on circle:nth-child(2) { animation-delay: .8s; }
.trail__end.on circle:nth-child(3) { animation-delay: 1.6s; }
@keyframes ringOut { 0% { opacity: .7; transform: scale(.25); } 100% { opacity: 0; transform: scale(1); } }

/* Les points d'ancrage du fil : de simples repères dans la mise en page */
.node { display: block; width: 14px; height: 14px; border-radius: 50%; flex: none; pointer-events: none; }
.node--abs { position: absolute; }

/* --------------------------------------------------------------------------
   8. ACCUEIL
   -------------------------------------------------------------------------- */
.hero { position: relative; z-index: 2; min-height: 100svh; display: flex; align-items: center; padding-block: clamp(8rem, 16vh, 11rem) clamp(5rem, 10vh, 7rem); overflow: hidden; }
.hero__word {
  position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%);
  font-size: clamp(6rem, 21vw, 22rem); font-weight: 700; letter-spacing: -.05em; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(230, 193, 122, .07);
  background: linear-gradient(180deg, rgba(27, 54, 93, .38), rgba(27, 54, 93, 0));
  -webkit-background-clip: text; background-clip: text;
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.glow { position: absolute; pointer-events: none; z-index: 0; border-radius: 50%; filter: blur(60px); }
.glow--hero { width: 60vw; height: 30vw; left: 50%; bottom: -14vw; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(120, 170, 255, .28), rgba(27, 54, 93, 0)); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; position: relative; z-index: 1; }
.hero .lead { margin-top: 1.4rem; }
.hero h1 { margin-top: 1.6rem; max-width: 19ch; }
.hero h1 em { display: block; font-size: 1.18em; margin-top: .1em; }
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; }
.hero__side { position: relative; display: grid; justify-items: center; }
.hero__mark { position: relative; width: clamp(200px, 26vw, 340px); color: var(--ivory); }
.hero__mark svg { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5)); }
.hero__mark .node { left: 76.5%; top: 48.4%; transform: translate(-50%, -50%); }
.hero__pills { position: absolute; inset: 0; pointer-events: none; }
.hero__pills .pill { position: absolute; pointer-events: auto; }
.hero__pills .p1 { left: -8%; top: 8%; }
.hero__pills .p2 { right: -6%; top: 62%; }
.hero__pills .p3 { left: 4%; bottom: -4%; }
.hero__wp { right: 28%; bottom: 7%; }
.scrollcue { position: absolute; left: 50%; bottom: 1.8rem; transform: translateX(-50%); z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .7rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.scrollcue i { width: 1px; height: 42px; background: linear-gradient(var(--champagne), transparent); animation: cue 2.6s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%, 100% { opacity: .2; transform: scaleY(.4); } 50% { opacity: 1; transform: scaleY(1); } }

/* --------------------------------------------------------------------------
   9. LE CONSTAT : stations sur le fil
   -------------------------------------------------------------------------- */
.stations { display: grid; gap: 0; }
.station { display: grid; grid-template-columns: 56px minmax(150px, 24%) 1fr; gap: clamp(1rem, 3vw, 2.5rem); align-items: start; padding-block: clamp(1.8rem, 3.5vw, 2.6rem); border-top: 1px solid var(--line-soft); }
.station:last-of-type { border-bottom: 1px solid var(--line-soft); }
.station .node { margin-top: .55em; justify-self: center; }
.station__fig { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.station__fig small { display: block; font-size: .26em; letter-spacing: .16em; text-transform: uppercase; color: var(--champagne); font-weight: 600; margin-bottom: .6em; }
.station p { color: var(--ink-2); max-width: 52ch; }
.sources { margin-top: 1.6rem; font-size: .8rem; color: var(--ink-3); }

/* --------------------------------------------------------------------------
   10. L'OUVERTURE : le fil se sépare en quatre
   -------------------------------------------------------------------------- */
.split { position: relative; height: clamp(4rem, 9vw, 8rem); }
.split .node { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.fan { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.card { padding: clamp(1.5rem, 2.4vw, 2rem); display: flex; flex-direction: column; gap: 1rem; transition: transform .7s var(--ease), border-color .7s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: rgba(230, 193, 122, .4); }
.card .node { position: absolute; left: 50%; top: 0; transform: translate(-50%, -50%); }
.card h3 { margin-top: .4rem; }
.card p { color: var(--ink-2); font-size: .95rem; }
.fan .card:nth-child(2) { transform: translateY(2.2rem); }
.fan .card:nth-child(3) { transform: translateY(4.4rem); }
.fan .card:nth-child(4) { transform: translateY(6.6rem); }
.fan .card:nth-child(2):hover { transform: translateY(calc(2.2rem - 6px)); }
.fan .card:nth-child(3):hover { transform: translateY(calc(4.4rem - 6px)); }
.fan .card:nth-child(4):hover { transform: translateY(calc(6.6rem - 6px)); }
#ouverture { padding-bottom: calc(var(--sec-y) + 6.6rem); }

/* --------------------------------------------------------------------------
   11. LA MÉTHODE : cinq étapes, un seul fil
   -------------------------------------------------------------------------- */
.steps { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.step { display: grid; grid-template-columns: 56px 1fr; gap: clamp(1rem, 3vw, 2rem); align-items: start; }
.step .node { justify-self: center; margin-top: 1.9rem; }
.step__box { padding: clamp(1.4rem, 2.4vw, 2rem) clamp(1.5rem, 2.6vw, 2.4rem); display: grid; grid-template-columns: auto 1fr; gap: .5rem 1.6rem; align-items: baseline; }
.step__box .tag { grid-column: 1; }
.step__box h3 { grid-column: 2; }
.step__box p { grid-column: 2; color: var(--ink-2); max-width: 60ch; }
.step__box .pill { grid-column: 2; justify-self: start; margin-top: .4rem; }
.bonus { margin-top: clamp(2.5rem, 5vw, 4rem); padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; gap: 1.4rem; }
.bonus h3 { font-size: clamp(1.25rem, 2vw, 1.7rem); max-width: 34ch; }
.bonus__pills { display: flex; flex-wrap: wrap; gap: .6rem; }

/* --------------------------------------------------------------------------
   12. LES OFFRES
   -------------------------------------------------------------------------- */
.offers { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.2rem, 2.4vw, 1.8rem); }
.offers > .node { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.offer { padding: clamp(1.7rem, 3vw, 2.5rem); display: flex; flex-direction: column; transition: transform .7s var(--ease), border-color .7s var(--ease); }
.offer:hover { transform: translateY(-6px); border-color: rgba(230, 193, 122, .4); }
.offer__top { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.offer h3 { margin-top: 1.2rem; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.offer__price { margin-top: .4rem; font-family: var(--script); font-size: 1.9rem; line-height: 1; color: var(--champagne); }
.offer__for { margin-top: 1rem; color: var(--ink-2); }
.offer ul { margin-top: 1.4rem; flex: 1; }
.offer li { display: flex; gap: .8rem; align-items: baseline; padding-block: .6rem; border-top: 1px solid var(--line-soft); font-size: .93rem; color: var(--ink-2); }
.offer li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); transform: translateY(-2px); }
.offer .btn { margin-top: 1.6rem; align-self: flex-start; }
.offer--star { background: linear-gradient(160deg, rgba(230, 193, 122, .16), rgba(230, 193, 122, .04) 55%, rgba(255, 255, 255, .02)); border-color: rgba(230, 193, 122, .38); }
.options { margin-top: clamp(2.5rem, 5vw, 4rem); display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; }
.option { padding: 1.2rem 1.4rem; }
.option b { display: block; font-weight: 500; }
.option span { display: block; margin-top: .2rem; font-size: .85rem; color: var(--ink-3); }
.note { margin-top: 1.6rem; font-size: .8rem; color: var(--ink-3); }

/* --------------------------------------------------------------------------
   13. LE MOUVEMENT : section épinglée, lignes parallèles
   -------------------------------------------------------------------------- */
.pin { position: relative; z-index: 2; height: 300vh; }
.pin > .node { left: 50%; top: 0; transform: translate(-50%, -50%); }
.pin > .node:last-child { top: auto; bottom: 0; left: 80%; transform: translate(-50%, 50%); }
.pin__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: linear-gradient(180deg, var(--navy) 0%, #0B1930 50%, var(--navy) 100%); }
.pin__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.pin__lines .co { fill: none; stroke: rgba(230, 193, 122, .35); stroke-width: 1.2; stroke-linecap: round; }
.pin__lines .co-ghost { fill: none; stroke: rgba(230, 193, 122, .1); stroke-width: 1; stroke-dasharray: 3 9; }
.pin__lines .main { fill: none; stroke: var(--champagne); stroke-width: 2; stroke-linecap: round; }
.pin__lines .dot { fill: #FFF2D6; }
.pin__lines .dothalo { fill: rgba(230, 193, 122, .28); filter: url(#glow2); }
.pin__head { position: absolute; left: var(--gutter); top: clamp(5.5rem, 12vh, 8rem); max-width: 620px; z-index: 2; }
.pin__head h2 { margin-top: .8rem; }
.pin__head .lead { margin-top: 1.2rem; max-width: 46ch; }
.quote { position: absolute; width: min(320px, 76vw); padding: 1.4rem 1.5rem; z-index: 2; left: var(--x); top: var(--y); opacity: 0; transform: translate3d(80px, 0, 0); transition: opacity .8s var(--ease), transform .9s var(--ease); }
.quote.on { opacity: 1; transform: none; }
.quote blockquote { font-size: 1rem; line-height: 1.55; }
.quote figcaption { margin-top: .9rem; padding-top: .8rem; border-top: 1px solid var(--line-soft); font-size: .8rem; }
.quote figcaption b { display: block; font-weight: 600; }
.quote figcaption span { color: var(--ink-3); }
.pin__count { position: absolute; right: var(--gutter); bottom: clamp(2rem, 6vh, 4rem); z-index: 2; font-family: var(--script); font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--champagne); opacity: .9; }

/* --------------------------------------------------------------------------
   14. À PROPOS
   -------------------------------------------------------------------------- */
.about { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.about__photo { padding: 1rem; }
.about__photo img { width: 100%; height: auto; border-radius: calc(var(--r) - 8px); aspect-ratio: 1; object-fit: cover; }
.about__photo figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1rem .4rem .2rem; font-size: .85rem; color: var(--ink-3); }
.about__photo figcaption b { font-weight: 600; color: var(--ink); }
.about__body { position: relative; }
.about__body > .node { left: -56px; top: .6rem; }
.about__body h2 { margin-top: .8rem; }
.about__body .lead { margin-top: 1.6rem; }
.about__body p + p { margin-top: 1em; }
.about__pills { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.punch { margin-top: 2.2rem; font-family: var(--script); font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.05; color: var(--champagne); }

/* --------------------------------------------------------------------------
   15. CONTACT : le point d'arrivée
   -------------------------------------------------------------------------- */
.contact { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
#contact .sh { position: relative; }
#contact .sh > .node { left: 50%; top: -3.5rem; transform: translate(-50%, -50%); }
.coords { margin-top: 2rem; display: grid; }
.coords a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1rem; border-top: 1px solid var(--line-soft); transition: color .4s var(--ease); }
.coords a:last-child { border-bottom: 1px solid var(--line-soft); }
.coords a:hover { color: var(--champagne); }
.coords a span:last-child { font-size: .78rem; color: var(--ink-3); }
.form { padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field textarea { width: 100%; padding: .9rem 1.05rem; border-radius: 14px; background: rgba(13, 27, 42, .55); border: 1px solid var(--line-soft); color: var(--ink); font-size: 1rem; transition: border-color .4s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus { outline: none; border-color: rgba(230, 193, 122, .6); }
.field textarea { min-height: 120px; resize: vertical; }
.consent { display: flex; gap: .8rem; align-items: flex-start; font-size: .82rem; color: var(--ink-2); line-height: 1.55; }
.consent input { flex: none; width: 16px; height: 16px; margin-top: .2rem; accent-color: var(--champagne); }
.form .btn { justify-content: center; }
.form__status { font-size: .86rem; min-height: 1.4em; }
.form__status[data-state="ok"] { color: var(--champagne); }
.form__status[data-state="err"] { color: #F0A5A5; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.booking { margin-top: clamp(3rem, 6vw, 4.5rem); padding: clamp(1.6rem, 3vw, 2.4rem); }
.booking__slot { margin-top: 1.4rem; min-height: 180px; border: 1px dashed var(--line); border-radius: 16px; display: grid; place-items: center; text-align: center; color: var(--ink-3); font-size: .9rem; padding: 2rem 1rem; }

/* --------------------------------------------------------------------------
   16. PIED DE PAGE
   -------------------------------------------------------------------------- */
.ft { position: relative; z-index: 2; border-top: 1px solid var(--line-soft); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.ft__punch { font-size: clamp(1.6rem, 3.2vw, 2.6rem); max-width: 22ch; }
.ft__punch em { font-size: 1.25em; }
.ft__row { margin-top: 2.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; align-items: center; }
.ft__links { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; font-size: .85rem; color: var(--ink-2); }
.ft__links a:hover { color: var(--champagne); }
.ft__bottom { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid var(--line-soft); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .78rem; color: var(--ink-3); }

/* --------------------------------------------------------------------------
   17. PAGES LÉGALES
   -------------------------------------------------------------------------- */
.legal { position: relative; z-index: 2; padding-block: clamp(9rem, 18vh, 12rem) var(--sec-y); }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: .8rem; }
.legal .legal__intro { margin-top: 1.4rem; }
.legal h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-top: 3rem; }
.legal h2 + p, .legal h2 + ul { margin-top: .9rem; }
.legal p, .legal li { color: var(--ink-2); }
.legal ul { margin-top: .8rem; display: grid; gap: .5rem; }
.legal li { padding-left: 1.2rem; position: relative; }
.legal li::before { content: ""; position: absolute; left: 0; top: .7em; width: 5px; height: 5px; border-radius: 50%; background: var(--champagne); }
.legal a { color: var(--champagne); text-decoration: underline; text-underline-offset: 3px; }
.legal .back { display: inline-flex; margin-top: 3rem; }

/* --------------------------------------------------------------------------
   18. APPARITIONS (mécanique reprise des pages Kuubo)
   -------------------------------------------------------------------------- */
.js .rv { opacity: 0; transform: translate3d(0, 28px, 0); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .rv.in { opacity: 1; transform: none; }
/* le masque est posé sur un enfant : un élément au clip-path vide n'est jamais observé */
.js .rv.mask { transform: none; }
.js .rv.mask .mk { display: block; clip-path: inset(0 0 100% 0); transform: translate3d(0, 14%, 0); transition: clip-path 1.1s var(--ease), transform 1.1s var(--ease); transition-delay: var(--d, 0s); }
.js .rv.mask.in .mk { clip-path: inset(-20% -5% -20% -5%); transform: none; }
.js .trail__dot, .js .trail__line { opacity: 0; }
.js.is-ready .trail__dot, .js.is-ready .trail__line { opacity: 1; }
.js .trail__dot.off { opacity: 0; }

/* --------------------------------------------------------------------------
   19. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .fan { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fan .card:nth-child(n) { transform: none; }
  .fan .card:nth-child(n):hover { transform: translateY(-6px); }
  #ouverture { padding-bottom: var(--sec-y); }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 0; z-index: 105; flex-direction: column; justify-content: center; gap: 1.8rem; background: rgba(7, 17, 28, .96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); clip-path: circle(0% at calc(100% - 34px) 34px); transition: clip-path .7s var(--ease); }
  .nav[data-open="true"] { clip-path: circle(150% at calc(100% - 34px) 34px); }
  .nav a { font-size: 1.6rem; font-weight: 500; }
  .nav a::after { display: none; }
  .nav .btn { font-size: .86rem; }
  .hd.is-nav-open { background: transparent; border-color: transparent; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__side { order: -1; justify-items: start; }
  .hero__mark { width: 150px; }
  .hero__pills { display: none; }
  .hero__word { top: 40%; }
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 380px; }
  .about__body > .node { left: -2px; top: -2rem; }
  .contact { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .bonus { grid-template-columns: 1fr; }
  .pin__head { max-width: 88vw; }
  .quote { width: min(300px, 82vw); }
  .pin > .node:last-child { left: 50%; }
}
@media (max-width: 640px) {
  .brand span { display: none; }
  .fan { grid-template-columns: 1fr; }
  .station { grid-template-columns: 40px 1fr; }
  .station__fig { grid-column: 2; }
  .station p { grid-column: 2; }
  .station .node { grid-row: span 2; }
  .step { grid-template-columns: 40px 1fr; }
  .step__box { grid-template-columns: 1fr; }
  .step__box .tag, .step__box h3, .step__box p, .step__box .pill { grid-column: 1; }
  .scrollcue { display: none; }
  .hero { min-height: auto; }
}

/* --------------------------------------------------------------------------
   20. MOUVEMENT RÉDUIT ET IMPRESSION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .rv, .rv.mask .mk { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .quote { opacity: 1 !important; transform: none !important; }
  .trail__branch { stroke-dashoffset: 0 !important; }
  .trail__tip { opacity: 1 !important; transform: none !important; }
}
@media print {
  .hd, .trail, .scrollcue, .glow, .hero__word, .pin__lines, .booking__slot { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .glass { border-color: #ccc; background: none; }
  .pin { height: auto; } .pin__stage { position: static; height: auto; background: none; }
  .quote { position: static; opacity: 1 !important; transform: none !important; margin: 1rem 0; }
}
