/* =====================================================================
   DESTINATION MAURICE 2026 — WILL BE EXPERIENCE
   Styles : cinéma (scènes plein écran) + parcours de qualification
   ===================================================================== */
:root {
  --night: #081631;
  --night-deep: #040914;
  --night-soft: #12264a;
  --ivory: #f6f1e7;
  --ivory-2: #ede5d6;
  --turq: #37c6c4;
  --turq-deep: #0e8c93;
  --gold: #c9a45c;
  --gold-soft: #e0c78f;
  --ink: #0d1a33;
  --muted: #5d6679;
  --error: #b3261e;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--night-deep);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  background: var(--ivory); color: var(--ink); padding: 10px 16px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  transform: translateY(-160%); transition: transform .3s var(--ease);
}
.skip-link:focus { transform: none; }

/* ---------------------------------------------------------------------
   En-tête discret
   --------------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(18px, 4vw, 48px);
  pointer-events: none;
}
.brand-mark {
  pointer-events: auto;
  font-family: var(--sans); font-weight: 600; font-size: 12px;
  letter-spacing: .32em; text-transform: uppercase; color: var(--ivory);
  text-decoration: none; text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.brand-mark span { color: var(--gold-soft); }
.brand-mark img { height: 28px; width: auto; }
.header-cta {
  pointer-events: auto;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory); background: rgba(4, 9, 20, .28);
  border: 1px solid rgba(246, 241, 231, .35); border-radius: 999px;
  padding: 9px 16px; cursor: pointer;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transform: translateY(-6px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), background .3s;
  visibility: hidden;
}
.header-cta.is-visible { opacity: 1; transform: none; visibility: visible; }
.header-cta:hover { background: rgba(4, 9, 20, .5); }

/* ---------------------------------------------------------------------
   Scène cinématographique
   --------------------------------------------------------------------- */
#cinema-track { position: relative; }
.stage {
  position: sticky; top: 0;
  height: 100vh;
  height: 100svh; /* mobile : hauteur stable malgré la barre d'adresse */
  width: 100%;
  overflow: hidden;
  background: var(--night-deep);
}
.stage-layers { position: absolute; inset: 0; }

.shot {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  overflow: hidden;
}
/* Plan hors écran : rien de ce qu'il contient ne peut s'afficher ni recevoir le focus */
.shot.is-off, .shot.is-off * { visibility: hidden !important; pointer-events: none !important; }
.shot-media {
  position: absolute; inset: 0;
  transform-origin: 50% 50%;
}
.shot-img {
  width: 100%; height: 100%;
  object-fit: cover;
  user-select: none; -webkit-user-drag: none;
}
.shot-img:not([src]) { visibility: hidden; }

/* Photo entière sur fond flou (images avec personnes / basse définition) */
.shot-bg {
  position: absolute; inset: -6%;
}
.shot-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .9;
  /* miniature lissée : fond velouté au lieu de pixels visibles */
  filter: blur(28px) saturate(1.15) brightness(.78);
  transform: scale(1.15);
}
.shot-bg img:not([src]) { visibility: hidden; }
.shot-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(4,9,20,.15), rgba(4,9,20,.6));
}
.shot-media.is-frame { inset: auto; }
.shot-media.is-frame .shot-img {
  object-fit: contain;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.75), 0 0 0 1px rgba(246,241,231,.08);
}

/* Version adoucie (flou progressif) superposée */
.shot-soft { position: absolute; inset: -4%; opacity: 0; pointer-events: none; }
.shot-soft img { width: 100%; height: 100%; object-fit: cover; filter: blur(18px); transform: scale(1.08); }
.shot-img { backface-visibility: hidden; }

/* Ouverture photo : voile latéral pour la lisibilité du titre */
.shot--hero .shot-scrim {
  background:
    linear-gradient(90deg, rgba(4,9,20,.8) 0%, rgba(4,9,20,.52) 34%, rgba(4,9,20,.1) 62%, transparent 80%),
    linear-gradient(to top, rgba(4,9,20,.55) 0%, transparent 30%);
}

.shot-dim { position: absolute; inset: 0; background: #02060f; opacity: 0; pointer-events: none; }
.shot-scrim {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 50% 45%, transparent 55%, rgba(2,6,15,.45) 100%),
    linear-gradient(to top, rgba(2,6,15,.62) 0%, rgba(2,6,15,0) 38%);
}
.shot--frame .shot-scrim { background: linear-gradient(to top, rgba(2,6,15,.55), transparent 35%); }

