/* ============================================================
   Halloween — Adventure Valley Durbuy
   Design tokens (baked from the Claude Design tweak panel defaults)
   ============================================================ */
:root {
  --c-orange: #F26A1B;
  --c-gold:   #F7A81B;
  --c-yellow: #FBD24A;
  --c-red:    #E8461B;
  --c-green:  #7BC043;
  --c-green-soft: #A9E26B;
  --c-bg:     #0B0809;

  --font-display: Creepster;
  --font-label:   'Baloo 2';
  --font-body:    Nunito;

  --tag-tracking:    0.16em;
  --tag-tracking-lg: 0.22em;
  --tag-tracking-sm: 0.064em;
  --body-tracking:   0em;
  --body-leading:    1.6;

  /* hauteur du bandeau flash news (0px une fois fermé) */
  --flash-h: 48px;
}

/* ── Base ─────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(84px + var(--flash-h));
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--c-bg);
}

body {
  color: #F5E6D3;
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 17px;
  line-height: var(--body-leading);
  letter-spacing: var(--body-tracking);
  overflow-x: hidden;
}

a { color: var(--c-gold); text-decoration: none; }
a:hover { color: var(--c-yellow); }

img { max-width: 100%; }

/* ── Parallaxe ────────────────────────────────────────────────
   Le module parallax (app.js) écrit --py sur chaque [data-parallax] ;
   le CSS compose ce décalage avec les transforms propres à l'élément.
   L'image déborde de son cadre pour que le décalage ne découvre
   jamais de bord vide. */
.parallax-media {
  position: absolute;
  top: -9%;
  left: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, var(--py, 0px), 0);
}
@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
}

/* Lu par les moteurs et les lecteurs d'écran, invisible à l'écran.
   Pas de display:none : le contenu doit rester dans l'arbre d'accessibilité. */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection { background: var(--c-orange); color: var(--c-bg); }

.container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

section { position: relative; }
section > div { z-index: 1; }

/* ── Animations ───────────────────────────────────────────── */
@keyframes flicker {
  0%, 100% { opacity: 1; }
  42% { opacity: 0.86; }
  45% { opacity: 1; }
  68% { opacity: 0.78; }
  71% { opacity: 1; }
}



/* ── Décors absolus (SVG + halos) ──────────────────────────────
   Trois couches de transform se composent sur les mêmes éléments,
   d'où le passage par des variables plutôt que par des règles
   concurrentes :
     --py / --px / --rs  scroll continu, écrits par parallax()
     --r                 rotation de repos, propre à chaque déco
     --dx/--dy/--dr/--ds/--oe  animation d'entrée, posée par decoReveals()
     --fx/--fy/--fr      flottement de repos (@keyframes deco-float)
   L'opacité de repos passe elle aussi par une variable (--o) pour
   que l'entrée puisse la moduler sans écraser la valeur finale. */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transform:
    translate3d(calc(var(--px, 0px) + var(--dx, 0px) + var(--fx, 0px)),
                calc(var(--py, 0px) + var(--dy, 0px) + var(--fy, 0px)), 0)
    rotate(calc(var(--r, 0deg) + var(--rs, 0deg) + var(--dr, 0deg) + var(--fr, 0deg)))
    scale(var(--ds, 1));
  opacity: calc(var(--o, 1) * var(--oe, 1));
}

/* Halos radiaux : même entrée, mais sans rotation ni dérive. */
.glow {
  position: absolute;
  pointer-events: none;
  transform: translate3d(0, var(--py, 0px), 0) scale(var(--ds, 1));
  opacity: var(--oe, 1);
}

/* État de départ, posé par app.js et jamais présent dans le HTML :
   sans JS (ou en mouvement réduit) les décors restent visibles. */
.is-deco-out {
  --oe: 0;
  --dx: var(--in-x, 0px);
  --dy: var(--in-y, 24px);
  --dr: var(--in-r, -8deg);
  --ds: 0.92;
}
.glow.is-deco-out { --ds: 0.8; }

/* La transition n'est active que le temps de l'entrée : la laisser
   en permanence ferait traîner la parallaxe, qui réécrit --py à
   chaque frame. */
.is-deco-anim {
  transition:
    transform 1.1s cubic-bezier(.22,.61,.36,1),
    opacity .85s ease;
}
.glow.is-deco-anim {
  transition:
    transform 1.5s cubic-bezier(.22,.61,.36,1),
    opacity 1.2s ease;
}

/* ── Flottement de repos ──────────────────────────────────────
   Les décos du hero respirent sur place. L'oscillation a ses
   propres variables plutôt qu'un transform à elle : déclarées via
   @property, elles sont interpolables et se composent avec la
   parallaxe et l'entrée au lieu de les écraser. */
