/* ============================================================
   GASTON BRAEMER — site immersif (hero scrubé au scroll)
   ============================================================ */

:root {
  --black: #0B0B0D;
  --red: #E5342B;
  --white: #F2F0EC;
  --smoke: #9A9A9E;
  --gold: #E8B873;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --t-slow: .9s;
  --t-med: .5s;

  --font-display: "Anton", "Archivo", system-ui, sans-serif;
  --font-body: "Archivo", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  /* clip (et non hidden) : empêche le débordement horizontal SANS créer
     de conteneur de défilement — sinon position:sticky du hero casse. */
  overflow-x: clip;
}
body { -webkit-font-smoothing: antialiased; min-height: 100%; }

/* page verrouillée pendant le préchargement */
html.is-locked, html.is-locked body { overflow: hidden; height: 100%; }

img, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

/* ------- Lenis ------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity .6s var(--ease);
}
#preloader.is-hidden { opacity: 0; pointer-events: none; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.preloader__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 2rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--white);
  padding-left: .3em;
}
.preloader__bar {
  display: block;
  width: clamp(140px, 30vw, 220px);
  height: 2px;
  background: rgba(242,240,236,.15);
  overflow: hidden;
  border-radius: 2px;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--red);
  border-radius: 2px;
  animation: loadSlide 1.1s var(--ease) infinite;
}
@keyframes loadSlide {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* ============================================================
   NAV
   ============================================================ */
#topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2.5vh, 1.6rem) clamp(1.2rem, 4vw, 3rem);
  pointer-events: none;
}
#topnav > * { pointer-events: auto; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.brand__mark {
  width: 10px; height: 14px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 12px rgba(229,52,43,.8);
}
.topnav__links { display: flex; gap: clamp(1rem, 2.5vw, 2rem); }
.topnav__links a {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--smoke);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.topnav__links a:hover { color: var(--white); border-color: var(--red); }

/* ============================================================
   HERO — pin sticky + canvas scrubé
   ============================================================ */
.hero { position: relative; height: 600vh; }
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero__fallback { position: absolute; inset: 0; z-index: 0; background: var(--black); }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 35%, transparent 0%, rgba(11,11,13,.45) 62%, rgba(11,11,13,.9) 100%),
    linear-gradient(180deg, rgba(11,11,13,.55) 0%, rgba(11,11,13,.12) 42%, rgba(11,11,13,.85) 100%);
}

/* ------- Actes (overlays pilotés par p) ------- */
.act {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  will-change: opacity, transform;
}
.act.is-on { pointer-events: auto; }
.act__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 6vw, 7rem);
}

/* ============================================================
   TYPO
   ============================================================ */
.eyebrow {
  font-size: clamp(.65rem, 1.1vw, .8rem);
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 1.4rem;
}
.title-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.5rem, 13vw, 12rem);
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.title-l {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.2rem);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 1.6rem 0 .8rem;
}
.baseline {
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  font-weight: 500;
  margin: 1.6rem 0 .5rem;
  letter-spacing: .01em;
}
.genres {
  font-size: clamp(.8rem, 1.4vw, 1.05rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
}
.genres.small { font-size: .8rem; margin: 1.2rem 0 0; }
.body {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  line-height: 1.65;
  color: rgba(242,240,236,.85);
  max-width: 46ch;
  margin-bottom: 1rem;
}

/* SplitText helpers */
.split-line { display: block; overflow: hidden; }
.split-line > div { display: block; }

/* ============================================================
   §1 ARRIVÉE
   ============================================================ */
.arrival-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(1.6rem, 5vh, 3rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  z-index: 4;
}
.scroll-hint__door {
  width: 12px; height: 18px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: 0 0 14px rgba(229,52,43,.9);
  animation: doorPulse 2.2s var(--ease) infinite;
}
.scroll-hint__label {
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--smoke);
}
.scroll-hint__line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--smoke), transparent);
  animation: hintLine 1.8s var(--ease) infinite;
  transform-origin: top;
}
@keyframes hintLine {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes doorPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(229,52,43,.55); transform: scale(1); }
  50%      { box-shadow: 0 0 22px rgba(229,52,43,1); transform: scale(1.08); }
}