/* ---------- Scène « ciel / hublot » (sans photo) ---------- */
.sky-scene {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #1a2d52 0%, #0e1d3b 40%, #081631 70%, #050b1a 100%);
  will-change: transform;
}
.shot--sky .shot-media { transform-origin: 72% 50%; }
.porthole {
  position: absolute; left: 72%; top: 50%;
  width: min(40vmin, 340px); height: min(54vmin, 470px);
  transform: translate(-50%, -50%);
  border-radius: 46% / 40%;
  overflow: hidden;
  box-shadow:
    0 0 0 10px #18294a,
    0 0 0 13px rgba(246,241,231,.08),
    0 0 0 34px #0f1f3d,
    0 30px 80px 30px rgba(0,0,0,.45),
    inset 0 0 40px rgba(0,0,0,.35);
}
.porthole-sky {
  position: absolute; inset: -10%;
  background: linear-gradient(180deg, #2f5f95 0%, #7fb2d6 42%, #f1d9b0 72%, #f7e6c8 100%);
}
.porthole--day .porthole-sky { background: linear-gradient(180deg, #3b7fc0 0%, #9cc9e6 55%, #eaf3f8 100%); }
.porthole-sun {
  position: absolute; left: 62%; top: 60%; width: 70%; height: 50%;
  background: radial-gradient(circle, rgba(255,236,196,.95) 0%, rgba(255,220,160,.35) 30%, transparent 65%);
  transform: translate(-50%, -50%);
}
.porthole-cloud {
  position: absolute; left: -40%; width: 180%; height: 38%;
  background:
    radial-gradient(ellipse 22% 60% at 20% 60%, rgba(255,255,255,.95), transparent 70%),
    radial-gradient(ellipse 28% 70% at 48% 55%, rgba(255,250,242,.9), transparent 70%),
    radial-gradient(ellipse 20% 55% at 75% 62%, rgba(255,255,255,.92), transparent 70%),
    radial-gradient(ellipse 30% 50% at 95% 58%, rgba(250,244,234,.85), transparent 70%);
  animation: cloud-drift 38s linear infinite;
}
.porthole-cloud.c1 { top: 66%; }
.porthole-cloud.c2 { top: 50%; opacity: .6; animation-duration: 60s; animation-direction: reverse; }
.porthole-glass {
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(125deg, rgba(255,255,255,.18) 0%, transparent 35%, transparent 70%, rgba(255,255,255,.06));
}
@keyframes cloud-drift { from { transform: translateX(0); } to { transform: translateX(-22%); } }

/* ---------- Traversée des nuages ---------- */
.clouds-scene {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #cfdced 0%, #eef1f2 45%, #f8f3ea 100%);
}
.clouds-scene--day { background: linear-gradient(180deg, #8fbbe0 0%, #d8e8f3 50%, #f4f5f2 100%); }
.cloud-layer {
  position: absolute; inset: -30%;
  will-change: transform, opacity;
  background:
    radial-gradient(ellipse 18% 12% at 22% 35%, rgba(255,255,255,.95), transparent 70%),
    radial-gradient(ellipse 24% 14% at 70% 28%, rgba(255,255,255,.9), transparent 70%),
    radial-gradient(ellipse 20% 16% at 40% 68%, rgba(255,255,255,.92), transparent 70%),
    radial-gradient(ellipse 26% 13% at 82% 72%, rgba(255,253,248,.9), transparent 70%),
    radial-gradient(ellipse 30% 18% at 55% 50%, rgba(255,255,255,.7), transparent 72%);
}
.cloud-layer.l2 { transform: rotate(18deg); opacity: .8; }
.cloud-layer.l3 { transform: rotate(-12deg); opacity: .65; }

/* ---------- Lueur turquoise ---------- */
.glow-scene { position: absolute; inset: 0; background: var(--night-deep); }
.glow-orb {
  position: absolute; left: 50%; top: 58%;
  width: 120vmax; height: 120vmax; margin: -60vmax 0 0 -60vmax;
  border-radius: 50%;
  background: radial-gradient(circle, #7fe3dc 0%, #37c6c4 22%, #0f8f98 44%, rgba(8,60,86,.6) 62%, transparent 72%);
  will-change: transform, opacity;
}

/* ---------- Transferts (tracé) ---------- */
.route-scene {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 70%, #10305a 0%, #081631 50%, #040914 100%);
}
.route-svg { position: absolute; left: 50%; top: 66%; width: min(900px, 88vw); transform: translate(-50%, -50%); overflow: visible; }
.route-base { fill: none; stroke: rgba(246,241,231,.14); stroke-width: 1.5; stroke-dasharray: 3 7; }
.route-line { fill: none; stroke: var(--gold-soft); stroke-width: 2; stroke-linecap: round; }
.route-node circle { fill: var(--night-deep); stroke: var(--gold-soft); stroke-width: 2; }
.route-node text { fill: var(--ivory); font-family: var(--sans); font-size: 13px; letter-spacing: .2em; text-transform: uppercase; }
.route-dot { fill: #fff; filter: drop-shadow(0 0 8px rgba(255,236,196,.9)); }

/* ---------------------------------------------------------------------
   Légendes / textes de scène
   --------------------------------------------------------------------- */
.shot-captions { position: absolute; inset: 0; pointer-events: none; }
.cap {
  position: absolute;
  opacity: 0; visibility: hidden;
  will-change: opacity, transform;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
  pointer-events: none;
}
.cap.is-on { visibility: visible; pointer-events: auto; }
.cap--center { left: 50%; top: 50%; width: min(1000px, 90vw); text-align: center; translate: -50% -50%; }
.cap--center-high { left: 50%; top: 32%; width: min(900px, 90vw); text-align: center; translate: -50% -50%; }
.cap--bottom-left { left: clamp(20px, 6vw, 88px); bottom: clamp(48px, 11vh, 120px); max-width: min(640px, 86vw); }
.cap--bottom-center { left: 50%; bottom: clamp(56px, 12vh, 130px); width: min(1000px, 90vw); text-align: center; translate: -50% 0; }
.cap--left { left: clamp(20px, 6vw, 96px); top: 50%; max-width: min(460px, 38vw); translate: 0 -50%; }
.cap--left-low { left: clamp(20px, 6vw, 96px); top: 64%; max-width: min(460px, 38vw); }
.cap--right { right: clamp(90px, 10vw, 160px); top: 50%; max-width: min(460px, 38vw); translate: 0 -50%; text-align: right; }

.cap-kicker {
  display: inline-block;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 22px;
}
.cap-title, .cap-title-xl, .cap-statement, .cap-word, .cap-suspense, .hero-title, .q-line {
  font-family: var(--serif); font-weight: 600; margin: 0; line-height: .98;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero-title { font-size: clamp(44px, 7.4vw, 112px); }
.hero-sub {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px); line-height: 1.3; margin: 26px 0 0; color: #fbf6ec;
}
.hero-actions { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.hero-mention {
  font-size: 13px; line-height: 1.5; color: rgba(246,241,231,.86);
  max-width: 460px; margin: 0 auto; text-shadow: 0 1px 10px rgba(0,0,0,.6);
}
.cap-title { font-size: clamp(56px, 10vw, 150px); letter-spacing: .12em; }
.cap-title-xl { font-size: clamp(56px, 11vw, 170px); letter-spacing: .08em; }
.cap-year { display: block; font-size: .42em; letter-spacing: .6em; color: var(--gold-soft); margin-top: .35em; padding-left: .6em; }
.cap-statement { font-size: clamp(26px, 3.6vw, 54px); line-height: 1.08; }
.cap-word { font-size: clamp(40px, 7vw, 100px); letter-spacing: .14em; display: block; margin: .12em 0; }
.cap-suspense { font-size: clamp(38px, 6.4vw, 92px); letter-spacing: .1em; font-style: italic; font-weight: 500; text-transform: none; }
.cap-words .cap-word { opacity: 0; will-change: opacity, transform; }

.cap-identity-label {
  font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold-soft); margin: 0 0 8px;
}
.cap-identity-text { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 32px); margin: 0; }

.cap-scene-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 5.2vw, 78px);
  letter-spacing: .06em; text-transform: uppercase; margin: 0 0 18px; line-height: 1;
}
.cap-line { font-size: clamp(16px, 1.35vw, 19px); margin: 0 0 8px; color: #fbf6ec; }
.cap-line--lead { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.25; }
.cap-small { font-size: 13px; color: rgba(246,241,231,.82); margin-top: 16px; max-width: 420px; }
.cap--center .cap-small, .cap--center-high .cap-small { margin-left: auto; margin-right: auto; }
.cap-place { font-size: 12px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold-soft); margin: 0; }
/* Section expériences : mention discrète du lieu */
.exp-place { font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 12px; }
.exp-place::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .8; }
.cap--right .exp-place { flex-direction: row-reverse; }
.cap--bottom-center .exp-place::before { display: none; }
.exp-line { margin-top: 16px; }
.cap-year--inline { display: block; margin-top: .25em; }
[data-shot="mu-plage"] .cap-title { font-size: clamp(44px, 7vw, 104px); }
.cap-residence { font-family: var(--serif); font-size: clamp(30px, 3.4vw, 48px); font-weight: 600; margin: 8px 0 0; letter-spacing: .03em; }

.demo-tag {
  display: inline-block; margin-top: 12px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: #0b1a33; background: var(--gold-soft); padding: 4px 9px; border-radius: 3px; text-shadow: none;
}

.q-line { font-size: clamp(30px, 4.6vw, 68px); line-height: 1.06; }
.q-line--small { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .42em; color: var(--gold-soft); display: block; margin-bottom: 18px; line-height: 1.4; }
.q-actions { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.q-duration { font-size: 14px; color: rgba(246,241,231,.85); margin: 0; }

/* ---------------------------------------------------------------------
   Boutons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 30px;
  font-family: var(--sans); font-weight: 600; font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s, transform .35s var(--ease), box-shadow .35s;
  text-shadow: none;
}
.btn:disabled { opacity: .55; cursor: not-allowed; }
.btn-light { background: var(--ivory); color: var(--ink); }
.btn-light:hover:not(:disabled) { background: #fff; transform: translateY(-2px); box-shadow: 0 16px 40px -18px rgba(0,0,0,.6); }
.btn-ghost { background: rgba(4,9,20,.25); color: var(--ivory); border-color: rgba(246,241,231,.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(246,241,231,.14); }
.btn-gold { background: var(--gold); color: #0b1528; }
.btn-gold:hover:not(:disabled) { background: var(--gold-soft); transform: translateY(-2px); }
.btn-dark { background: var(--night); color: var(--ivory); }
.btn-dark:hover:not(:disabled) { background: var(--night-soft); transform: translateY(-2px); box-shadow: 0 18px 40px -20px rgba(8,22,49,.8); }
.btn-outline { background: transparent; color: var(--night); border-color: rgba(8,22,49,.3); }
.btn-outline:hover { border-color: var(--night); }
.btn-link {
  background: none; border: 0; padding: 6px 2px; cursor: pointer;
  font-size: 14px; color: var(--night); text-decoration: underline; text-underline-offset: 4px;
}
.btn .arrow { display: inline-block; animation: nudge 2.4s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------------------------------------------------------------------
   Navigation des chapitres
   --------------------------------------------------------------------- */
.chapter-nav {
  position: fixed; right: clamp(14px, 2.4vw, 34px); top: 50%; z-index: 50;
  transform: translateY(-50%);
  transition: opacity .6s var(--ease);
}
.chapter-nav ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.chapter-nav button {
  display: flex; align-items: center; justify-content: flex-end; gap: 12px;
  background: none; border: 0; padding: 6px 0; cursor: pointer; color: rgba(246,241,231,.75);
  font-size: 11px; letter-spacing: .24em; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,.6);
}
.chapter-nav .label { opacity: 0; transform: translateX(6px); transition: opacity .4s, transform .4s var(--ease); }
.chapter-nav .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(246,241,231,.5); transition: all .4s var(--ease); box-shadow: 0 0 6px rgba(0,0,0,.4); }
.chapter-nav button:hover .label, .chapter-nav button:focus-visible .label { opacity: 1; transform: none; }
.chapter-nav li.is-active .dot { background: var(--gold-soft); height: 22px; border-radius: 4px; }
.chapter-nav li.is-active button { color: var(--ivory); }
body.flow-open .chapter-nav, body.flow-open .site-header { opacity: 0; pointer-events: none; }

.scroll-hint {
  position: fixed; left: 50%; bottom: 22px; z-index: 40; transform: translateX(-50%);
  width: 1px; height: 46px; background: linear-gradient(to bottom, transparent, rgba(246,241,231,.8));
  transition: opacity .6s; pointer-events: none;
}
.scroll-hint::after {
  content: ""; position: absolute; left: -2px; top: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--ivory);
  animation: hint 2.6s var(--ease) infinite;
}
@keyframes hint { 0% { top: 0; opacity: 0; } 30% { opacity: 1; } 100% { top: 42px; opacity: 0; } }
.scroll-hint.is-hidden { opacity: 0; }

/* ---------------------------------------------------------------------
   Pied de page
   --------------------------------------------------------------------- */
.site-footer {
  position: relative; z-index: 2;
  background: var(--night-deep); color: rgba(246,241,231,.7);
  padding: 34px clamp(20px, 5vw, 60px) 42px; text-align: center; font-size: 13px;
  border-top: 1px solid rgba(246,241,231,.08);
}
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px 14px; }
.site-footer a { text-decoration: none; letter-spacing: .08em; padding: 4px 2px; }
.site-footer a:hover { color: var(--ivory); text-decoration: underline; text-underline-offset: 4px; }
.site-footer .sep { opacity: .4; }
.site-footer strong { color: var(--ivory); letter-spacing: .28em; font-weight: 600; }
.footer-cta { margin: 0 auto 30px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-cta p { margin: 0; font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--ivory); }

