/* ==========================================================================
   MAISON AURUM — Design tokens
   ========================================================================== */
:root {
  --bg: #0a0908;
  --bg-alt: #0d0c0a;
  --surface: #141210;
  --surface-2: #1c1916;
  --border: rgba(212, 175, 106, 0.12);
  --border-strong: rgba(212, 175, 106, 0.22);
  --text: #f2ede2;
  --text-muted: #9a9186;

  --gold: #d4af6a;
  --gold-rgb: 212, 175, 106;
  --gold-deep: #b8862f;
  --danger: #b5533f;

  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button {
  font: inherit; color: inherit; background: none; border: none; padding: 0;
  cursor: pointer; appearance: none; -webkit-appearance: none; -webkit-tap-highlight-color: transparent;
}
input, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; letter-spacing: 0.01em; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3.5rem, 8vw, 7.5rem); }
.section--alt { background: var(--bg-alt); }
.section__lead { max-width: 62ch; color: var(--text-muted); font-size: 1.05rem; margin-top: 0.75rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

h2 { font-size: clamp(2rem, 4.2vw, 2.8rem); max-width: 26ch; }

.grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.grid--pillars { grid-template-columns: 1fr; }
.grid--ambiance { grid-template-columns: repeat(2, 1fr); }
.grid--testimonials { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--pillars { grid-template-columns: repeat(3, 1fr); }
  .grid--testimonials { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .grid--ambiance { grid-template-columns: repeat(4, 1fr); }
}

.accent-text { color: var(--gold); }

/* ==========================================================================
   Accessibility utilities
   ========================================================================== */
.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 10000;
  background: var(--gold); color: #1a1204; padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); font-weight: 600; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ==========================================================================
   Progress bar + custom cursor
   ========================================================================== */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  z-index: 9999; transition: width 0.1s linear;
}
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  border-radius: 50%; transform: translate(-50%, -50%); display: none;
}
.cursor-dot { width: 5px; height: 5px; background: var(--gold); }
.cursor-ring {
  width: 32px; height: 32px; border: 1px solid rgba(var(--gold-rgb), 0.5);
  transition: width 0.2s var(--ease), height 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.cursor-ring.is-active { width: 50px; height: 50px; background: rgba(var(--gold-rgb), 0.08); border-color: var(--gold); }
@media (hover: hover) and (pointer: fine) {
  .has-custom-cursor .cursor-dot, .has-custom-cursor .cursor-ring { display: block; }
  .has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button { cursor: none; }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h); display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), height 0.3s var(--ease);
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled { border-color: var(--border); height: 66px; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.site-header__brand { display: flex; align-items: center; gap: 1rem; min-width: 0; }

.back-link {
  display: none; font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-muted);
  border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.35rem 0.75rem;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease); white-space: nowrap;
}
.back-link:hover { border-color: var(--gold); color: var(--gold); }
@media (min-width: 900px) { .back-link { display: inline-flex; } }