/* ============================================================
   CTA + Toggle son
   ============================================================ */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: 1rem 2.2rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: 1px solid rgba(242,240,236,.25);
  border-radius: 999px;
  background: rgba(11,11,13,.35);
  backdrop-filter: blur(6px);
  transition: border-color var(--t-med) var(--ease),
              background var(--t-med) var(--ease),
              color var(--t-med) var(--ease),
              transform var(--t-med) var(--ease);
}
.cta-primary:hover,
.cta-primary:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.sound-toggle {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .8rem 1.3rem;
  border: 1px solid rgba(242,240,236,.2);
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.sound-toggle:hover { color: var(--white); border-color: rgba(242,240,236,.5); }
.sound-toggle[aria-pressed="true"] { color: var(--red); border-color: var(--red); }
.wave { display: inline-flex; align-items: flex-end; gap: 3px; height: 14px; }
.wave i { width: 2px; height: 4px; background: currentColor; border-radius: 2px; }
.sound-toggle[aria-pressed="true"] .wave i { animation: wave 1s var(--ease) infinite; }
.wave i:nth-child(2) { animation-delay: .15s; }
.wave i:nth-child(3) { animation-delay: .3s; }
.wave i:nth-child(4) { animation-delay: .45s; }
.wave i:nth-child(5) { animation-delay: .6s; }
@keyframes wave { 0%,100% { height: 4px; } 50% { height: 14px; } }

/* ============================================================
   §2 CABINE
   ============================================================ */
.cabine-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  /* top-align : hauteur de contenu prévisible, dégage le dock fixe centré */
  align-items: start;
  padding: clamp(4.5rem, 9vh, 6.5rem) clamp(1.5rem, 5vw, 6rem) clamp(5rem, 9vh, 6.5rem);
}
.yt-wrap { align-self: center; }   /* l'écran YouTube reste centré verticalement */
.yt-frame {
  position: relative;
  border: 1px solid rgba(242,240,236,.15);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(229,52,43,.12);
  background: #000;
}
.yt-screen { position: relative; width: 100%; aspect-ratio: 16 / 9; }
.yt-screen iframe { width: 100%; height: 100%; border: 0; display: block; }
.yt-screen.is-loading::after {
  content: "";
  position: absolute; inset: 0;
  background: url("../img/03-pov-cabine.jpg") center/cover;
  opacity: .5;
}
.yt-tag {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11,11,13,.6);
  padding: .35rem .7rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.cabine-text { max-width: 56ch; }
.cabine-text .title-l:first-of-type { margin-top: 0; }
/* cabine compacte : tout tient dans 100vh, au-dessus du dock */
.cabine-text .title-l { font-size: clamp(1.7rem, 3.8vw, 3rem); margin: .1rem 0 .55rem; }
.cabine-text .body { font-size: clamp(.9rem, 1.2vw, 1.02rem); line-height: 1.55; margin-bottom: .6rem; }
.cabine-text .genres.small { margin: .8rem 0 0; }

/* Portrait À propos à côté du texte */
.about-row {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: flex-start;
  margin-bottom: .4rem;
}
.about-portrait {
  flex: 0 0 auto;
  width: clamp(118px, 13vw, 178px);
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(242,240,236,.18);
  box-shadow: 0 22px 55px rgba(0,0,0,.55), 0 0 42px rgba(229,52,43,.1);
}
.about-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(.12) contrast(1.04);
}
.about-copy { flex: 1 1 auto; min-width: 0; }
.about-copy .title-l { margin-top: 0; }
.about-copy .body { margin-bottom: 0; }
.about-link {
  margin-top: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--smoke);
  border: 1px solid rgba(242,240,236,.2);
  border-radius: 999px;
  padding: .7rem 1.3rem;
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.about-link:hover, .about-link:focus-visible { color: var(--white); border-color: var(--red); background: rgba(229,52,43,.12); }

/* ============================================================
   §3 BOOKING — deux portes
   ============================================================ */
.booking-head {
  position: absolute;
  top: clamp(4.5rem, 12vh, 7rem);
  left: 0; right: 0;
  z-index: 3;
  text-align: center;
  padding: 0 1.5rem;
}
.doors {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.door {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(2rem, 8vh, 6rem) 1.5rem;
  border: none;
  background: transparent;
}
.door::before {
  content: "";
  position: absolute; inset: 0;
  opacity: .22;
  transition: opacity var(--t-slow) var(--ease);
  z-index: 0;
}
.door-club::before { background: radial-gradient(80% 70% at 50% 75%, rgba(229,52,43,.5), transparent 70%); }
.door-wedding::before { background: radial-gradient(80% 70% at 50% 75%, rgba(232,184,115,.45), transparent 70%); }
.door-glow {
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 2px; height: 0;
  transition: height var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
  z-index: 1;
}
.door-club .door-glow { background: var(--red); }
.door-wedding .door-glow { background: var(--gold); }
.door:hover, .door:focus-visible { outline: none; }
.door:hover::before, .door:focus-visible::before { opacity: .9; }
.door:hover .door-glow, .door:focus-visible .door-glow { height: 70%; }
.door-club:hover .door-glow, .door-club:focus-visible .door-glow { box-shadow: 0 0 40px 6px rgba(229,52,43,.8); }
.door-wedding:hover .door-glow, .door-wedding:focus-visible .door-glow { box-shadow: 0 0 40px 6px rgba(232,184,115,.7); }
.door-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  text-align: center;
  transition: transform var(--t-slow) var(--ease);
}
.door:hover .door-label, .door:focus-visible .door-label { transform: translateY(-8px); }
.door-kicker { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--smoke); }
.door-club:hover .door-kicker, .door-club:focus-visible .door-kicker { color: var(--red); }
.door-wedding:hover .door-kicker, .door-wedding:focus-visible .door-kicker { color: var(--gold); }
.door-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.door-sub { font-size: .8rem; color: rgba(242,240,236,.7); letter-spacing: .05em; }