@property --fx { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --fy { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --fr { syntax: "<angle>";  inherits: false; initial-value: 0deg; }

@keyframes deco-float {
  0%   { --fx: 0px;    --fy: 0px;    --fr: 0deg; }
  25%  { --fx: 20px;   --fy: -22px;  --fr: 5deg; }
  50%  { --fx: 6px;    --fy: -38px;  --fr: -2deg; }
  75%  { --fx: -18px;  --fy: -14px;  --fr: -6deg; }
  100% { --fx: 0px;    --fy: 0px;    --fr: 0deg; }
}
/* Le fantôme flotte plus haut et plus lentement que les chauves-souris. */
@keyframes deco-hover {
  0%   { --fx: 0px;    --fy: 0px;    --fr: 0deg; }
  33%  { --fx: -14px;  --fy: -30px;  --fr: -4deg; }
  66%  { --fx: 14px;   --fy: -16px;  --fr: 4.5deg; }
  100% { --fx: 0px;    --fy: 0px;    --fr: 0deg; }
}

@media (max-width: 900px) { .deco { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .deco { animation: none !important; }
  /* Filet : aucune déco ne peut rester dans son état de départ. */
  .is-deco-out { --oe: 1; --dx: 0px; --dy: 0px; --dr: 0deg; --ds: 1; }
  .is-deco-anim { transition: none !important; }
}

.skull { height: 16px; width: auto; display: block; }
.skull-lg { height: 20px; width: auto; display: block; }

/* ── Scroll reveal ────────────────────────────────────────── */
[data-reveal] {
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
[data-reveal].is-out { opacity: 0; transform: translateY(26px); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal].is-out { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Shared type ──────────────────────────────────────────── */
.kicker {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tag-tracking-lg);
  color: var(--c-gold);
}
.kicker-orange { color: var(--c-orange); }

.h2 {
  margin: 14px 0 0;
  font-family: var(--font-display), system-ui, cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.04;
  color: #FCEEDB;
}
.h2-lg      { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.02; }
.h2-xl      { font-size: clamp(34px, 5vw, 56px);   line-height: 1.02; }
.h2-manoir  { font-size: clamp(34px, 5vw, 58px);   line-height: 1; color: #FCEBD8; }
.h2-tarifs  { margin: 12px 0 0; font-size: clamp(30px, 4.2vw, 48px); line-height: 1.05; }
.h2-sejour  { font-size: clamp(30px, 4.2vw, 48px); line-height: 1.04; }
.h2-billets { margin: 0; font-size: clamp(36px, 6vw, 64px); line-height: 1; text-shadow: 0 4px 40px rgba(0,0,0,0.7); }

.h3 {
  margin: 0;
  font-family: var(--font-display), system-ui, cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.06;
  color: #FCEEDB;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body), system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: var(--tag-tracking-sm);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--c-orange);
  color: #16100a;
}
.btn-primary:hover { background: var(--c-gold); color: #16100a; }

.btn-hero {
  padding: 20px 40px;
}
.btn-billets {
  padding: 19px 36px;
}
.btn-ghost {
  margin-top: 26px;
  padding: 17px 30px;
  border: 1px solid #8A5A1C;
  color: var(--c-gold);
}
.btn-ghost:hover { background: rgba(247,168,27,0.16); color: var(--c-gold); }

/* ============================================================
   FLASH NEWS (bandeau early bird)
   ============================================================
   --flash-h décale le header, le hero et les ancres. Sa valeur est
   affinée en JS (le texte peut passer sur deux lignes) et remise à
   0px quand le bandeau est fermé. */
.flash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60; /* au-dessus du header (50) */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 11px 40px;
  background: var(--c-orange);
  text-align: center;
}
.flash[hidden] { display: none; }

.flash-text {
  margin: 0;
  min-width: 0; /* sinon l'item flex garde sa largeur max-content */
  max-width: 100%;
  font-size: 14px;
  line-height: 1.4;
  color: #16100a;
  text-wrap: pretty;
}
.flash-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  text-transform: uppercase;
  color: rgba(22, 16, 10, 0.72);
}
.flash-sep { color: rgba(22, 16, 10, 0.45); }
.flash-text strong { font-weight: 800; color: #16100a; }
.flash-text sup { font-size: 0.7em; }

.flash-cta {
  flex: none;
  color: #16100a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.flash-cta:hover { color: #FFFFFF; }

.flash-close {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(22, 16, 10, 0.6);
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}
.flash-close:hover { color: #16100a; background: rgba(22, 16, 10, 0.12); }

@media (max-width: 700px) {
  .flash { gap: 3px 10px; padding: 9px 32px; }
  .flash-long { display: none; }
  .flash-text { font-size: 12.5px; }
  .flash-cta { font-size: 12.5px; }
  .flash-close { right: 3px; }
}
/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: var(--flash-h); left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  background: rgba(21, 13, 8, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(0.3 0.028 55);
}
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; display: block; }

.r-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: var(--tag-tracking-sm);
  text-transform: uppercase;
}
.r-nav > a { position: relative; color: #EFDCC6; }
.r-nav > a:hover { color: #FFFFFF; }

/* Section en cours de lecture (scrollspy, cf. app.js) : l'entrée
   correspondante passe au doré et reçoit un souligné sous le texte. */
.r-nav > a.is-active { color: var(--c-gold); }
.r-nav > a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  border-radius: 2px;
  background: var(--c-gold);
}
.r-nav > a.nav-cta.is-active::after { content: none; }

.r-nav > a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--c-orange);
  color: #16100a;
  font-weight: 700;
}
.r-nav > a.nav-cta:hover { background: var(--c-gold); color: #16100a; }

/* Sélecteur de langue : dernier élément du menu, juste avant le CTA.
   Aucune taille ni police propre — il hérite de .r-nav pour se lire
   comme les autres entrées du menu ; seule la langue active change
   de couleur, dans le doré d'accent du site. */
.lang-switch { position: relative; display: inline-flex; align-items: center; }

/* Déclencheur : la langue courante, dans le doré d'accent du site. */
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--c-gold);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.lang-btn:hover { color: #FFFFFF; }
.lang-caret { font-size: 0.72em; line-height: 1; transition: transform .2s ease; }
.lang-switch.is-open .lang-caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  min-width: 88px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: rgba(16, 10, 7, 0.98);
  border: 1px solid oklch(0.3 0.028 55);
  border-radius: 14px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.5);
}
.lang-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  color: #EFDCC6;
  text-align: center;
}
.lang-menu a:hover { background: oklch(0.2 0.022 55); color: #FFFFFF; }

/* Hamburger — hidden on desktop, shown ≤900px (see responsive section) */
.nav-toggle {
  display: none;
  flex: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid oklch(0.36 0.028 55);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #F5E6D3;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  margin-top: var(--flash-h);
  height: 100vh;
  /* svh : stable sur mobile, ignore le repli de la barre du navigateur */
  height: calc(100svh - var(--flash-h));
  max-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid oklch(0.3 0.028 55);
}
/* débordement haut/bas : la marge absorbe le décalage de parallaxe
   sans jamais laisser apparaître de bord vide */
.hero-video {
  position: absolute;
  top: -8%;
  left: 0;
  width: 100%;
  height: 116%;
  object-fit: cover;
  opacity: 0.66;
  transform: translate3d(0, var(--py, 0px), 0);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 52% at 50% 44%, rgba(11,8,9,0.42), rgba(11,8,9,0.92) 100%);
  pointer-events: none;
}
.hero-glow {
  inset: -20% -10%;
  background: radial-gradient(45% 40% at 50% 30%, rgba(242,106,27,0.2), transparent 70%);
}
/* Le délai laisse passer l'entrée (transition sur transform) avant
   que le flottement ne prenne la main ; durées et sens décalés pour
   que les trois décos ne battent jamais ensemble. */
.deco-bat-1 {
  top: 15%; left: 7%; width: 108px; z-index: 1;
  --o: 0.5; --r: -8deg;
  --in-x: -54px; --in-y: -22px; --in-r: -26deg;
  animation: deco-float 6.5s ease-in-out 1.6s infinite;
}
.deco-bat-2 {
  top: 25%; left: 15%; width: 62px; z-index: 1;
  --o: 0.34; --r: 12deg;
  --in-x: -74px; --in-y: -14px; --in-r: 28deg;
  animation: deco-float 5.1s ease-in-out 1.9s infinite reverse;
}
.deco-ghost-hero {
  top: 28%; right: 8%; width: 104px; z-index: 1;
  --o: 0.4; --r: 4deg;
  --in-x: 46px; --in-y: 20px; --in-r: 12deg;
  animation: deco-hover 8s ease-in-out 1.7s infinite;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vh, 38px);
  padding: clamp(84px, 12vh, 120px) 28px clamp(180px, 20vh, 200px);
}
.hero-title { margin: 0; display: flex; justify-content: center; }
.hero-title img {
  height: clamp(120px, 28vh, 260px);
  width: auto;
  max-width: 82vw;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 60px rgba(247,134,27,0.55));
  animation: flicker 7s ease-in-out infinite;
}