.logo {
  font-family: var(--font-head); font-size: 1.15rem; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 0.55rem; white-space: nowrap;
}
.logo__mark { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.logo__accent { color: var(--gold); font-style: italic; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: none; align-items: center; gap: 1.6rem; }
.nav__link { position: relative; font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s var(--ease); white-space: nowrap; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width 0.25s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { display: none; }

@media (min-width: 1180px) { .nav__list { display: flex; } .nav__cta { display: inline-flex; } }

.burger { display: flex; flex-direction: column; justify-content: center; align-items: stretch; flex-shrink: 0; gap: 5px; width: 32px; height: 32px; padding: 0; z-index: 600; touch-action: manipulation; }
.burger span { display: block; height: 1px; width: 100%; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1180px) { .burger { display: none; } }

@media (max-width: 1179px) {
  .nav {
    position: fixed; inset: 0; z-index: 550; background: var(--bg);
    flex-direction: column; justify-content: center; align-items: center; gap: 2.2rem;
    overflow-y: auto; padding-block: 2rem; transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { display: flex; flex-direction: column; gap: 1.8rem; text-align: center; }
  .nav__link { font-size: 1.25rem; }
  .nav__cta { display: inline-flex; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.7rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease), opacity 0.2s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: #1a1204; }
.btn--primary:hover { box-shadow: 0 0 32px rgba(var(--gold-rgb), 0.35); transform: translateY(-2px); }
.btn--primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--ghost { border: 1px solid var(--border-strong); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--ghost:disabled { opacity: 0.35; cursor: not-allowed; }
.btn--outline { border: 1px solid var(--border-strong); color: var(--text); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(var(--gold-rgb), 0.06); }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ==========================================================================
   Hero cinématique
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 1.5rem); padding-bottom: 4rem; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -20%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(700px circle at var(--mx, 50%) var(--my, 35%), rgba(var(--gold-rgb), 0.13), transparent 62%),
    radial-gradient(900px circle at 85% 80%, rgba(var(--gold-rgb), 0.06), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 3rem; }
.hero__fade { will-change: opacity, transform; }

.hero__title { font-size: clamp(2.6rem, 7vw, 4.6rem); display: flex; flex-direction: column; gap: 0.25rem; margin-top: 1rem; }
.hero__title-line--accent { color: var(--gold); font-style: italic; font-weight: 500; }
.hero__subtitle { margin-top: 1.5rem; max-width: 52ch; color: var(--text-muted); font-size: 1.08rem; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

@keyframes titleReveal {
  from { opacity: 0; letter-spacing: 0.3em; transform: translateY(18px); filter: blur(3px); }
  to { opacity: 1; letter-spacing: normal; transform: translateY(0); filter: blur(0); }
}
.hero__title-line {
  display: inline-block;
  opacity: 0;
  animation: titleReveal 1.3s var(--ease-lux) forwards;
}
.eyebrow.hero__title-line { animation-delay: 0.05s; }
.hero__title .hero__title-line:nth-of-type(1) { animation-delay: 0.25s; }
.hero__title .hero__title-line:nth-of-type(2) { animation-delay: 0.5s; }
.hero__subtitle.hero__title-line { animation-delay: 0.75s; }
.hero__ctas.hero__title-line { animation-delay: 0.95s; }

@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }

.hero__ornament { display: none; color: var(--gold); opacity: 0.65; }
@media (min-width: 1024px) { .hero__ornament { display: block; } }
.hero__ornament-svg { width: 100%; max-width: 420px; margin-inline: auto; animation: ornamentSpin 90s linear infinite; }
@keyframes ornamentSpin { to { transform: rotate(360deg); } }

.scroll-indicator {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1px solid var(--border-strong); border-radius: 999px; z-index: 1;
}
.scroll-indicator span {
  position: absolute; top: 8px; left: 50%; width: 3px; height: 8px;
  background: var(--gold); border-radius: 2px; transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}
@keyframes scrollDot { 0% { top: 8px; opacity: 1; } 70% { top: 20px; opacity: 0; } 100% { top: 20px; opacity: 0; } }

/* ==========================================================================
   Philosophie (pillars)
   ========================================================================== */
.pillar { text-align: center; padding: 1rem; }
.pillar__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--border-strong);
  color: var(--gold); margin-bottom: 1.25rem;
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.pillar p { color: var(--text-muted); font-size: 0.92rem; max-width: 32ch; margin-inline: auto; }

/* ==========================================================================
   Galerie d'ambiance
   ========================================================================== */
.ambiance-tile {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  aspect-ratio: 1 / 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ambiance-tile:hover { border-color: var(--gold); transform: translateY(-4px); }
.ambiance-tile__icon { color: var(--gold); width: 40px; height: 40px; }
.ambiance-tile__icon svg { width: 100%; height: 100%; }
.ambiance-tile__caption { font-family: var(--font-head); font-style: italic; font-size: 1.05rem; color: var(--text); }

/* ==========================================================================
   Menu — filtres allergènes + plats
   ========================================================================== */
.diet-filters { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; margin-top: 2rem; }
.diet-chip {
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem;
  border: 1px solid var(--border-strong); border-radius: 999px; padding: 0.55rem 1.1rem;
  color: var(--text-muted); transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.diet-chip svg { width: 16px; height: 16px; }
.diet-chip:hover { border-color: var(--gold); color: var(--text); }
.diet-chip.is-active { background: var(--gold); border-color: var(--gold); color: #1a1204; }
.diet-chip--reset { font-family: var(--font-mono); font-size: 0.75rem; border-style: dashed; }

.menu-empty { color: var(--text-muted); font-size: 0.92rem; margin-top: 2rem; font-style: italic; }

.menu-course { margin-top: 3rem; }
.menu-course.is-empty { display: none; }
.menu-course__title { font-style: italic; font-size: 1.5rem; color: var(--gold); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.menu-course__list { display: flex; flex-direction: column; gap: 1.5rem; }

.dish { display: grid; grid-template-columns: 1fr auto; gap: 0.5rem 1rem; padding-bottom: 1.25rem; border-bottom: 1px dashed var(--border); }
.dish.is-hidden { display: none; }
.dish__head { display: contents; }
.dish__name { font-size: 1.05rem; font-weight: 500; grid-column: 1; }
.dish__price { font-family: var(--font-mono); font-size: 0.9rem; color: var(--gold); grid-column: 2; white-space: nowrap; }
.dish__desc { color: var(--text-muted); font-size: 0.9rem; grid-column: 1 / -1; font-style: italic; }
.dish__tags { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.35rem; }
.diet-tag {
  display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.03em; color: var(--text-muted); border: 1px solid var(--border); border-radius: 999px; padding: 0.25rem 0.6rem;
}
.diet-tag svg { width: 12px; height: 12px; color: var(--gold); }

.menu-footnote { margin-top: 3rem; color: var(--text-muted); font-size: 0.82rem; font-family: var(--font-mono); text-align: center; }

/* ==========================================================================
   Réservation — stepper, calendrier, créneaux
   ========================================================================== */
.booking { max-width: 760px; margin: 2.5rem auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.75rem); }

.booking__steps { position: relative; display: flex; justify-content: space-between; margin-bottom: 2.5rem; }
.booking__steps::before { content: ""; position: absolute; top: 15px; left: 15px; right: 15px; height: 1px; background: var(--border-strong); z-index: 0; }
.booking__steps::after { content: ""; position: absolute; top: 15px; left: 15px; height: 1px; width: var(--fill, 0%); background: var(--gold); z-index: 0; transition: width 0.4s var(--ease); }
.booking__step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; flex: 1; }
.booking__step-num {
  width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--surface); border: 1px solid var(--border-strong); font-family: var(--font-mono); font-size: 0.82rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.booking__step-label { font-size: 0.72rem; color: var(--text-muted); text-align: center; }
.booking__step.is-active .booking__step-num { border-color: var(--gold); color: var(--gold); }
.booking__step.is-active .booking__step-label { color: var(--text); }
.booking__step.is-done .booking__step-num { background: var(--gold); border-color: var(--gold); color: #1a1204; }

.booking__panel { display: none; border: none; }
.booking__panel.is-active { display: block; animation: panelFade 0.35s var(--ease); }
.booking__panel.is-shaking { animation: shake 0.4s; }
@keyframes panelFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes shake {
  10%, 90% { transform: translateX(-2px); } 20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); } 40%, 60% { transform: translateX(6px); }
}
.booking__panel-title { font-size: 1.15rem; font-style: italic; color: var(--gold); margin-bottom: 1.5rem; }
.booking__hint { color: var(--text-muted); font-size: 0.85rem; margin-top: 1rem; }
.form-error { font-size: 0.85rem; color: var(--danger); min-height: 1.2em; margin-top: 0.75rem; }

.party-size { display: flex; align-items: center; justify-content: center; gap: 2rem; padding: 1.5rem 0; }
.party-size__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-strong);
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.party-size__btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.party-size__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.party-size__display { text-align: center; }
.party-size__display span:first-child { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--gold); }
.party-size__label { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.calendar__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.calendar__nav-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-strong); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.calendar__nav-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.calendar__nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.calendar__label { font-family: var(--font-head); font-style: italic; font-size: 1.15rem; }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.4rem; }
.calendar__day-label { text-align: center; font-family: var(--font-mono); font-size: 0.68rem; color: var(--text-muted); padding-bottom: 0.5rem; }
.calendar__day {
  aspect-ratio: 1 / 1; border-radius: 50%; border: 1px solid transparent; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.calendar__day:not(:disabled):hover { border-color: var(--gold); }
.calendar__day:disabled { color: var(--text-muted); opacity: 0.35; cursor: not-allowed; }
.calendar__day.is-closed-day { opacity: 0.5; text-decoration: line-through; }
.calendar__day.is-today { font-weight: 700; }
.calendar__day.is-selected { background: var(--gold); border-color: var(--gold); color: #1a1204; }
.calendar__legend { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-muted); }
.calendar__legend-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--text-muted); flex-shrink: 0; }