/* ---------------------------------------------------------------------
   PARCOURS (questionnaire → résultat → rendez-vous → préparation)
   --------------------------------------------------------------------- */
.flow {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ivory); color: var(--ink);
  overflow-y: auto; overscroll-behavior: contain;
  opacity: 0; visibility: hidden;
  transition: opacity .9s var(--ease), visibility 0s linear .9s;
}
.flow.is-open { opacity: 1; visibility: visible; transition: opacity .9s var(--ease), visibility 0s; }
.flow-veil {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse at 80% -10%, rgba(55,198,196,.14), transparent 55%),
              radial-gradient(ellipse at -10% 110%, rgba(201,164,92,.12), transparent 50%);
}
.flow-header {
  position: sticky; top: 0; z-index: 5;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  padding: 18px clamp(16px, 4vw, 44px);
  background: rgba(246,241,231,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(8,22,49,.06);
}
.flow-back {
  justify-self: start; display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 0; cursor: pointer; font-size: 14px; color: var(--night); padding: 8px 4px;
}
.flow-back[hidden] { display: none; }
.flow-brand { font-weight: 600; font-size: 12px; letter-spacing: .32em; color: var(--night); text-transform: uppercase; }
.flow-brand span { color: var(--gold); }
.flow-close {
  justify-self: end; background: none; border: 1px solid rgba(8,22,49,.18); border-radius: 999px;
  padding: 8px 14px; cursor: pointer; font-size: 13px; color: var(--night);
}
.flow-close:hover { border-color: var(--night); }
.flow-progress { position: relative; z-index: 1; max-width: 720px; margin: 26px auto 0; padding: 0 22px; }
.flow-progress[hidden] { display: none; }
.flow-progress-label { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.flow-progress-label strong { color: var(--gold); font-weight: 600; }
.flow-progress-bar { height: 2px; background: rgba(8,22,49,.1); border-radius: 2px; overflow: hidden; }
.flow-progress-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--turq-deep), var(--gold)); width: 0; transition: width .7s var(--ease); }