.hero-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(11,8,9,0.9);
  border-top: 1px solid oklch(0.32 0.028 55);
}
@media (max-width: 900px) {
  .hero-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.hero-bar-cell {
  padding: 14px clamp(14px, 2vw, 26px);
  border-right: 1px solid oklch(0.26 0.022 55);
  border-top: 1px solid oklch(0.22 0.02 55);
}
.hero-bar-cell:last-child { border-right: 0; }
.hero-bar-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(9px, 1.1vw, 10px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: oklch(0.7 0.028 55);
}
.hero-bar-value {
  margin-top: 4px;
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================================
   INTRO + GALERIE
   ============================================================ */
.intro { padding: clamp(70px, 13vh, 130px) 22px clamp(56px, 10vh, 100px); }
.intro-head { max-width: 820px; margin: 0 auto; text-align: center; }
.intro-lead {
  margin: 20px auto 0;
  max-width: 660px;
  font-size: 19px;
  color: #D9C0A2;
  text-wrap: pretty;
}

.gallery {
  max-width: 1180px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(120px, 15vw, 190px);
  gap: 16px;
}
/* <button>s that open the lightbox */
.gallery-item {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border-radius: 22px;
  background-color: oklch(0.11 0.02 55);
  background-size: cover;
  background-position: center;
  border: 1px solid oklch(0.3 0.028 55);
  cursor: zoom-in;
  transition: filter .3s ease;
}
.gallery-item:hover { filter: brightness(1.15); }
.gallery-item-lg { grid-column: span 2; grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

/* ============================================================
   GALERIE PHOTOS (sous les tarifs)
   ============================================================ */
.photos { padding: clamp(56px, 8vw, 86px) 22px; overflow: hidden; }
/* grille propre : 3 colonnes de photos paysage, toutes de même taille */
.photos-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 16px;
}
.photos-grid > .gallery-item {
  aspect-ratio: 3 / 2;
  grid-column: auto;
  grid-row: auto;
}
@media (max-width: 880px) {
  .photos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 520px) {
  .photos-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   HISTOIRE
   ============================================================ */
.story { padding: clamp(64px, 9vw, 100px) 22px; overflow: hidden; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: stretch;
}
.story-text { display: flex; flex-direction: column; }
.story-p1 { margin: 20px 0 0; max-width: 520px; color: #D9C0A2; font-size: 18px; text-wrap: pretty; }
.story-p2 { margin: 16px 0 0; max-width: 520px; color: #D6BC9D; text-wrap: pretty; }
.story-p2 strong { color: #F5E6D3; }

.story-media {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-self: end;
  width: 100%;
  gap: 14px;
}
.story-video-frame {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: clamp(260px, 30vw, 460px);
  border-radius: 22px;
  overflow: hidden;
  background: oklch(0.11 0.02 55);
  border: 1px solid oklch(0.3 0.028 55);
}
/* Absolute so the element's intrinsic size (poster, then video) never
   drives layout — otherwise the frame jumps when playback starts. */
.story-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   LE PARCOURS / ZONES
   ============================================================ */
.zones-section { padding: clamp(64px, 9vw, 100px) 22px; overflow: hidden; }
.deco-pumpkin {
  bottom: 18px;
  left: -18px;
  width: 104px;
  --o: 0.8;
  --r: 6deg;
  --in-x: -30px; --in-y: 30px; --in-r: -18deg;
}

.zones-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.zones-head-text { max-width: 620px; }
.zones-head-p { margin: 18px 0 0; color: #D9C0A2; text-wrap: pretty; }

.fear-scale {
  min-width: 260px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid oklch(0.32 0.028 55);
  background: oklch(0.15 0.02 55);
}
.fear-scale-title {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: oklch(0.68 0.028 55);
}
.fear-scale-rows { display: grid; gap: 8px; margin-top: 12px; font-size: 14px; }
.fear-row { display: flex; gap: 10px; }
.fear-row > span:last-child { color: #D9C0A2; }
.fear-skulls { min-width: 100px; display: inline-flex; align-items: center; gap: 4px; }

/* Filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 44px 0 28px; }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  line-height: 1;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: var(--tag-tracking-sm);
  text-transform: uppercase;
  background: transparent;
  color: #EAD5BD;
  border: 1px solid oklch(0.36 0.028 55);
}
.chip.is-on {
  background: var(--c-orange);
  color: #16100a;
  border-color: var(--c-orange);
}
.chip-skulls { display: inline-flex; align-items: center; gap: 3px; }
.chip-skulls .skull { height: 14px; }

/* Zone cards */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-top: clamp(40px, 5vw, 60px);
}
/* Le filtre porte déjà ses marges : pas de double espacement si on le remet. */
.filters + .zones-grid { margin-top: 0; }
.zone {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  background: oklch(0.145 0.02 55);
  border: 1px solid oklch(0.3 0.028 55);
  overflow: hidden;
}
.zone:hover { background: oklch(0.175 0.022 55); }
.zone[hidden] { display: none; }

.tone-orange { --tone: #F7861B;         --tone-badge: rgba(247,134,27,0.18); }
.tone-green  { --tone: var(--c-yellow); --tone-badge: rgba(251,210,74,0.16); }
.tone-red    { --tone: var(--c-red);    --tone-badge: rgba(232,70,27,0.22); }

.zone-img {
  position: relative;
  height: clamp(250px, 21vw, 285px);
  overflow: hidden;
  background-color: oklch(0.11 0.02 55);
  background-size: cover;
  background-position: center;
}
.zone-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, oklch(0.145 0.02 55) 100%);
}
/* Same-size visual block for zones that have no photo yet */
.zone-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-image: radial-gradient(120% 130% at 50% 0%, oklch(0.21 0.03 55), oklch(0.115 0.018 55));
}
/* Filigrane + mention, partagés avec la card sans photo du bloc supplément */
.zone-img-placeholder > img,
.supp-media-soon > img { height: 54px; width: auto; opacity: 0.4; }
.soon-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tag-tracking);
  text-transform: uppercase;
  color: var(--c-gold);
}
.zone-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 26px 28px;
}
.zone-num {
  position: absolute;
  top: -22px;
  right: 14px;
  font-family: var(--font-display), system-ui, cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 78px;
  line-height: 1;
  color: oklch(0.26 0.028 55);
  transform: translate3d(0, var(--py, 0px), 0);
  pointer-events: none;
}
.zone-kicker-row { position: relative; display: flex; align-items: center; gap: 10px; }
.zone-kicker {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: var(--tone);
}
.zone-name {
  position: relative;
  margin: 0;
  font-family: var(--font-display), system-ui, cursive;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: 25px;
  line-height: 1.15;
  color: #FCEEDB;
  max-width: 88%;
}
.zone-meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.zone-skulls { display: inline-flex; align-items: center; gap: 4px; }
.zone-arrow { margin: 0 3px; color: #8A7250; }
.zone-badge {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tag-tracking-sm);
  text-transform: uppercase;
  background: var(--tone-badge);
  color: var(--tone);
}
/* Repère rassurant : sort de la gamme orange/rouge des niveaux
   d'intensité pour se lire d'un coup d'œil comme une information
   à part, et non comme un cran de l'échelle de peur. */
.zone-badge-kids {
  background: rgba(138, 201, 106, 0.16);
  color: #9AD173;
}
.zone-text { position: relative; margin: 0; font-size: 16px; color: #D6BC9D; text-wrap: pretty; }
.zone-split {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px dashed oklch(0.34 0.028 55);
  font-size: 15px;
}
.zone-path { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.path-kid    { color: #F7861B; font-weight: 700; }
.path-horror { color: var(--c-yellow); font-weight: 700; }

/* ============================================================
   EN SUPPLÉMENT — les deux expériences en cards
   ============================================================ */
.supp {
  padding: clamp(64px, 9vw, 100px) 22px;
  background: #1C0C06;
  border-bottom: 1px solid #4A2110;
  overflow: hidden;
}
.deco-tombstone {
  bottom: -10px; left: -22px; width: 132px;
  --o: 0.5; --r: -3deg;
  --in-y: 38px; --in-r: -11deg;
}
.supp-glow {
  inset: -30% -10%;
  background: radial-gradient(40% 40% at 70% 50%, rgba(232,70,27,0.3), transparent 70%);
}
.supp-head {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.supp-grid {
  max-width: 1180px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: stretch;
}
.supp-card {
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  background: #2C150C;
  border: 1px solid #5E2A14;
  overflow: hidden;
}
.supp-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
/* Photo carrée dans un cadre 16/9 : cadrage remonté pour garder le fronton */
.supp-media-manoir .parallax-media { object-position: center 25%; }
.supp-media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #2C150C 0%, transparent 55%);
}
/* Repère « nouveauté de l'année », porté par le titre de la carte :
   le doré détache la mention du reste du titre sans la couper du nom
   de la zone. */
.h3-news { color: var(--c-gold); }

/* Card sans photo : bloc de même gabarit, en attendant le visuel */
.supp-media-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background-image: radial-gradient(120% 130% at 50% 0%, #3A1D10, #1F0E07);
  border-bottom: 1px solid #5E2A14;
}
.supp-card-body {
  display: flex;
  flex-direction: column;
  padding: 26px 28px 30px;
}
.manoir-level { margin: 14px 0 0; display: flex; align-items: center; gap: 10px; font-size: 17px; }
.manoir-skulls { display: inline-flex; align-items: center; gap: 5px; }
.manoir-level-label { color: #F7861B; font-weight: 700; text-transform: uppercase; font-size: 13px; }

.manoir-text {
  margin: 18px 0 0;
  color: #EBD7C2;
  font-size: 18px;
  text-wrap: pretty;
}
.manoir-text p { margin: 0; }
.manoir-text p + p { margin-top: 1.4em; }

/* ============================================================
   INFOS PRATIQUES (tabs)
   ============================================================ */
.infos { padding: clamp(64px, 9vw, 96px) 22px clamp(66px, 9vw, 100px); overflow: hidden; }
.infos-head { text-align: center; }

.tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 40px;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }

.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 15px 24px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background-color: transparent;
  color: #8F7C68;
  border: 1px solid oklch(0.24 0.022 55);
  border-radius: 14px 14px 0 0;
  font-family: var(--font-body), system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: var(--tag-tracking-sm);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.tab:hover {
  color: #EAD5BD;
  background-color: oklch(0.19 0.024 55);
  border-color: oklch(0.32 0.03 55);
}

/* Onglet actif : meme aplat que .btn-primary (orange, survol gold), bordure
   incluse pour recouvrir le filet superieur du .tab-shell. */
.tab[aria-selected="true"] {
  background-color: var(--c-orange);
  color: #16100A;
  border-color: var(--c-orange);
  z-index: 2;
}
.tab[aria-selected="true"]:hover {
  background-color: var(--c-gold);
  color: #16100A;
  border-color: var(--c-gold);
}

.tab-shell {
  border: 1px solid oklch(0.3 0.028 55);
  border-radius: 0 20px 20px 20px;
  background: oklch(0.13 0.02 55);
  padding: clamp(28px, 4vw, 52px);
}
.tab-panel[hidden] { display: none; }

/* Horaires panel */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
  align-items: center;
}
.hours-grid .tab-text {
  margin: 20px 0 0;
  max-width: 460px;
  color: #D9C0A2;
  font-size: 18px;
  text-wrap: pretty;
}
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid oklch(0.34 0.028 55);
  background: oklch(0.13 0.02 55);
  font-size: 14px;
  color: #E6D0B6;
}
/* Pastilles d'info : le vert du « kids friendly » pour les soirs où
   le parcours tourne, le rouge du site pour les soirs de fermeture. */
.pill-dot { width: 8px; height: 8px; border-radius: 50%; }
.pill-dot-open { background: #8AC96A; }
.pill-dot-closed { background: var(--c-red); }

.hours-list { display: flex; flex-direction: column; gap: 0; }
.hours-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid oklch(0.28 0.022 55);
}
/* Chaque créneau listé est une période d'ouverture : même vert que la
   pastille « Fermeture 21h », pour que la lecture soit immédiate. */
.hours-bullet {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #8AC96A;
  box-shadow: 0 0 14px rgba(138, 201, 106, 0.7);
}
.hours-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: oklch(0.68 0.028 55);
}
.hours-note { margin-top: 4px; font-size: 16px; color: #D6BC9D; }
.hours-value {
  font-family: var(--font-display), system-ui, cursive;
  letter-spacing: 0.02em;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  color: #FCEEDB;
  white-space: nowrap;
}

/* Accès & Règlement panels */
.tab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}
.tab-col { display: flex; flex-direction: column; gap: 18px; }
/* Colonne à plusieurs visuels : deux carrés côte à côte, le second décalé
   vers le bas. */
.tab-imgs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.tab-imgs .tab-img { height: auto; min-height: 0; aspect-ratio: 1 / 1; }
.tab-imgs .tab-img:nth-child(2) { margin-top: 48px; }
.tab-col .tab-text {
  margin: 0;
  max-width: 520px;
  color: #D9C0A2;
  font-size: 18px;
  text-wrap: pretty;
}
.info-groups { display: grid; gap: 26px; margin-top: 8px; }
.info-group-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: var(--tag-tracking);
  color: #FCEEDB;
}
.info-group-lines { display: grid; gap: 2px; margin-top: 8px; }
.info-group-lines > div { font-size: 17px; color: #D9C0A2; }
.info-group-intro { font-size: 17px; color: #D9C0A2; }
.info-bullets { display: grid; gap: 10px; margin-top: 12px; }
.info-bullet { display: flex; gap: 12px; font-size: 17px; color: #D9C0A2; }
.info-bullet strong { color: #F5E6D3; }
.info-bullet-dot {
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--c-gold);
}

.rules { display: grid; gap: 14px; margin-top: 8px; }
.rule { display: flex; gap: 14px; font-size: 17px; color: #D9C0A2; text-wrap: pretty; }
.rule-skull { flex: none; height: 20px; margin-top: 4px; }

.tab-img {
  height: 100%;
  min-height: clamp(260px, 32vw, 380px);
  padding: 0;
  border-radius: 24px;
  background-color: oklch(0.11 0.02 55);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-origin: content-box;
  border: 1px solid oklch(0.3 0.028 55);
}
/* The map SVG carries its own colors: no panel behind it. */
.tab-img-map {
  background-color: transparent;
  background-size: contain;
  border: 0;
}

/* ============================================================
   TARIFS / CALENDRIER
   ============================================================ */
.tarifs { padding: clamp(56px, 8vw, 80px) 22px clamp(64px, 9vw, 90px); overflow: hidden; }
.tarifs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}
.tarifs-p { margin: 16px 0 0; max-width: 560px; color: #D9C0A2; text-wrap: pretty; }

.cal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  margin-top: 40px;
  width: 100%;
}

.cal-card {
  min-width: 0;
  padding: 24px 26px 28px;
  border-radius: 26px;
  background: oklch(0.145 0.02 55);
  border: 1px solid oklch(0.3 0.028 55);
}
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.cal-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body), sans-serif;
  font-size: 18px;
  font-weight: 800;
  background: transparent;
  color: var(--c-gold);
  border: 1px solid rgba(247,168,27,0.5);
}
.cal-arrow:hover:not([disabled]) { background: rgba(247,168,27,0.14); }
.cal-arrow[disabled] {
  color: oklch(0.4 0.02 55);
  border-color: oklch(0.24 0.022 55);
  cursor: default;
}
.cal-month {
  margin: 0;
  font-family: var(--font-display), system-ui, cursive;
  letter-spacing: 0.02em;
  font-size: 28px;
  color: #FCEEDB;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(4px, 0.8vw, 8px);
}
.cal-head {
  padding: 2px 0 6px;
  text-align: center;
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: oklch(0.62 0.028 55);
}
.cal-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border-radius: 14px;
  border-width: 2px;
  border-style: solid;
  font-family: var(--font-body), sans-serif;
}
.cal-cell-day { font-size: 15px; font-weight: 800; line-height: 1; }
.cal-cell-tag {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid oklch(0.26 0.022 55);
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border-radius: 999px;
  background: oklch(0.12 0.018 55);
  border: 1px solid transparent;
}
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-label { font-size: 13px; font-weight: 700; white-space: nowrap; }
.legend-15     { border-color: rgba(123,192,67,0.55); }
.legend-15 .legend-dot   { background: var(--c-green); }
.legend-15 .legend-label { color: var(--c-green-soft); }
.legend-16     { border-color: rgba(247,168,27,0.6); }
.legend-16 .legend-dot   { background: var(--c-gold); }
.legend-16 .legend-label { color: var(--c-yellow); }
.legend-18     { border-color: rgba(242,106,27,0.7); }
.legend-18 .legend-dot   { background: var(--c-orange); }
.legend-18 .legend-label { color: #FFB273; }
.legend-closed { border-color: oklch(0.3 0.028 55); }
.legend-closed .legend-dot   { background: oklch(0.45 0.02 55); }
.legend-closed .legend-label { color: oklch(0.68 0.028 55); }

/* Day detail panel */
.panel-day {
  position: relative;
  overflow: hidden;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px 30px 32px;
  border-radius: 26px;
  background: oklch(0.15 0.02 55);
  border: 1px solid oklch(0.3 0.028 55);
}
.panel-day > *:not(.deco) { position: relative; z-index: 1; }
.panel-day-kicker {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: oklch(0.68 0.028 55);
}
.panel-day-date {
  font-family: var(--font-display), system-ui, cursive;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  color: #FCEEDB;
}
.panel-day-pill {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid oklch(0.34 0.028 55);
  background: oklch(0.115 0.015 55);
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tag-tracking);
  color: #EFDCC6;
}
.panel-day-hour {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1;
  color: #FCEEDB;
}
.panel-day-price { display: flex; align-items: center; gap: 16px; margin-top: 6px; }
.panel-day-dot { width: 54px; height: 54px; border-radius: 50%; flex: none; }
.panel-day-price-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: oklch(0.68 0.028 55);
}
.panel-day-price-value {
  font-family: var(--font-display), system-ui, cursive;
  letter-spacing: 0.02em;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
}
.panel-day-star {
  font-size: 0.36em;
  top: -0.7em;
  color: var(--c-gold);
}
.panel-day-star-note {
  margin-top: 3px;
  font-size: 13px;
  color: oklch(0.68 0.024 55);
}
.panel-day-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: oklch(0.115 0.015 55);
  border: 1px solid oklch(0.34 0.028 55);
}
.panel-day-extra-label { font-size: 15px; font-weight: 700; color: #EFDCC6; }
.panel-day-extra-value {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--c-gold);
  white-space: nowrap;
}
.panel-day-note { margin: 0; font-size: 15px; color: #D3B999; text-wrap: pretty; }
.panel-day-cta {
  margin-top: auto;
  padding: 18px 28px;
  border: 1px solid var(--c-orange);
}

/* Price band */
.price-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
  border-top: 1px solid oklch(0.34 0.028 55);
  border-bottom: 1px solid oklch(0.34 0.028 55);
}
.price-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px;
  border-right: 1px solid oklch(0.26 0.022 55);
}
.price-cell:last-child { border-right: 0; }
.price-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: var(--c-gold);
}
.price-value {
  font-family: var(--font-display), system-ui, cursive;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1.05;
  color: #FCEEDB;
}
.price-note { font-size: 14px; line-height: 1.45; color: oklch(0.74 0.022 55); text-wrap: pretty; }