/* ============================================================
   §4 CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(4.5rem, 8vh, 6rem) clamp(1.5rem, 5vw, 6rem) clamp(3rem, 6vh, 5rem);
}
.contact-coords { list-style: none; margin: 1.8rem 0 1rem; }
.contact-coords li { font-size: 1.1rem; margin-bottom: .4rem; }
.contact-coords a:hover { color: var(--red); }
.contact-socials { list-style: none; display: flex; gap: 1.4rem; }
.contact-socials a {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--smoke); border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.contact-socials a:hover { color: var(--white); border-color: var(--red); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(11,11,13,.55);
  border: 1px solid rgba(242,240,236,.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  max-width: 30rem;
  width: 100%;
  justify-self: end;
}
.form-type {
  font-size: .7rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--red); margin-bottom: .3rem;
}
.contact-form label {
  display: flex; flex-direction: column; gap: .4rem;
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--smoke);
}
.contact-form input,
.contact-form textarea {
  font-family: inherit; font-size: .95rem;
  color: var(--white);
  background: rgba(242,240,236,.05);
  border: 1px solid rgba(242,240,236,.18);
  border-radius: 8px;
  padding: .7rem .9rem;
  transition: border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--red); background: rgba(242,240,236,.08);
}
.contact-form textarea { resize: vertical; }
.contact-form .cta { margin-top: .5rem; justify-content: center; }

/* ============================================================
   FLASH (dip-to-white)
   ============================================================ */
#flash {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--white);
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   PERSISTANTS — grain, vignette
   ============================================================ */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 70;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(3) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  33% { transform: translate(-3%, 2%); }
  66% { transform: translate(2%, -3%); }
  100% { transform: translate(0,0); }
}
.vignette {
  position: fixed;
  inset: 0;
  z-index: 71;
  pointer-events: none;
  box-shadow: inset 0 0 200px 40px rgba(0,0,0,.7);
}

/* ============================================================
   DOTS / DOCK
   ============================================================ */
#dots {
  position: fixed;
  right: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(242,240,236,.5);
  background: transparent;
  transition: all var(--t-med) var(--ease);
}
.dot.is-active { background: var(--red); border-color: var(--red); transform: scale(1.3); }
.dot:hover { border-color: var(--white); }

#dock {
  position: fixed;
  bottom: clamp(1rem, 3vh, 2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  display: flex;
  gap: .5rem;
  padding: .5rem;
  border: 1px solid rgba(242,240,236,.14);
  border-radius: 999px;
  background: rgba(11,11,13,.5);
  backdrop-filter: blur(10px);
}
#dock a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--smoke);
  transition: color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
#dock a:hover { color: #fff; background: var(--red); }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 90;
  width: 32px; height: 32px;
  margin: -16px 0 0 -16px;
  color: var(--red);
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity .3s, transform .15s var(--ease);
  will-change: transform;
}
#cursor.is-on { opacity: 1; }
#cursor.is-hot { transform: scale(1.5); color: var(--white); }

@media (hover: hover) and (pointer: fine) {
  body.cursor-ready, body.cursor-ready * { cursor: none; }
}

/* ============================================================
   À PROPOS — overlay plein écran
   ============================================================ */
.about-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(8,8,10,.86);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.about-overlay[hidden] { display: none; }
.about-overlay.is-open { opacity: 1; }
.about-overlay__scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.about-overlay__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vh, 7rem) clamp(1.4rem, 5vw, 4rem) clamp(3rem, 8vh, 6rem);
  transform: translateY(18px);
  transition: transform .55s var(--ease);
}
.about-overlay.is-open .about-overlay__inner { transform: translateY(0); }
.about-overlay__close {
  position: fixed;
  top: clamp(1rem, 3vh, 2rem);
  right: clamp(1rem, 3vw, 2.2rem);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(242,240,236,.22);
  background: rgba(11,11,13,.5);
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease), background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.about-overlay__close:hover, .about-overlay__close:focus-visible {
  color: #fff; border-color: var(--red); background: var(--red); transform: rotate(90deg);
}
.about-overlay__head { max-width: 60ch; }
.about-tour {
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
  font-weight: 500;
  margin: 1.2rem 0 .6rem;
  color: var(--white);
}
.about-overlay__head .genres { margin-bottom: 0; }
.about-overlay__bio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin: clamp(2rem, 5vh, 3.2rem) 0;
}
.about-overlay__bio h3 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.about-overlay__bio p {
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
  line-height: 1.7;
  color: rgba(242,240,236,.85);
}