.flow-main { position: relative; z-index: 1; padding: clamp(28px, 6vh, 64px) 22px 80px; }
.screen { max-width: 720px; margin: 0 auto; animation: screen-in .7s var(--ease) both; }
.screen--wide { max-width: 980px; }
@keyframes screen-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.screen-kicker { font-size: 12px; font-weight: 600; letter-spacing: .36em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.screen-title {
  font-family: var(--serif); font-weight: 600; font-size: clamp(32px, 4.4vw, 54px); line-height: 1.04;
  letter-spacing: .02em; text-transform: uppercase; margin: 0 0 16px; color: var(--night);
}
.screen-title:focus { outline: none; }
.screen-lead { font-size: 17px; color: var(--muted); margin: 0 0 30px; max-width: 58ch; }
.screen-text p { font-size: 17px; margin: 0 0 16px; color: #2a3550; max-width: 60ch; }
.screen-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.choices { display: grid; gap: 12px; margin-top: 30px; }
.choice {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%;
  text-align: left; padding: 20px 24px; min-height: 68px;
  background: #fffdf8; border: 1px solid rgba(8,22,49,.12); border-radius: 14px;
  font-size: 17px; font-weight: 500; color: var(--ink); cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease), background .3s;
}
.choice::after {
  content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%;
  border: 1.5px solid rgba(8,22,49,.25); transition: all .3s var(--ease);
}
.choice:hover { border-color: rgba(8,22,49,.35); transform: translateY(-1px); box-shadow: 0 14px 30px -22px rgba(8,22,49,.5); }
.choice[aria-pressed="true"] { border-color: var(--night); background: #fff; box-shadow: 0 0 0 1px var(--night); }
.choice[aria-pressed="true"]::after { border-color: var(--night); background: var(--night); box-shadow: inset 0 0 0 4px #fff; }

.feedback-mark {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 28px;
  background: linear-gradient(135deg, var(--turq), var(--turq-deep)); color: #fff; font-size: 26px;
}
.feedback-mark--neutral { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: var(--night); }

/* Institutionnel WILL BE */
.why {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(28px, 5vw, 70px); align-items: center;
}
.why-visual { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden; background: var(--night); }
.why-visual img { width: 100%; height: 100%; object-fit: cover; animation: slow-zoom 24s ease-out both; }
.why-visual img:not([src]) { visibility: hidden; }
.why-visual .why-mark {
  position: absolute; left: 22px; bottom: 20px; color: var(--ivory);
  font-weight: 600; letter-spacing: .36em; font-size: 13px; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,.6);
}
.why-visual .why-mark img { width: auto; height: 34px; opacity: 1; animation: none; }
@keyframes slow-zoom { from { transform: scale(1.12); } to { transform: scale(1); } }

/* Formulaire */
.form { display: grid; gap: 20px; margin-top: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label, .field .label { display: block; font-size: 14px; font-weight: 600; color: var(--night); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; min-height: 54px; padding: 0 16px;
  font: inherit; font-size: 16px; color: var(--ink);
  background: #fffdf8; border: 1px solid rgba(8,22,49,.2); border-radius: 10px;
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--night); box-shadow: 0 0 0 3px rgba(55,198,196,.3); }
.field.has-error input, .field.has-error select { border-color: var(--error); }
.field-hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
.field-error { font-size: 13px; color: var(--error); margin-top: 6px; font-weight: 500; }
.phone { display: grid; grid-template-columns: 150px 1fr; gap: 10px; }
.check { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: 15px; color: #2a3550; }
.check input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--night); }
.check.has-error { color: var(--error); }
.form-note { font-size: 13px; color: var(--muted); margin: 0; }
.form-note a { color: var(--night); }
.alert { padding: 14px 18px; border-radius: 10px; font-size: 15px; margin-top: 18px; }
.alert--error { background: #fbeaea; color: #7a1c16; border: 1px solid #efc2bf; }
.alert--info { background: #eaf4f4; color: #0b4f55; border: 1px solid #bfe0df; }
.alert--demo { background: #fbf3e2; color: #6b4d14; border: 1px dashed var(--gold); }
.spinner { width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Résultat & rendez-vous */
.result-hero { text-align: center; padding: 10px 0 30px; }
.result-hero .screen-title { font-size: clamp(34px, 5vw, 62px); }
.result-hero .screen-lead { margin-left: auto; margin-right: auto; }
.result-step { margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(8,22,49,.1); }
.result-step h3 { font-family: var(--serif); font-size: 28px; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 10px; color: var(--night); }
.booking {
  margin-top: 40px; background: #fffdf8; border: 1px solid rgba(8,22,49,.1); border-radius: 18px;
  padding: clamp(22px, 4vw, 40px);
}
.booking-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.booking-head h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 40px); text-transform: uppercase; letter-spacing: .03em; margin: 0; color: var(--night); }
.booking-head p { margin: 0; color: var(--muted); }
.booking-embed { min-height: 0; border-radius: 12px; overflow: hidden; }
.booking-embed.is-loaded { min-height: 640px; border: 1px solid rgba(8,22,49,.08); }
.booking-empty {
  border: 1px dashed rgba(8,22,49,.25); border-radius: 12px; padding: 26px; text-align: center; color: var(--muted);
}
.booking-empty strong { display: block; color: var(--night); font-size: 17px; margin-bottom: 6px; }
.booking-alt { margin-top: 22px; font-size: 15px; color: #2a3550; display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; }

.confirm-card { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin: 26px 0 10px; }
.confirm-card div { background: #fffdf8; border: 1px solid rgba(8,22,49,.1); border-radius: 12px; padding: 16px 18px; }
.confirm-card dt { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.confirm-card dd { margin: 0; font-size: 18px; font-weight: 600; color: var(--night); }

/* Présentation de préparation */
.flow.is-dark { background: var(--night-deep); color: var(--ivory); }
.flow.is-dark .flow-header { background: rgba(4,9,20,.6); border-color: rgba(246,241,231,.08); }
.flow.is-dark .flow-brand, .flow.is-dark .flow-back, .flow.is-dark .flow-close { color: var(--ivory); }
.flow.is-dark .flow-close { border-color: rgba(246,241,231,.3); }
.prep { position: fixed; inset: 0; top: 0; z-index: 1; }
.prep-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s var(--ease), visibility 0s linear 1.1s; }
.prep-slide.is-active { opacity: 1; visibility: visible; transition: opacity 1.1s var(--ease), visibility 0s; }
.prep-slide .prep-img { position: absolute; inset: 0; overflow: hidden; }
.prep-slide .prep-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); transition: transform 14s linear; }
.prep-slide.is-active .prep-img img { transform: scale(1); }
.prep-slide .prep-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,9,20,.88) 0%, rgba(4,9,20,.55) 48%, rgba(4,9,20,.1) 100%); }
.prep-content {
  position: absolute; left: clamp(22px, 7vw, 110px); top: 50%; transform: translateY(-50%);
  max-width: 560px; padding-right: 22px;
}
.prep-content > * { opacity: 0; transform: translateY(16px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.prep-slide.is-active .prep-content > * { opacity: 1; transform: none; }
.prep-slide.is-active .prep-content > *:nth-child(2) { transition-delay: .15s; }
.prep-slide.is-active .prep-content > *:nth-child(3) { transition-delay: .3s; }
.prep-content .screen-kicker { color: var(--gold-soft); }
.prep-content h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(36px, 4.6vw, 64px); line-height: 1.02; margin: 0 0 20px; }
.prep-content p { font-size: 18px; line-height: 1.6; color: rgba(246,241,231,.9); margin: 0; }
.prep-controls {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px clamp(18px, 7vw, 110px) 30px;
}
.prep-dots { display: flex; gap: 8px; flex: 1; max-width: 360px; }
.prep-dots button { flex: 1; height: 3px; padding: 8px 0; background: none; border: 0; cursor: pointer; position: relative; }
.prep-dots button::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 3px; margin-top: -1.5px; background: rgba(246,241,231,.25); border-radius: 2px; }
.prep-dots button.is-done::before, .prep-dots button.is-active::before { background: var(--gold-soft); }
.prep-nav { display: flex; gap: 10px; }
.prep-nav .btn { min-height: 48px; padding: 0 22px; }