/* Cellule cliquable (devis groupes) : même gabarit que les autres, le
   souligné discret du montant annonce le lien avant le survol. */
.price-cell-link {
  color: inherit;
  transition: background .3s ease;
}
.price-cell-link .price-value {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(252, 238, 219, 0.35);
  text-underline-offset: 5px;
  transition: color .3s ease, text-decoration-color .3s ease;
}
.price-cell-link:hover { background: rgba(247, 168, 27, 0.07); color: inherit; }
.price-cell-link:hover .price-value {
  color: var(--c-gold);
  text-decoration-color: var(--c-gold);
}
.price-cell-link:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: -2px;
}

/* ============================================================
   HALLOWEEN EN JOURNÉE
   ============================================================ */
.journee { padding: clamp(64px, 9vw, 90px) 22px; overflow: hidden; }
.journee-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}
.journee-text {
  margin: 20px 0 0;
  max-width: 520px;
  color: #D9C0A2;
  font-size: 18px;
  text-wrap: pretty;
}
.journee-text p { margin: 0; }

.journee-offer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 26px;
  max-width: 520px;
  padding: 18px 20px;
  border-radius: 18px;
  background: oklch(0.145 0.02 55);
  border: 1px solid oklch(0.34 0.028 55);
}
.journee-offer-icon { flex: none; width: 26px; height: auto; margin-top: 2px; }
.journee-offer p { margin: 0; font-size: 16px; color: #EFDCC6; text-wrap: pretty; }
.journee-offer strong { color: var(--c-gold); }

/* portrait 1067x1600 : le cadre garde le ratio du fichier, rien n'est rogné */
.journee-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1067 / 1600;
  max-height: 620px;
  margin-inline: auto;
  border-radius: 26px;
  border: 1px solid oklch(0.3 0.028 55);
  overflow: hidden;
}
.journee-media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 8, 9, 0.5) 0%, transparent 55%);
}

