/* ============================================================
   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-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;
}

/* ── Base ─────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

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%; }

::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; }
}
@keyframes drift {
  0%   { transform: translate3d(-4%, 0, 0) scale(1); }
  50%  { transform: translate3d(4%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-4%, 0, 0) scale(1); }
}
@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}
@keyframes decoSway {
  0%, 100% { transform: rotate(calc(var(--r, 0deg) - 4deg)); }
  50% { transform: rotate(calc(var(--r, 0deg) + 4deg)); }
}
@keyframes ghostFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(4deg); }
  35% { transform: translate3d(-14px, -12px, 0) rotate(0deg); }
  70% { transform: translate3d(10px, -20px, 0) rotate(8deg); }
}

/* ── Decorative SVGs ──────────────────────────────────────── */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 900px) { .deco { display: none; } }
@media (prefers-reduced-motion: reduce) { .deco { animation: 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); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; 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 { color: #EFDCC6; }
.r-nav > a:hover { color: #FFFFFF; }

.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; }

/* 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;
  height: 100vh;
  height: 100svh; /* stable on mobile: ignores the browser bar collapsing */
  max-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid oklch(0.3 0.028 55);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
}
.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 {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(45% 40% at 50% 30%, rgba(242,106,27,0.2), transparent 70%);
  animation: drift 26s ease-in-out infinite;
  pointer-events: none;
}
.deco-bat-1     { top: 15%; left: 7%;  width: 108px; opacity: 0.5;  transform: rotate(-8deg); z-index: 1; }
.deco-bat-2     { top: 25%; left: 15%; width: 62px;  opacity: 0.34; transform: rotate(12deg); z-index: 1; }
.deco-ghost-hero{ top: 28%; right: 8%; width: 104px; opacity: 0.4;  z-index: 1; animation: ghostFloat 18s ease-in-out 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;
}
.gallery-item {
  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);
}
.gallery-item-lg { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   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;
  opacity: 0.8;
  --r: 6deg;
  animation: decoSway 12s ease-in-out infinite;
}

.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;
}
.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: 210px;
  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%);
}
.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);
  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);
}
.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; }

/* ============================================================
   MANOIR 2.0 / THE CAVE
   ============================================================ */
.manoir {
  padding: clamp(64px, 9vw, 100px) 22px;
  background: #1C0C06;
  border-bottom: 1px solid #4A2110;
  overflow: hidden;
}
.deco-tombstone { bottom: -10px; left: -22px; width: 132px; opacity: 0.5; --r: -3deg; }
.manoir-glow {
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(40% 40% at 70% 50%, rgba(232,70,27,0.3), transparent 70%);
  animation: drift 30s ease-in-out infinite;
  pointer-events: none;
}
.manoir-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;
}
.manoir-level { margin: 16px 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: 20px 0 0;
  max-width: 520px;
  color: #EBD7C2;
  font-size: 18px;
  text-wrap: pretty;
}
.manoir-text p { margin: 0; }
.manoir-text p + p { margin-top: 1.6em; }

.manoir-media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  border-radius: 30px;
  border: 1px solid #5E2A14;
  overflow: hidden;
}
.manoir-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.manoir-media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1C0C06 0%, transparent 55%);
}
.manoir-media-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-family: var(--font-label), system-ui, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: var(--tag-tracking);
  color: var(--c-gold);
}

/* ============================================================
   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: 8px;
  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: 16px 26px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: transparent;
  color: #D6BC9D;
  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;
}
.tab[aria-selected="true"] {
  background: oklch(0.13 0.02 55);
  color: #FCEEDB;
  border-color: oklch(0.3 0.028 55);
  border-bottom-color: oklch(0.13 0.02 55);
}

.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;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; }
.pill-dot-gold { background: var(--c-gold); }
.pill-dot-grey { background: oklch(0.5 0.02 55); }

.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);
}
.hours-bullet {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 14px rgba(247,168,27,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; }
.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);
}
/* map.svg ships without its <style> block, so it renders as black line art —
   the design puts it on a cream panel, contained, to keep it readable. */
.tab-img-map {
  background-color: #EFE0C4;
  background-size: contain;
  padding: 18px;
}

/* ============================================================
   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(247,168,27,0.55); }
.legend-15 .legend-dot   { background: var(--c-gold); }
.legend-15 .legend-label { color: var(--c-yellow); }
.legend-16     { border-color: rgba(242,106,27,0.6); }
.legend-16 .legend-dot   { background: var(--c-orange); }
.legend-16 .legend-label { color: #FFB273; }
.legend-18     { border-color: rgba(232,70,27,0.7); }
.legend-18 .legend-dot   { background: var(--c-red); }
.legend-18 .legend-label { color: #FF9C7A; }
.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-pill-mark { font-size: 14px; }
.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-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; color: oklch(0.66 0.02 55); text-wrap: pretty; }

/* ============================================================
   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 {
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(40% 40% at 70% 50%, rgba(232,70,27,0.3), transparent 70%);
  animation: drift 30s ease-in-out infinite;
  pointer-events: none;
}
.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;
}
.sejour-media {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 26px;
  border: 1px solid oklch(0.3 0.028 55);
  overflow: hidden;
}
.sejour-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.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;
  opacity: 0.28;
  --r: 8deg;
  animation: decoFloat 10s ease-in-out infinite;
}
.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;
}
@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 {
  position: absolute;
  inset: -30% -10%;
  background: radial-gradient(38% 44% at 50% 55%, rgba(242,106,27,0.3), transparent 70%);
  animation: drift 28s ease-in-out infinite;
  pointer-events: none;
}
.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 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);
}
.footer-news-p {
  margin: 12px 0 0;
  max-width: 380px;
  font-size: 15px;
  color: #D6BC9D;
  text-wrap: pretty;
}
.footer-form { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-form input {
  flex: 1 1 210px;
  min-width: 180px;
  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 button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 14px 24px;
  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-news-legal { margin: 12px 0 0; font-size: 13px; color: oklch(0.6 0.024 55); }

.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);
  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);
}

/* ============================================================
   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); }
  .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;
  }
}

/* ── ≤880px: tablet portrait ─────────────────────────────── */
@media (max-width: 880px) {
  .r-2col { grid-template-columns: minmax(0, 1fr); }
  .r-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .r-gallery > div:first-child { grid-column: span 2 !important; grid-row: span 1 !important; }
  .r-4col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .r-4col > div { 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, .manoir-grid, .sejour-grid, .tab-grid { gap: 32px; }
  .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; grid-auto-rows: minmax(96px, 24vw); }
  .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; }
}