/* ---------------------------------------------------------------------
   Panneau « éléments à valider » (mode démonstration)
   --------------------------------------------------------------------- */
.audit-toggle {
  position: fixed; left: 16px; bottom: 16px; z-index: 90;
  background: var(--gold-soft); color: var(--night); border: 0; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em; padding: 9px 14px; cursor: pointer;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.6);
}
body.flow-open .audit-toggle { bottom: auto; top: 76px; }
.audit-panel {
  position: fixed; left: 16px; bottom: 60px; z-index: 95; width: min(460px, calc(100vw - 32px));
  max-height: min(72vh, 680px); overflow: auto;
  background: #fffdf8; color: var(--ink); border-radius: 14px; padding: 22px 22px 18px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7); font-size: 14px;
}
body.flow-open .audit-panel { bottom: auto; top: 118px; }
.audit-panel h2 { font-family: var(--serif); font-size: 26px; margin: 0 0 4px; }
.audit-panel h3 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 18px 0 8px; }
.audit-panel ul { margin: 0; padding-left: 18px; }
.audit-panel li { margin-bottom: 6px; }
.audit-panel code { font-size: 12px; background: #f1ebdf; padding: 1px 5px; border-radius: 4px; }
.audit-close { float: right; background: none; border: 0; font-size: 22px; line-height: 1; cursor: pointer; color: var(--muted); }

/* ---------------------------------------------------------------------
   Mobile
   --------------------------------------------------------------------- */
.cap--hero { left: clamp(22px, 7vw, 110px); top: 50%; max-width: min(620px, 52vw); translate: 0 -50%; }
.cap--hero .hero-actions { align-items: flex-start; }
.cap--hero .hero-mention { margin: 0; }
.cap--hero .hero-title { font-size: clamp(40px, min(6.2vw, 9.5vh), 96px); }
.cap--hero .hero-sub { margin-top: 18px; }
.cap--hero .hero-actions { margin-top: 28px; gap: 16px; }

/* ---------------------------------------------------------------------
   Planning v2 : héro, question « pourquoi », preuves, compagnie
   --------------------------------------------------------------------- */
.hero-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 6px; }
.hero-list li { position: relative; padding-left: 26px; font-size: clamp(15px, 1.2vw, 17px); color: #fbf6ec; }
.hero-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 14px; height: 1px; background: var(--gold-soft); }
.hero-famille { margin: 14px 0 0; font-size: clamp(14px, 1.1vw, 16px); color: rgba(246,241,231,.9); max-width: 520px; }
.hero-famille strong { color: var(--gold-soft); font-weight: 600; }
.btn-round { width: 58px; min-height: 58px; padding: 0; font-size: 20px; }

.why-a { font-size: 13px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-soft); margin: 0 0 18px; font-weight: 600; }
.why-b { font-family: var(--serif); font-style: italic; font-size: clamp(30px, 4.2vw, 60px); line-height: 1.1; margin: 0 auto; max-width: 16em; }
.why-c { margin: 24px auto 0; max-width: 560px; font-size: clamp(15px, 1.25vw, 18px); color: rgba(246,241,231,.9); }
.q-duration em { font-style: italic; }