/* ============================================================
   GREENFIELDS / SÉJOUR
   ============================================================ */
.sejour {
  padding: clamp(64px, 9vw, 90px) 22px;
  background: #1C0C06;
  border-top: 1px solid #4A2110;
  border-bottom: 1px solid #4A2110;
  overflow: hidden;
}
.sejour-glow {
  inset: -30% -10%;
  background: radial-gradient(40% 40% at 70% 50%, rgba(232,70,27,0.3), transparent 70%);
}
.sejour-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}
/* Deux photos côte à côte, la seconde décalée vers le bas : la
   composition reste dynamique sans dépendre d'un format d'image. */
.sejour-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}
.sejour-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 22px;
  border: 1px solid oklch(0.3 0.028 55);
  overflow: hidden;
}
.sejour-photo-offset { margin-top: clamp(20px, 5vw, 46px); }
.sejour-media img { object-position: center 40%; }
/* La famille occupe la moitié droite du fichier : sans ce décalage,
   le cadre portrait coupe les personnes de droite. */
.sejour-photo:first-child img { object-position: 65% center; }
.sejour-media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,8,9,0.7) 0%, transparent 60%);
}
.sejour-text {
  margin: 20px 0 0;
  max-width: 520px;
  color: #D9C0A2;
  font-size: 18px;
  text-wrap: pretty;
}
.sejour-text p { margin: 0; }
.sejour-text p + p { margin-top: 1.6em; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: clamp(64px, 9vw, 100px) 22px; overflow: hidden; }
.deco-ghost-faq {
  top: 18px;
  left: -14px;
  width: 86px;
  --o: 0.28;
  --r: 8deg;
  --in-x: -26px; --in-y: 22px; --in-r: 16deg;
}
.faq-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.faq-title { margin: 14px 0 40px; font-size: clamp(32px, 4.5vw, 52px); line-height: 1.02; }
.faq-list { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid oklch(0.3 0.028 55);
  background: oklch(0.145 0.02 55);
  border-radius: 20px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body), sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #F5E6D3;
  line-height: var(--body-leading);
}
.faq-sign {
  flex: none;
  font-family: var(--font-label), system-ui, sans-serif;
  font-size: 20px;
  line-height: 1;
  color: var(--c-gold);
  transition: transform .34s cubic-bezier(.22,.61,.36,1), color .2s ease;
}
.faq-q[aria-expanded="true"] .faq-sign { transform: rotate(135deg); }

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(.22,.61,.36,1);
}
.faq-panel > div {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease .04s, transform .34s cubic-bezier(.22,.61,.36,1) .04s;
}
.faq-item.is-open .faq-panel { grid-template-rows: 1fr; }
.faq-item.is-open .faq-panel > div { opacity: 1; transform: none; }
.faq-panel p {
  margin: 0;
  padding: 0 24px 22px;
  font-size: 16px;
  color: #D6BC9D;
  max-width: 72ch;
  text-wrap: pretty;
}
.faq-panel p + p { padding-top: 14px; }
@media (prefers-reduced-motion: reduce) {
  .faq-panel, .faq-panel > div, .faq-sign { transition: none !important; }
}