/* Galerie */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(.8rem, 1.5vw, 1.2rem);
}
.gallery__item {
  position: relative;
  padding: 0;
  border: 1px solid rgba(242,240,236,.12);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #000;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.1) contrast(1.03);
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px transparent;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,13,.5));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery__item:hover img, .gallery__item:focus-visible img { transform: scale(1.05); filter: grayscale(0) contrast(1.05); }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }
.gallery__item:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.5rem, 2vw, 2rem);
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(5,5,7,.94);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__figure {
  max-width: min(92vw, 760px);
  max-height: 88vh;
  display: flex;
}
.lightbox__img {
  max-width: 100%;
  max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.lightbox__close {
  position: fixed;
  top: clamp(1rem, 3vh, 2rem);
  right: clamp(1rem, 3vw, 2.2rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  color: var(--white);
  border: 1px solid rgba(242,240,236,.22);
  background: rgba(11,11,13,.5);
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease), background var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.lightbox__close:hover, .lightbox__close:focus-visible { border-color: var(--red); background: var(--red); transform: rotate(90deg); }
.lightbox__nav {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
  border: 1px solid rgba(242,240,236,.22);
  background: rgba(11,11,13,.5);
  transition: color var(--t-med) var(--ease), border-color var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.lightbox__nav:hover, .lightbox__nav:focus-visible { border-color: var(--red); background: var(--red); color: #fff; }

/* Curseur : rétablir un curseur natif au-dessus des overlays */
html.modal-open #cursor { display: none; }
body.cursor-ready .about-overlay, body.cursor-ready .about-overlay *,
body.cursor-ready .lightbox, body.cursor-ready .lightbox * { cursor: auto; }
body.cursor-ready .about-overlay button,
body.cursor-ready .about-overlay [data-about-close],
body.cursor-ready .gallery__item,
body.cursor-ready .lightbox button { cursor: pointer; }

/* Verrou de défilement quand un overlay est ouvert */
html.modal-open, html.modal-open body { overflow: hidden; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .cabine-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 1.5rem;
    padding: 5rem 1.4rem 6rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cabine-text, .cabine-text .body, .body { max-width: none; }
  .contact-form { justify-self: stretch; max-width: none; }
  .doors { grid-template-columns: 1fr; }
  .door { padding: 1.5rem 1.2rem; }
  .door-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  #dots { right: .8rem; gap: .8rem; }
  .arrival-actions { gap: 1rem; }
  .title-xl { font-size: clamp(3rem, 18vw, 6rem); }
  .eyebrow { letter-spacing: .25em; }
  .genres { letter-spacing: .14em; }
  .brand { font-size: .72rem; letter-spacing: .12em; white-space: nowrap; }
  .topnav__links { gap: .9rem; }
  .topnav__links a { font-size: .62rem; letter-spacing: .1em; white-space: nowrap; }
  #dock { gap: .25rem; padding: .4rem; }
  #dock a { width: 36px; height: 36px; }
  .act__inner { padding-bottom: 6rem; }   /* dégager le dock */
  .scroll-hint { bottom: 5.5rem; }        /* au-dessus du dock */

  /* overlay À propos */
  .about-overlay__bio { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.5rem; }
  .lightbox { gap: .35rem; }
}

/* portrait + texte empilés sur petits écrans */
@media (max-width: 560px) {
  .about-row { flex-direction: column; align-items: stretch; }
  .about-portrait { width: clamp(150px, 45vw, 220px); align-self: flex-start; }
}

/* très petits écrans : la nav textuelle laisse place aux dots + dock */
@media (max-width: 480px) {
  .topnav__links { display: none; }
}

/* ============================================================
   REDUCED MOTION — pas de scrub, tout visible, sections empilées
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero { height: auto; }
  .hero__sticky { position: static; height: auto; overflow: visible; }
  .hero__canvas { display: none; }
  .hero__fallback {
    position: fixed;
    background: var(--black) url("frames/desktop/frame_001.jpg") center/cover;
    opacity: .25;
  }
  .hero__shade { position: fixed; }
  .act {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    min-height: 100vh;
  }
  .booking-head { position: static; margin-bottom: 1.5rem; padding-top: 4rem; }
  .doors { position: relative; min-height: 70vh; }
  .grain { animation: none; }
  .scroll-hint__door, .scroll-hint__line { animation: none; }
}