.proof-title { font-family: var(--serif); font-weight: 600; font-size: clamp(40px, 6.4vw, 96px); line-height: 1; letter-spacing: .03em; margin: 0; }
.proof-cities { margin: 28px 0 0; font-size: 13px; letter-spacing: .45em; text-transform: uppercase; color: var(--gold-soft); font-weight: 600; }
.proof-text { margin: 18px auto 0; max-width: 560px; font-size: clamp(16px, 1.35vw, 19px); color: rgba(246,241,231,.88); }
.proof-next { margin: 26px 0 0; font-family: var(--serif); font-style: italic; font-size: 22px; }
.proof-kicker { font-size: 11px; letter-spacing: .4em; color: rgba(246,241,231,.6); margin: 0 0 14px; font-weight: 600; }
.proof-detail { margin-top: 8px !important; font-size: 15px !important; }
.proof-video-btn { margin-top: 22px; min-height: 46px; font-size: 12px; }
.cap--right .proof-video-btn { margin-left: auto; }
/* Ton documentaire : grain + légère désaturation, cadre « tirage photo » */
.shot--doc .shot-img { filter: saturate(.92) contrast(1.04); }
.shot--doc::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .09; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.shot--doc .shot-media.is-frame .shot-img { outline: 10px solid #f6f1e7; outline-offset: -1px; box-shadow: 0 50px 100px -30px rgba(0,0,0,.85); }

.companion-q { font-size: clamp(30px, 3.4vw, 50px) !important; margin-bottom: 22px !important; }
.companion { display: flex; flex-wrap: wrap; gap: 10px; }
.cap--right .companion { justify-content: flex-end; }
.companion-btn {
  min-height: 50px; padding: 0 22px; border-radius: 999px; cursor: pointer;
  background: rgba(4,9,20,.35); color: var(--ivory); border: 1px solid rgba(246,241,231,.5);
  font-size: 14px; font-weight: 600; letter-spacing: .08em;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .35s var(--ease), color .35s, transform .35s var(--ease), border-color .35s;
}
.companion-btn:hover { transform: translateY(-2px); border-color: var(--ivory); }
.companion-btn[aria-pressed="true"] { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.companion-answer { min-height: 1.6em; margin: 20px 0 0; font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2vw, 30px); color: #fff; }
.companion-answer.is-pop { animation: pop-in .8s var(--ease) both; }
.companion-echo:empty { display: none; }
.companion-echo { font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 20px; }
@keyframes pop-in { from { opacity: 0; transform: translateY(10px); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }

/* Parcours B */
.screen-sub { font-family: var(--serif); font-size: 26px; font-style: italic; color: var(--night); margin: 0 0 10px; }
.screen-question { font-size: 18px; font-weight: 600; color: var(--night); margin: 0; max-width: 60ch; }
.choices--duo { grid-template-columns: 1fr 1fr; max-width: 460px; }
.choices--duo .choice { justify-content: center; font-weight: 600; letter-spacing: .12em; }
.choices--duo .choice::after { display: none; }
.share-preview { margin: 8px 0 0; padding: 18px 22px; background: #fffdf8; border-left: 3px solid var(--turq-deep); border-radius: 6px; font-style: italic; color: #2a3550; }

/* Conseiller */
.advisor { display: flex; align-items: center; gap: 16px; margin: 18px 0 8px; }
.advisor img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.advisor span { display: block; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.advisor strong { font-family: var(--serif); font-size: 28px; color: var(--night); }

/* Film de pré-closing */
.prep-dots button.is-timing::after {
  content: ""; position: absolute; left: 0; top: 50%; height: 3px; margin-top: -1.5px; width: 0; border-radius: 2px;
  background: var(--gold-soft); animation: prep-bar var(--dur, 8s) linear forwards;
}
@keyframes prep-bar { to { width: 100%; } }
.prep-play { min-width: 128px; }
.prep-video { width: 100%; max-height: 70vh; background: #000; border-radius: 8px; margin-top: 20px; }

/* Album photo interactif (vraies photos du voyage) */
.shot--album { background: #07090f; }
.album-bg { position: absolute; inset: -8%; }
.album-bg img { width: 100%; height: 100%; object-fit: cover; filter: blur(30px) brightness(.45) saturate(1.2); transform: scale(1.1); }
.album-bg img:not([src]) { visibility: hidden; }
.album-head { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); text-align: center; pointer-events: none; z-index: 0; }
.album-title { font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 6vw, 92px); letter-spacing: .06em; margin: 0; color: var(--ivory); text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.album-sub { margin: 10px 0 0; font-size: 12px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold-soft); }
.album { position: absolute; inset: 0; z-index: 1; }
.album-photo {
  position: absolute; padding: 7px 7px 26px; background: #f6f1e7; border: 0; cursor: zoom-in;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.8); visibility: hidden; opacity: 0;
  transition: box-shadow .4s var(--ease);
}
.album-photo img { display: block; width: 100%; height: auto; object-fit: cover; background: #d9d2c4; }
.album-caption { position: absolute; left: 8px; right: 8px; bottom: 5px; font-family: var(--serif); font-style: italic; font-size: 13px; color: #3a3a3a; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.album-photo:hover, .album-photo:focus-visible { box-shadow: 0 40px 80px -20px rgba(0,0,0,.9), 0 0 0 2px var(--gold-soft); z-index: 3; }
.lightbox { position: fixed; inset: 0; z-index: 160; background: rgba(2,6,15,.94); display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .5s var(--ease); }
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox-inner { margin: 0; max-width: min(1100px, 100%); text-align: center; position: relative; }
.lightbox-inner img { max-width: 100%; max-height: 82vh; width: auto; margin: 0 auto; box-shadow: 0 40px 100px -30px #000; }
.lightbox-caption { margin-top: 12px; color: rgba(246,241,231,.8); font-size: 14px; }
.lightbox-close { position: absolute; top: -48px; right: 0; background: none; border: 1px solid rgba(246,241,231,.4); color: var(--ivory); border-radius: 999px; padding: 8px 16px; cursor: pointer; }
@media (max-width: 767px) {
  .album-photo { padding: 5px 5px 16px; }
  .album-head { top: auto; bottom: 3%; transform: none; }
  .album-title { font-size: 30px; }
  .album-sub { font-size: 10px; letter-spacing: .28em; }
}

/* Section « Leurs expériences » : fond panoramique net + petits carrés */
.shot--album-sharp .album-bg { inset: -3%; }
.shot--album-sharp .album-bg img { filter: brightness(.62) saturate(1.05); transform: scale(1.03); }
.shot--album-sharp .album-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(4,8,16,.82) 0%, rgba(4,8,16,.35) 30%, rgba(4,8,16,.25) 70%, rgba(4,8,16,.6) 100%);
}
.shot--album-top .album-head { top: clamp(74px, 11vh, 118px); transform: none; z-index: 2; }
.shot--album-top .album-title { font-size: clamp(28px, 3.6vw, 54px); }
.shot--album-top .album-sub { font-size: 13px; font-weight: 600; letter-spacing: .42em; margin-top: 14px; }
.shot--album-square .album-photo { padding: 6px 6px 22px; }
.shot--album-square .album-caption { font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; bottom: 5px; }
.album-photo--proof { box-shadow: 0 30px 60px -20px rgba(0,0,0,.8), 0 0 0 2px var(--gold-soft); }
@media (max-width: 767px) {
  .shot--album-top .album-head { top: 66px; bottom: auto; padding: 0 16px; }
  .shot--album-top .album-title { font-size: 24px; line-height: 1.05; }
  .shot--album-top .album-sub { font-size: 9px; letter-spacing: .22em; margin-top: 8px; }
  .shot--album-square .album-photo { padding: 3px 3px 14px; }
  .shot--album-square .album-caption { font-size: 7px; letter-spacing: .04em; left: 4px; right: 4px; bottom: 3px; }
}

/* ---------------------------------------------------------------------
   Témoignages (fin de page)
   --------------------------------------------------------------------- */
.temoignages { position: relative; z-index: 5; background: linear-gradient(to bottom, #040914 0%, #0a1222 40%, #070d1a 100%); padding: clamp(70px, 10vw, 130px) 0 clamp(50px, 7vw, 90px); }
.tm-inner { width: min(1240px, 92vw); margin: 0 auto; }
.tm-head { text-align: center; margin-bottom: clamp(30px, 4vw, 54px); }
.tm-kicker { margin: 0 0 14px; font-size: 12px; font-weight: 600; letter-spacing: .42em; color: var(--gold-soft); }
.tm-title { margin: 0; font-family: var(--serif); font-weight: 600; font-size: clamp(38px, 5.4vw, 80px); letter-spacing: .04em; line-height: 1; }
.tm-sub { margin: 14px 0 0; font-family: var(--serif); font-style: italic; font-size: clamp(19px, 1.8vw, 26px); color: rgba(246,241,231,.82); }
.tm-mosaic { list-style: none; margin: 0 0 clamp(34px, 4.5vw, 60px); padding: 0; display: grid; grid-template-columns: repeat(8, 1fr); gap: clamp(6px, .8vw, 12px); }
.tm-mosaic-item { aspect-ratio: 3 / 4; overflow: hidden; border-radius: 8px; background: #1a2233; opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.tm-mosaic-item.is-in { opacity: 1; transform: none; }
.tm-mosaic-item img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; transition: transform 1.2s var(--ease); }
.tm-mosaic-item:hover img { transform: scale(1.05); }
@media (max-width: 767px) { .tm-mosaic { grid-template-columns: repeat(4, 1fr); } }
@media (prefers-reduced-motion: reduce) { .tm-mosaic-item { opacity: 1; transform: none; transition: none; } }
.tm-grid { columns: 3 320px; column-gap: clamp(14px, 1.6vw, 24px); }
.tm-card {
  break-inside: avoid; margin: 0 0 clamp(14px, 1.6vw, 24px); padding: 22px 22px 20px;
  background: rgba(246,241,231,.045); border: 1px solid rgba(246,241,231,.12); border-radius: 12px;
  opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.tm-card.is-in { opacity: 1; transform: none; }
.tm-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.tm-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid var(--gold-soft); background: #1a2233; }
.tm-avatar--initials { display: grid; place-items: center; font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--gold-soft); }
.tm-name { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: .02em; line-height: 1.1; }
.tm-trip { margin: 4px 0 0; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
.tm-quote { margin: 0; }
.tm-quote p { margin: 0; font-size: 15.5px; line-height: 1.65; color: rgba(246,241,231,.9); }
.tm-quote.is-clamped p { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.tm-more { margin-top: 10px; padding: 6px 0; background: none; border: 0; color: var(--gold-soft); font: inherit; font-size: 13px; letter-spacing: .08em; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }
.tm-cta { margin-top: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.tm-cta p { margin: 0; font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.2vw, 30px); }
@media (max-width: 767px) {
  .tm-card { padding: 18px 16px 16px; }
  .tm-avatar { width: 56px; height: 56px; }
  .tm-name { font-size: 20px; }
  .tm-quote p { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) { .tm-card { opacity: 1; transform: none; transition: none; } }

/* ---------------------------------------------------------------------
   Section unique « Votre séjour » : fond + 4 cartes + compagnie
   --------------------------------------------------------------------- */
.shot--sejour { background: #05080f; }
.sejour-bg img { filter: brightness(.5) saturate(1.05); transform: scale(1.1); }
.sejour-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(4,8,16,.75), rgba(4,8,16,.3) 40%, rgba(4,8,16,.7)); }
.sejour-inner {
  position: absolute; left: 0; right: 0; top: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: clamp(78px, 11vh, 110px) 5vw clamp(20px, 4vh, 48px); box-sizing: border-box;
}
@media (min-width: 768px) and (max-height: 820px) {
  .sejour-card-img { aspect-ratio: 16 / 8; }
  .sejour-card-body { padding: 12px 16px 14px; }
  .sejour-head { margin-bottom: 16px; }
  .sejour-companion { margin-top: 16px; }
  .sejour-companion-q { font-size: 24px; margin-bottom: 10px; }
}
.sejour-head { text-align: center; margin-bottom: clamp(18px, 3.5vh, 36px); }
.sejour-title { font-family: var(--serif); font-weight: 600; font-size: clamp(30px, 3.8vw, 58px); letter-spacing: .05em; margin: 0; line-height: 1; }
.sejour-sub { margin: 12px 0 0; font-size: 13px; font-weight: 600; letter-spacing: .4em; text-transform: uppercase; color: var(--gold-soft); }
.sejour-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.4vw, 22px); width: min(1240px, 100%); margin: 0 auto; }
.sejour-card {
  background: rgba(6,10,20,.66); border: 1px solid rgba(246,241,231,.14); border-radius: 10px; overflow: hidden;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); opacity: 0; visibility: hidden; will-change: opacity, transform;
}
.sejour-card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #111723; }
.sejour-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sejour-card-img img:not([src]) { visibility: hidden; }
.sejour-card-body { padding: 16px 18px 18px; }
.sejour-card-title { font-family: var(--serif); font-weight: 600; font-size: clamp(20px, 1.7vw, 26px); letter-spacing: .06em; margin: 0 0 8px; line-height: 1.05; }
.sejour-line { margin: 0 0 6px; font-size: 14px; line-height: 1.45; color: rgba(246,241,231,.9); }
.sejour-line--lead { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.35vw, 20px); color: #fff; line-height: 1.25; }
.sejour-card .companion-echo { font-size: 16px; }
.sejour-small { margin: 10px 0 0; font-size: 12px; line-height: 1.45; color: rgba(246,241,231,.7); }
.sejour-companion { text-align: center; margin: clamp(18px, 3.5vh, 34px) auto 0; opacity: 0; visibility: hidden; }
.sejour-companion-q { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 2.4vw, 36px); letter-spacing: .04em; margin: 0 0 14px; }
.sejour-companion .companion { justify-content: center; }
.sejour-companion .companion-answer { margin-top: 12px; font-size: clamp(18px, 1.6vw, 24px); }
.sejour-note { margin-top: 6px; }
@media (max-width: 1023px) {
  .sejour-cards { grid-template-columns: repeat(2, 1fr); }
  .sejour-card-img { aspect-ratio: 16 / 9; }
}
@media (max-width: 767px) {
  .sejour-inner { justify-content: flex-start; padding: 74px 14px 40px; }
  .sejour-title { font-size: 26px; }
  .sejour-sub { font-size: 9px; letter-spacing: .24em; }
  .sejour-cards { gap: 10px; }
  .sejour-card { border-radius: 8px; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(6,10,20,.86); will-change: auto; }
  .sejour-card-body { padding: 10px 11px 12px; }
  .sejour-card-title { font-size: 16px; margin-bottom: 5px; }
  .sejour-line { font-size: 12px; }
  .sejour-line--lead { font-size: 14px; }
  .sejour-small { font-size: 10px; margin-top: 6px; }
  .sejour-card .companion-echo { font-size: 13px; }
  .sejour-companion-q { font-size: 22px; }
}

/* ---------------------------------------------------------------------
   Mur de photos « Leurs expériences » — une seule section
   --------------------------------------------------------------------- */
.shot--wall { background: #05080f; }
.wall-scene { overflow: hidden; }
.wall-head {
  position: absolute; left: 0; right: 0; top: 0; z-index: 3;
  padding: clamp(78px, 11vh, 110px) 6vw 56px; text-align: center; pointer-events: none;
  background: linear-gradient(to bottom, rgba(5,8,15,.97) 0%, rgba(5,8,15,.9) 62%, rgba(5,8,15,0) 100%);
}
.wall-title {
  font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1; letter-spacing: .03em;
  font-size: clamp(34px, 4.8vw, 70px); transition: font-size .6s var(--ease);
}
.wall-head.is-compact .wall-title { font-size: clamp(24px, 2.6vw, 38px); }
.wall-pin { margin: 16px 0 0; font-size: 13px; font-weight: 600; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft); }
.wall-intro { margin: 14px auto 0; max-width: 600px; font-size: clamp(15px, 1.25vw, 18px); color: rgba(246,241,231,.86); }
.wall {
  position: absolute; left: 0; right: 0; top: 0; margin: 0 auto; z-index: 1;
  width: min(1240px, 92vw);
  display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(210px, 22vw, 290px);
  grid-auto-flow: dense; gap: clamp(10px, 1.2vw, 18px);
  will-change: transform;
}
.wall-item { position: relative; margin: 0; overflow: hidden; border-radius: 4px; background: #111723; box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); will-change: transform, opacity; }
.wall-item--wide { grid-column: span 2; }
.wall-item--big { grid-column: span 2; grid-row: span 2; }
.wall-photo { display: block; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.wall-photo img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: opacity .8s var(--ease), transform 1.2s var(--ease); }
.wall-photo img.is-ready { opacity: 1; }
.wall-photo:hover img, .wall-photo:focus-visible img { transform: scale(1.04); }
.wall-photo:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: -2px; }
.wall-place {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 11px; pointer-events: none;
  font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--ivory);
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
}
.wall-proof {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 70px clamp(16px, 2vw, 26px) clamp(16px, 2vw, 24px);
  background: linear-gradient(to top, rgba(3,6,12,.94) 0%, rgba(3,6,12,.72) 55%, rgba(3,6,12,0) 100%);
  pointer-events: none;
}
.wall-proof .proof-video-btn { pointer-events: auto; }
.wall-proof .proof-kicker { margin-bottom: 8px; }
.wall-proof .cap-identity-text { font-size: clamp(20px, 2vw, 28px); }
.wall-proof-detail { margin: 6px 0 0; font-size: 14px; color: rgba(246,241,231,.86); }
@media (max-width: 767px) {
  .wall-head { padding: 70px 18px 40px; }
  .wall-title { font-size: 30px; }
  .wall-head.is-compact .wall-title { font-size: 20px; }
  .wall-pin { font-size: 10px; letter-spacing: .26em; margin-top: 10px; }
  .wall-intro { font-size: 14px; }
  .wall { width: 94vw; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 46vw; gap: 8px; }
  .wall-item--big { grid-row: span 3; }
  .wall-place { font-size: 9px; letter-spacing: .2em; padding: 24px 9px 8px; }
  .wall-proof { padding: 60px 14px 14px; }
  .wall-proof .cap-identity-label { font-size: 11px; letter-spacing: .22em; }
  .wall-proof-detail { font-size: 13px; }
}

/* Modale témoignage vidéo */
.video-modal { position: fixed; inset: 0; z-index: 150; background: rgba(2,6,15,.92); display: grid; place-items: center; padding: 20px; }
.video-modal[hidden] { display: none; }
.video-modal-inner { width: min(1000px, 100%); }
.video-modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; color: var(--ivory); }
.video-modal-title { font-size: 13px; letter-spacing: .3em; color: var(--gold-soft); margin: 0; }
.video-close { background: none; border: 1px solid rgba(246,241,231,.4); color: var(--ivory); border-radius: 999px; padding: 8px 16px; cursor: pointer; }
.video-modal video { width: 100%; max-height: 80vh; border-radius: 6px; background: #000; }

@media (max-width: 767px) {
  .hero-list li { font-size: 14px; }
  .hero-famille { font-size: 13px; }
  .cap--hero .cap-kicker { margin-bottom: 12px; font-size: 10.5px; letter-spacing: .3em; }
  .why-b { font-size: 28px; }
  .cap--right .companion, .cap--right .proof-video-btn { justify-content: flex-start; margin-left: 0; }
  .companion-btn { min-height: 46px; padding: 0 16px; font-size: 13px; }
  .shot--doc .shot-media.is-frame .shot-img { outline-width: 6px; }
}

@media (max-width: 767px) {
  .chapter-nav { display: none; }
  .audit-toggle { bottom: auto; top: 62px; left: 12px; font-size: 11px; padding: 7px 11px; }
  .audit-panel { bottom: auto; top: 100px; }
  .shot--sky .shot-media { transform-origin: 50% 27%; }
  .porthole { left: 50%; top: 27%; width: 36vw; height: 25vh; }
  .cap--hero { left: 22px; right: 22px; top: auto; bottom: 48px; max-width: none; translate: none; }
  .cap--hero .hero-title { font-size: clamp(36px, 10.5vw, 50px); }
  .shot--hero .shot-scrim { background: linear-gradient(to top, rgba(4,9,20,.88) 0%, rgba(4,9,20,.6) 45%, rgba(4,9,20,.05) 75%); }
  .header-cta { font-size: 11px; padding: 8px 12px; letter-spacing: .12em; }
  .cap--left, .cap--right, .cap--left-low, .cap--bottom-left {
    left: 22px; right: 22px; top: auto; bottom: 64px; max-width: none; translate: none; text-align: left;
  }
  .cap--center-high { top: 26%; }
  .cap-title { font-size: clamp(46px, 15vw, 72px); letter-spacing: .08em; }
  .cap-title-xl { font-size: clamp(50px, 15vw, 80px); }
  .cap-scene-title { font-size: clamp(34px, 10vw, 46px); }
  .cap-line--lead { font-size: 22px; }
  .hero-title { font-size: clamp(38px, 11.5vw, 56px); }
  .hero-actions { margin-top: 30px; }
  .hero-mention { font-size: 12.5px; max-width: 300px; }
  .shot--frame .shot-scrim { background: linear-gradient(to top, rgba(2,6,15,.85) 0%, rgba(2,6,15,.2) 45%, transparent 60%); }
  .route-svg { top: 64%; }
  .route-node text { font-size: 20px; }
  .why { grid-template-columns: 1fr; }
  .why-visual { aspect-ratio: 16 / 10; }
  .form-row { grid-template-columns: 1fr; }
  .phone { grid-template-columns: 118px 1fr; }
  .flow-header { grid-template-columns: auto 1fr auto; gap: 8px; padding: 14px 14px; }
  .flow-brand { text-align: center; font-size: 11px; letter-spacing: .24em; }
  .flow-close { padding: 7px 11px; font-size: 12px; }
  .choice { padding: 18px 18px; font-size: 16px; min-height: 62px; }
  .prep-slide .prep-shade { background: linear-gradient(0deg, rgba(4,9,20,.94) 0%, rgba(4,9,20,.7) 50%, rgba(4,9,20,.2) 100%); }
  .prep-content { top: auto; bottom: 110px; transform: none; left: 22px; }
  .prep-content h2 { font-size: 34px; }
  .prep-content p { font-size: 16px; }
  .prep-controls { flex-direction: column; align-items: stretch; padding: 14px 22px 22px; }
  .prep-dots { max-width: none; }
  .prep-nav { justify-content: space-between; }
  .booking-embed.is-loaded { min-height: 700px; }
}

/* Petits écrans en hauteur (iPhone SE, Android 360×640, paysage) */
@media (max-width: 767px) and (max-height: 740px) {
  .cap--hero { bottom: 26px; }
  .cap--hero .cap-kicker { margin-bottom: 8px; }
  .cap--hero .hero-title { font-size: clamp(30px, 9vw, 40px); }
  .cap--hero .hero-sub { margin-top: 10px; font-size: 18px; }
  .hero-list { margin-top: 10px; gap: 3px; }
  .hero-list li { font-size: 13px; }
  .hero-famille { margin-top: 8px; font-size: 12.5px; }
  .cap--hero .hero-actions { margin-top: 14px; }
  .btn-round { width: 48px; min-height: 48px; }
  .cap-title { font-size: clamp(40px, 13vw, 60px); }
  .cap-title-xl { font-size: clamp(44px, 13vw, 64px); }
  .why-b { font-size: 24px; }
  .why-c { font-size: 14px; margin-top: 14px; }
  .proof-title { font-size: 36px; }
  .cap-scene-title { font-size: 30px; margin-bottom: 10px; }
  .q-line { font-size: 26px; }
  .q-actions { margin-top: 24px; }
  .cap--left, .cap--right, .cap--left-low, .cap--bottom-left { bottom: 40px; }
}
@media (max-height: 520px) and (orientation: landscape) {
  .cap--hero { top: 50%; bottom: auto; translate: 0 -50%; max-width: 60vw; }
  .cap--hero .hero-title { font-size: 30px; }
  .hero-list, .hero-famille { display: none; }
  .cap--left, .cap--right, .cap--left-low, .cap--bottom-left { max-width: 55vw; bottom: 20px; }
  .cap-scene-title { font-size: 26px; }
  .cap-title, .cap-title-xl { font-size: 44px; }
  .q-line { font-size: 22px; }
  .chapter-nav { display: none; }
}

/* ---------------------------------------------------------------------
   Réduction des animations
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .shot-img, .shot-bg img { transition: none; }
  .prep-slide .prep-img img { transform: none !important; transition: none; }
  .screen { animation: none; }
  .porthole-cloud { animation: none; }
}