/* ============================================================
   CTA BILLETS
   ============================================================ */
.billets {
  padding: clamp(90px, 16vh, 170px) 22px;
  overflow: hidden;
  background-color: var(--c-bg);
  background-image: url('uploads/affiche-2026.jpg');
  background-size: cover;
  background-position: center;
}
.billets-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,8,9,0.86), rgba(11,8,9,0.7) 45%, rgba(11,8,9,0.92));
  pointer-events: none;
}
.billets-glow {
  inset: -30% -10%;
  background: radial-gradient(38% 44% at 50% 55%, rgba(242,106,27,0.3), transparent 70%);
}
.billets-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.billets-p { margin: 0; max-width: 520px; color: #EFDCC6; font-size: 19px; text-wrap: pretty; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 54px 22px 40px;
  background: oklch(0.11 0.02 55);
  border-top: 1px solid oklch(0.28 0.022 55);
}
.site-footer .container { max-width: 1180px; margin: 0 auto; }

.partners {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 34px;
  padding-bottom: 40px;
  border-bottom: 1px solid oklch(0.22 0.02 55);
}
.partners a {
  display: block;
  min-width: 0;
  transition: opacity .3s ease;
}
.partners a:hover { opacity: 0.7; }
.partners img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  padding: 44px 0 8px;
}
.footer-label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: var(--c-gold);
}
/* Newsletter (Campaign Monitor) — habillage aux couleurs du site.
   Le markup garde les classes js-cm-* et les attributs name/data-id
   exigés par leur script : ne rien y renommer. */
.footer-news-p {
  margin: 12px 0 0;
  max-width: 380px;
  font-size: 15px;
  color: #D6BC9D;
  text-wrap: pretty;
}
.footer-form { display: flex; flex-direction: column; gap: 14px; margin-top: 18px; }
.footer-field { display: flex; flex-direction: column; gap: 7px; }
.footer-field label {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tag-tracking-sm);
  color: #D6BC9D;
}
.footer-req { color: var(--c-orange); }
.footer-form input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid oklch(0.32 0.028 55);
  background: oklch(0.145 0.02 55);
  color: #F5E6D3;
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 15px;
  outline: none;
}
.footer-form input::placeholder { color: oklch(0.55 0.02 55); }
.footer-form input:focus { border-color: var(--c-orange); }
.footer-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 4px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: var(--c-orange);
  color: #16100a;
  font-family: var(--font-body), system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: var(--tag-tracking-sm);
  text-transform: uppercase;
}
.footer-form button:hover { background: var(--c-gold); }

.footer-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; font-size: 15px; }
.foot-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: #DFC7AA;
  transition: color .4s ease;
}
.foot-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
}
.foot-link:hover { color: #DFC7AA; }
.foot-link:hover::after { transform: scaleX(1); }

.footer-address { margin: 14px 0 0; font-size: 15px; color: #DFC7AA; }

.footer-copy {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid oklch(0.22 0.02 55);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 24px;
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: oklch(0.55 0.02 55);
}
/* Signature de l'agence, opposée au copyright en bas de page ;
   quand la ligne se coupe, la marge auto la garde à droite. */
.footer-credit {
  margin-left: auto;
  text-align: right;
  text-transform: none;
  letter-spacing: 0.06em;
  color: oklch(0.48 0.02 55);
}
.footer-credit a {
  position: relative;
  color: var(--c-gold);
  transition: color .4s ease;
}
.footer-credit a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease;
}
.footer-credit a:hover::after { transform: scaleX(1); }

/* ============================================================
   BADGE KIDS FRIENDLY (bas de page)
   ============================================================
   Vert du badge « Kids friendly » des cartes de zones : une info
   rassurante, hors de la gamme orange/rouge des niveaux de peur.
   Le badge ouvre un panneau rattaché juste au-dessus. */
.kids-pop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45; /* sous le header (50), le bandeau (60), la lightbox (100) */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,.61,.36,1),
    visibility 0s linear .4s;
}
.kids-pop.is-in {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .4s ease, transform .4s cubic-bezier(.22,.61,.36,1);
}
.kids-pop[hidden] { display: none; }