.time-group { margin-bottom: 1.5rem; }
.time-group__title { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.85rem; }
.time-group__list { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.time-slot {
  font-family: var(--font-mono); font-size: 0.85rem; border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 0.6rem 1.1rem; color: var(--text); transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}
.time-slot:hover { border-color: var(--gold); }
.time-slot.is-selected { background: var(--gold); border-color: var(--gold); color: #1a1204; }
.time-empty { color: var(--text-muted); font-size: 0.9rem; font-style: italic; }

.form-row { display: grid; gap: 1.1rem; margin-bottom: 1.1rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.form-row .form-field { margin-bottom: 0; }
.form-field label { font-size: 0.85rem; color: var(--text-muted); }
.form-field input, .form-field textarea {
  background: var(--bg); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: 0.85rem 1rem; transition: border-color 0.2s var(--ease); resize: vertical;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }

.booking__summary { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.25rem; margin-top: 1.25rem; font-size: 0.88rem; }
.booking__summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; }
.booking__summary dt { color: var(--text-muted); font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; }
.booking__summary dd { color: var(--text); }

.booking__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }

.booking__success { text-align: center; padding-block: 1.5rem; }
.booking__success svg { margin: 0 auto 1rem; color: var(--gold); }
.booking__success h3 { font-size: 1.4rem; font-style: italic; margin-bottom: 0.75rem; }
.booking__success p { color: var(--text-muted); font-size: 0.92rem; max-width: 48ch; margin: 0 auto; }
.booking__success-recap {
  text-align: left; white-space: pre-wrap; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 1.25rem; margin: 1.5rem 0; font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted);
  max-height: 260px; overflow-y: auto;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.testimonial-card__stars { color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.85rem; }
.testimonial-card__quote { color: var(--text); font-size: 0.98rem; font-style: italic; margin-bottom: 1rem; }
.testimonial-card__author { color: var(--text-muted); font-size: 0.8rem; font-family: var(--font-mono); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 760px; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; font-weight: 600; }
.faq-item__icon { font-family: var(--font-mono); color: var(--gold); font-size: 1.2rem; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item__q[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s var(--ease); }
.faq-item__a > p { overflow: hidden; color: var(--text-muted); font-size: 0.92rem; padding: 0 1.5rem; }
.faq-item__q[aria-expanded="true"] + .faq-item__a { grid-template-rows: 1fr; }
.faq-item__q[aria-expanded="true"] + .faq-item__a > p { padding-bottom: 1.25rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.contact__email { display: inline-block; margin-top: 1.75rem; font-family: var(--font-mono); font-size: 1.2rem; color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease); }
.contact__email:hover { border-color: var(--gold); }
.contact__note { margin-top: 0.5rem; color: var(--text-muted); font-size: 0.85rem; }

.contact-info { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info__label { display: block; font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); margin-bottom: 0.35rem; }
.contact-info__row p { color: var(--text-muted); font-size: 0.92rem; }
.contact-info__row a { color: var(--text); transition: color 0.2s var(--ease); }
.contact-info__row a:hover { color: var(--gold); }
.contact-info__socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.social-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-strong); border-radius: 50%; color: var(--text-muted); transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { border-top: 1px solid var(--border); padding-block: 3rem; }
.site-footer__inner { display: grid; gap: 2rem; }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr; } }
.site-footer__tagline { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.75rem; max-width: 34ch; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__links a { color: var(--text-muted); font-size: 0.9rem; transition: color 0.2s var(--ease); }
.site-footer__links a:hover { color: var(--gold); }
.site-footer__contact a { color: var(--gold); font-family: var(--font-mono); font-size: 0.9rem; }
.site-footer__contact p { color: var(--text-muted); font-size: 0.8rem; margin-top: 0.6rem; }
.site-footer__credit a { color: var(--text-muted); text-decoration: underline; text-decoration-color: var(--border-strong); }
.site-footer__credit a:hover { color: var(--gold); }
.logo--footer { font-size: 1.3rem; font-family: var(--font-head); }
.logo--footer .logo__accent { color: var(--gold); font-style: italic; }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Grain overlay
   ========================================================================== */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9997; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   QA Mobile — correctifs forcés (n'affectent que <= 768px, desktop inchangé)
   ========================================================================== */
@media (max-width: 768px) {
  /* Stepper Réservation : les boutons Précédent / Suivant / Confirmer débordaient
     du viewport en ligne — structure forcée en colonne, pleine largeur, sans overflow-x */
  .booking__nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }
  .booking__nav .btn {
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