.kids-pop-bar {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 6px 5px 4px;
  border-radius: 999px;
  background: oklch(0.17 0.022 55);
  border: 1px solid rgba(138, 201, 106, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55);
}

.kids-pop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 6px 5px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.kids-pop-badge:hover { background: rgba(138, 201, 106, 0.12); }

.kids-pop-icon { flex: none; width: 18px; height: auto; display: block; opacity: 0.85; }

.kids-pop-title {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: var(--tag-tracking-sm);
  text-transform: uppercase;
  color: #9AD173;
  white-space: nowrap;
}

/* chevron dessiné en CSS : pointe vers le haut, se retourne à l'ouverture */
.kids-pop-chevron {
  flex: none;
  width: 7px;
  height: 7px;
  margin-left: 1px;
  border-right: 2px solid #9AD173;
  border-bottom: 2px solid #9AD173;
  transform: rotate(-135deg) translate(-1px, -1px);
  transition: transform .3s ease;
}
.kids-pop-badge[aria-expanded="true"] .kids-pop-chevron {
  transform: rotate(45deg) translate(-2px, -2px);
}

.kids-pop-close {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: oklch(0.55 0.024 55);
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
}
.kids-pop-close:hover { color: #F5E6D3; background: rgba(245, 230, 211, 0.12); }

/* Panneau explicatif, rattaché au badge par une petite flèche */
.kids-pop-panel {
  position: relative;
  width: min(300px, calc(100vw - 40px));
  padding: 14px 16px;
  border-radius: 16px;
  background: oklch(0.17 0.022 55);
  border: 1px solid rgba(138, 201, 106, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .28s ease, transform .28s cubic-bezier(.22,.61,.36,1);
}
.kids-pop-panel.is-open { opacity: 1; transform: none; }
.kids-pop-panel[hidden] { display: none; }
.kids-pop-panel p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #D9C0A2;
  text-wrap: pretty;
}
/* la flèche : carré pivoté, bordé sur deux côtés seulement */
.kids-pop-panel::after {
  content: "";
  position: absolute;
  right: 30px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: oklch(0.17 0.022 55);
  border-right: 1px solid rgba(138, 201, 106, 0.45);
  border-bottom: 1px solid rgba(138, 201, 106, 0.45);
  transform: rotate(45deg);
}

/* au-dessus de la barre d'achat fixe, qui occupe le bas ≤900px */
@media (max-width: 900px) {
  .kids-pop { right: 14px; bottom: calc(84px + env(safe-area-inset-bottom, 0px)); }
}
@media (prefers-reduced-motion: reduce) {
  .kids-pop, .kids-pop-panel, .kids-pop-chevron { transition: none !important; }
}
/* ============================================================
   LIGHTBOX (galerie)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 84px;
  background: rgba(8, 5, 4, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
body.lightbox-lock { overflow: hidden; }

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(1200px, 100%);
}
.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  max-height: 70svh;
  border-radius: 18px;
  border: 1px solid oklch(0.35 0.028 55);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transition: opacity .25s ease;
}
.lightbox-close,
.lightbox-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid oklch(0.38 0.028 55);
  background: rgba(21, 13, 8, 0.8);
  color: #F5E6D3;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover,
.lightbox-arrow:hover { background: rgba(247, 168, 27, 0.2); color: #FFFFFF; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 20px;
}
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }

.lightbox-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.lightbox-thumb {
  width: 74px;
  height: 52px;
  padding: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  background-color: oklch(0.14 0.02 55);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity .25s ease, border-color .25s ease;
}
.lightbox-thumb:hover { opacity: 0.85; }
.lightbox-thumb.is-active { opacity: 1; border-color: var(--c-gold); }

@media (max-width: 700px) {
  .lightbox { padding: 16px 12px; gap: 14px; }
  .lightbox-arrow { width: 40px; height: 40px; font-size: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; }
  .lightbox-img { max-height: 60vh; max-height: 60svh; border-radius: 14px; }
  .lightbox-thumb { width: 56px; height: 40px; }
}
@media (max-height: 520px) {
  .lightbox { gap: 8px; }
  .lightbox-img { max-height: 56vh; }
  .lightbox-thumbs { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox-img, .lightbox-thumb, .gallery-item { transition: none !important; }
}

/* ============================================================
   PAGE LÉGALE / COOKIES
   ============================================================
   Pages secondaires (/cookies/, /en/cookies/, /nl/cookies/) : même
   header et même footer que l'accueil, sans le bandeau flash ni le
   hero. --flash-h repasse donc à 0 pour que le header colle en haut,
   et .legal réserve à la main la hauteur du header fixe. */
.page-legal { --flash-h: 0px; }

.legal {
  padding: calc(76px + clamp(44px, 6vw, 76px)) 22px clamp(64px, 9vw, 100px);
  overflow: hidden;
}
.legal-glow {
  inset: -30% -20% auto;
  height: 640px;
  background: radial-gradient(46% 42% at 50% 22%, rgba(242,106,27,0.16), transparent 70%);
}
.deco-ghost-legal {
  top: -4px;
  right: -6px;
  width: 76px;
  --o: 0.22;
  --r: -10deg;
  --in-x: 26px; --in-y: 20px; --in-r: -16deg;
}
.legal-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.legal-title { margin: 14px 0 0; font-size: clamp(34px, 5vw, 56px); line-height: 1.02; }

/* ── Déclaration Cookiebot ────────────────────────────────────
   cd.js injecte son propre markup, dessiné pour un fond clair : tout
   est reteinté ici pour rester lisible sur le fond sombre du site.
   Les sélecteurs visent les classes générées par Cookiebot
   (CookieDeclaration*) — elles viennent de leur script, ne pas les
   renommer. */
.cookie-decl { margin-top: clamp(34px, 4.5vw, 52px); font-size: 15px; color: #D6BC9D; }
.cookie-decl p { margin: 0 0 14px; max-width: 78ch; text-wrap: pretty; }
.cookie-decl a { color: var(--c-gold); }
.cookie-decl a:hover { color: var(--c-yellow); }

.cookie-decl #CookieDeclarationUserStatusPanel {
  margin: 0 0 26px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid oklch(0.3 0.028 55);
  background: oklch(0.145 0.02 55);
  font-size: 14px;
}
.cookie-decl .CookieDeclarationType {
  margin: 0 0 18px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid oklch(0.3 0.028 55);
  background: oklch(0.145 0.02 55);
}
.cookie-decl .CookieDeclarationTypeHeader {
  display: block;
  margin: 0 0 8px;
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: var(--tag-tracking-sm);
  color: var(--c-gold);
}
.cookie-decl .CookieDeclarationTypeDescription { margin: 0 0 16px; color: #C7AC8D; }

/* Les tableaux de cookies sont larges (nom, fournisseur, description,
   expiration, type) : ils défilent horizontalement dans leur propre
   cadre plutôt que de casser la largeur de la page. Le conteneur
   .cookie-table-scroll est posé par app.js autour de chaque table. */
.cookie-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
}
.cookie-decl table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 14px;
}
.cookie-decl th,
.cookie-decl td {
  padding: 11px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid oklch(0.26 0.022 55);
}
.cookie-decl th {
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  text-transform: uppercase;
  color: oklch(0.62 0.028 55);
  border-bottom-color: oklch(0.34 0.028 55);
}
.cookie-decl td { color: #D6BC9D; overflow-wrap: break-word; }
.cookie-decl tr:last-child td { border-bottom: 0; }

.cookie-decl #CookieDeclarationLastUpdated {
  margin: 8px 0 0;
  font-size: 13px;
  color: oklch(0.55 0.02 55);
}

/* Repli sans JavaScript : la déclaration Cookiebot ne s'affiche pas,
   on garde une phrase et le lien de contact à la place. */
.cookie-noscript {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid oklch(0.3 0.028 55);
  background: oklch(0.145 0.02 55);
  font-size: 15px;
  color: #D6BC9D;
}

/* Lien légal dans la barre de bas de page, à côté du copyright. */
.footer-legal { color: oklch(0.6 0.02 55); transition: color .4s ease; }
.footer-legal:hover { color: var(--c-gold); }

@media (max-width: 620px) {
  .legal { padding-top: calc(70px + 40px); }
  .cookie-decl .CookieDeclarationType { padding: 18px 16px; }
  .cookie-decl #CookieDeclarationUserStatusPanel { padding: 16px 16px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .r-nav { gap: 18px; font-size: 13px; }
}

/* ── ≤900px: hamburger menu ──────────────────────────────────
   The nav becomes a dropdown sheet under the fixed header. It is
   position:absolute (not fixed): the header's backdrop-filter makes
   it the containing block, so top:100% lands right under it. */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }

  .r-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 22px 26px;
    max-height: calc(100vh - 90px);
    max-height: calc(100svh - 90px);
    overflow-y: auto;
    background: rgba(16, 10, 7, 0.97);
    border-bottom: 1px solid oklch(0.3 0.028 55);
    border-radius: 0 0 22px 22px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    font-size: 17px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease, visibility 0s linear .3s;
  }
  .site-header.nav-open .r-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: opacity .3s ease, transform .3s ease;
  }
  .r-nav > a { padding: 17px 2px; border-bottom: 1px solid oklch(0.24 0.022 55); }
  /* Le souligné tomberait sur la séparation de ligne : dans le menu
     déroulant, l'entrée active porte un accent vertical à sa gauche. */
  .r-nav > a.is-active::after {
    left: -12px; right: auto;
    top: 17px; bottom: 17px;
    width: 3px; height: auto;
  }
  /* dans le menu déroulant, aligné à gauche comme les autres entrées ;
     le sous-menu de langue se déplie dans le flux plutôt qu'en surcouche */
  .r-nav > .lang-switch {
    display: block;
    padding: 17px 2px;
    border-bottom: 1px solid oklch(0.24 0.022 55);
  }
  .lang-menu {
    position: static;
    transform: none;
    min-width: 0;
    margin-top: 10px;
    padding: 0 0 0 2px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .lang-menu a { padding: 12px 0; text-align: left; border-radius: 0; }
  .lang-menu a:hover { background: transparent; }
  .r-nav > a.nav-cta {
    margin-top: 22px;
    padding: 16px 24px;
    border-bottom: 0;
  }

  /* Veil over the page + scroll lock while the menu is open */
  body.nav-lock { overflow: hidden; }
  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(11, 8, 9, 0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility 0s linear .3s;
  }
  body.nav-lock::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .3s ease;
  }
}

/* ── ≤900px: sticky bottom CTA (tablette & mobile) ───────── */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30; /* sous le voile du menu (40) et la lightbox (100) */
    display: block;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(16, 10, 7, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid oklch(0.3 0.028 55);
  }
  .sticky-cta-btn {
    display: flex;
    width: 100%;
    padding: 15px 24px;
    font-size: 16px;
  }
  /* le contenu de fin de page reste lisible au-dessus de la barre */
  .site-footer { padding-bottom: calc(40px + 72px + env(safe-area-inset-bottom, 0px)); }
}

/* ── ≤880px: tablet portrait ─────────────────────────────── */
@media (max-width: 880px) {
  .r-2col { grid-template-columns: minmax(0, 1fr); }

  /* Galerie : une colonne, chaque image à son ratio réel — rien n'est rogné.
     (fichiers actuels : 3:2 partout, sauf la 3e image, portrait 2:3) */
  .r-gallery { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }
  .r-gallery > .gallery-item { grid-column: auto !important; grid-row: auto !important; aspect-ratio: 3 / 2; }
  .r-gallery > .gallery-item:nth-child(3) { aspect-ratio: 2 / 3; }

  .sejour-photo { aspect-ratio: 4 / 5; }
  .sejour-media img { object-position: center; }

  /* Bouton Greenfields centré sur mobile (texte compris, quand il passe sur 2 lignes) */
  .btn-ghost {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.3;
  }
  .r-4col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .r-4col > * { border-right: 0 !important; border-bottom: 1px solid oklch(0.26 0.022 55); }
  .r-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  /* Not in the prototype: its 3-column footer had no breakpoint and collapsed
     badly on phones. Single column below 880px. */
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .story-grid, .sejour-grid, .tab-grid, .supp-grid { gap: 32px; }
  .tab-imgs { gap: 12px; }
  .tab-imgs .tab-img:nth-child(2) { margin-top: 26px; }
  /* cadre au ratio de hero-bg.mp4 (1280x798) : la vidéo n'est pas rognée */
  .story-video-frame { min-height: 0; aspect-ratio: 1280 / 798; }
  .hours-grid { gap: 36px; }
}

@media (max-width: 620px) {
  .r-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ── ≤480px: mobile portrait ─────────────────────────────── */
@media (max-width: 480px) {
  .site-header { padding: 12px 16px; }
  .brand img { height: 26px; }
  .gallery { gap: 10px; }
  .zone-body { padding: 20px 20px 24px; }
  .tab { padding: 14px 18px; }
  .tab-shell { padding: 24px 18px; }
  .cal-card { padding: 18px 14px 22px; }
  .panel-day { padding: 24px 20px 26px; }
  .panel-day-extra { flex-wrap: wrap; }
  .price-cell { padding: 22px 18px; }
  .btn-hero { padding: 17px 30px; font-size: 15px; }
  .btn-billets { padding: 16px 28px; font-size: 15px; }

}

/* ── Mobile landscape: short viewports ───────────────────── */
@media (max-height: 520px) {
  .hero-content { padding: 64px 20px 96px; gap: 14px; }
  .hero-title img { height: clamp(80px, 32vh, 130px); }
  .btn-hero { padding: 13px 26px; font-size: 14px; }
  .hero-bar { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero-bar-cell { padding: 10px 12px; }
  .hero-bar-value { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .r-nav, .nav-toggle-bar, body::after { transition: none !important; }
}
