/* ════════════════════════════════════════════════════════════════════
   Easypeak — Page /reserver (refonte cinéma)
   Hero sombre + widget Lemcal éclairé + 3 blocs réassurance crème.
   ════════════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────── */
:root {
  --paper:   #FAF7F2;
  --paper-2: #F2ECE2;
  --paper-3: #EDE4D4;
  --ink:     #1C1613;
  --ink-2:   #2A221C;
  --muted:   #6B5D52;
  --terra:   #B54A2A;
  --terra-d: #8F3B20;
  --terra-l: #E8A284;
  --sand:    #D9C9B0;
  --cinema:  #1A0F0A;
  --line:    rgba(28,22,19,.11);
  --line-s:  rgba(28,22,19,.06);
  --u: "Unbounded", system-ui, sans-serif;
  --s: "Fraunces", "Times New Roman", serif;
  --b: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--b);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--terra); color: var(--paper); }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 60px; }

/* ─── BUTTONS ─────────────────────────── */
.btn-bib {
  display: inline-flex; align-items: center; gap: 0;
  background: var(--terra); border-radius: 999px;
  padding: 5px 5px 5px 26px;
  font-family: var(--b); font-weight: 500; font-size: 14px;
  color: var(--paper); cursor: pointer;
  transition: background .35s var(--ease), transform .2s var(--ease);
}
.btn-bib:hover { background: var(--terra-d); }
.btn-bib:active { transform: scale(.98); }
.btn-bib .lbl { padding: 12px 14px 12px 0; }
.btn-bib .arr {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper); color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: transform .4s var(--ease);
}
.btn-bib:hover .arr { transform: translate(2px, -2px); }

/* ─── NAV (identique aux autres pages) ─────────────────────────── */
nav.top {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 16px 60px;
  background: rgba(250, 247, 242, .75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-s);
}
.logo {
  font-family: var(--u); font-weight: 500; font-size: 17px;
  letter-spacing: -.02em; color: var(--ink);
  text-decoration: none; flex-shrink: 0;
}
.logo em { font-family: var(--s); font-style: italic; font-weight: 400; color: var(--terra); font-size: 19px; }
.logo-img { height: 24px; width: auto; display: block; }

.nav-center { display: flex; gap: 40px; justify-self: center; list-style: none; }
.nav-center a {
  font-family: var(--b); font-weight: 400; font-size: 13px;
  letter-spacing: .01em; color: var(--ink); opacity: .72;
  transition: opacity .25s var(--ease);
  position: relative; padding-bottom: 4px;
}
.nav-center a:hover { opacity: 1; }
.nav-center a::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--terra);
  transition: width .3s var(--ease);
}
.nav-center a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; justify-self: end; }
.menu-trigger {
  background: transparent; border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 18px 10px 22px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--b); font-weight: 500; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); cursor: pointer;
  transition: all .35s var(--ease);
}
.menu-trigger:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.menu-trigger-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--terra);
  transition: transform .35s var(--ease);
}
.menu-trigger:hover .menu-trigger-dot { background: var(--terra-l); transform: scale(1.2); }
.menu-trigger.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.menu-trigger.is-active .menu-trigger-dot { background: var(--terra-l); }
.menu-burger { display: none; color: var(--ink); }

.nav-cta {
  font-family: var(--b); font-weight: 500; font-size: 12px;
  letter-spacing: .04em; padding: 12px 24px; border-radius: 999px;
  background: var(--terra); color: var(--paper);
  border: 1px solid var(--terra);
  transition: all .35s var(--ease); white-space: nowrap;
}
.nav-cta:hover { background: var(--terra-d); border-color: var(--terra-d); transform: translateY(-1px); }

/* ─── MENU OVERLAY ─────────────────────────── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 180;
  background-color: var(--ink);
  background-image: radial-gradient(circle at 50% 50%, rgba(181,74,42,.08) 0%, transparent 60%);
  background-size: 120% 120%; background-position: 50% 50%;
  color: var(--paper);
  padding: 120px 60px 60px;
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-12px);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s linear .5s;
}
.menu-overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s;
}
.menu-inner {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  max-width: 1440px; margin: 0 auto; width: 100%;
  flex: 1; align-content: start; padding-top: 40px;
}
.menu-eyebrow {
  font-family: var(--b); font-weight: 500; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra-l); margin-bottom: 32px;
  opacity: 0; transform: translateY(10px);
  transition: all .5s var(--ease) .15s;
}
.menu-overlay.is-open .menu-eyebrow { opacity: 1; transform: translateY(0); }
.menu-list { list-style: none; }
.menu-list li {
  overflow: hidden; opacity: 0; transform: translateY(20px);
  transition: all .5s var(--ease);
}
.menu-overlay.is-open .menu-list li { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-list li:nth-child(1) { transition-delay: .20s; }
.menu-overlay.is-open .menu-list li:nth-child(2) { transition-delay: .26s; }
.menu-overlay.is-open .menu-list li:nth-child(3) { transition-delay: .32s; }
.menu-overlay.is-open .menu-list li:nth-child(4) { transition-delay: .38s; }
.menu-overlay.is-open .menu-list li:nth-child(5) { transition-delay: .44s; }
.menu-list a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 14px 0;
  font-family: var(--u); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.1; letter-spacing: -.03em;
  color: var(--paper);
  border-bottom: 1px solid rgba(250,247,242,.1);
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.menu-list a:hover { color: var(--terra-l); padding-left: 12px; }
.menu-arrow {
  font-family: var(--b); font-size: 16px; font-weight: 300;
  color: var(--terra-l); opacity: 0;
  transform: translate(-8px, 8px);
  transition: all .35s var(--ease);
}
.menu-list a:hover .menu-arrow { opacity: 1; transform: translate(0, 0); }
.menu-list-sub a {
  font-family: var(--s); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.5vw, 32px);
  color: rgba(250,247,242,.72);
  border-bottom: 1px solid rgba(250,247,242,.06);
}
.menu-list-sub a:hover { color: var(--terra-l); }
.menu-footer {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  max-width: 1440px; margin: 0 auto; width: 100%;
  padding-top: 60px; border-top: 1px solid rgba(250,247,242,.1);
  opacity: 0; transform: translateY(20px);
  transition: all .5s var(--ease) .5s;
}
.menu-overlay.is-open .menu-footer { opacity: 1; transform: translateY(0); }
.menu-footer-label {
  font-family: var(--s); font-style: italic; font-weight: 300;
  font-size: 22px; color: rgba(250,247,242,.7); margin-bottom: 16px;
}
.menu-footer-meta {
  font-family: var(--b); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(250,247,242,.5); line-height: 2;
}
.menu-cta { background: var(--terra); }
.menu-cta:hover { background: var(--terra-d); }
.menu-overlay .menu-list a { cursor: none; }
.menu-cursor {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: var(--terra-l); pointer-events: none; z-index: 999;
  opacity: 0; transform: translate(-50%, -50%);
  transition: opacity .2s var(--ease), transform .1s linear;
  mix-blend-mode: difference;
}
.menu-cursor.is-visible { opacity: 1; }

/* ─── SOCIAL ICONS ─────────────────────────── */
.footer-social { display: flex; gap: 18px; align-items: center; margin: 16px 0; }
.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(250,247,242,.2);
  color: rgba(250,247,242,.55);
  transition: all .3s var(--ease);
}
.social-icon:hover { color: var(--terra-l); border-color: var(--terra-l); transform: translateY(-2px); }

/* ════════════════════════════════════════════════════════════════════
   SECTION 1 — HERO CINÉMA (fond sombre, widget Lemcal éclairé)
   ════════════════════════════════════════════════════════════════════ */
.reserve-hero {
  position: relative;
  background: var(--cinema);
  color: var(--paper);
  padding: 160px 32px 120px;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

/* Grain SVG */
.reserve-grain {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Halo radial terracotta — pose-le centré sous le widget */
.reserve-halo {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(
    ellipse 1100px 700px at 50% 65%,
    rgba(181, 74, 42, .28) 0%,
    rgba(181, 74, 42, .12) 30%,
    transparent 65%
  );
  mix-blend-mode: screen;
  animation: haloBreathe 9s ease-in-out infinite;
}
@keyframes haloBreathe {
  0%, 100% { opacity: .9; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.04); }
}

/* Vignette coins sombres */
.reserve-vignette {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.55) 100%);
}

/* Particules flottantes terracotta clair */
.reserve-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.reserve-particles span {
  position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--terra-l);
  box-shadow: 0 0 12px 2px rgba(232,162,132,.6);
  opacity: .35;
  animation: particleFloat 7s ease-in-out infinite;
}
.reserve-particles span:nth-child(1) { top: 18%; left: 12%; animation-delay: 0s;   animation-duration: 7s; }
.reserve-particles span:nth-child(2) { top: 38%; left: 86%; animation-delay: 1.4s; animation-duration: 8s; }
.reserve-particles span:nth-child(3) { top: 62%; left: 8%;  animation-delay: 2.7s; animation-duration: 6.5s; }
.reserve-particles span:nth-child(4) { top: 78%; left: 78%; animation-delay: 4.2s; animation-duration: 7.5s; }
.reserve-particles span:nth-child(5) { top: 28%; left: 52%; animation-delay: 3.1s; animation-duration: 8.5s; width: 3px; height: 3px; }
@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0);     opacity: .25; }
  50%      { transform: translate(8px, -22px); opacity: .75; }
}

/* Contenu hero */
.reserve-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}

/* Eyebrow */
.reserve-eyebrow {
  font-family: var(--b); font-weight: 500; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra-l);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 12px;
}
.reserve-eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: currentColor; opacity: .6;
}

/* Titre principal */
.reserve-title {
  font-family: var(--u); font-weight: 400;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 1.02; letter-spacing: -.03em;
  color: var(--paper);
  text-align: center;
  margin: 0 0 36px;
}
.reserve-title em {
  font-family: var(--s); font-style: italic; font-weight: 400;
  color: var(--terra-l);
  letter-spacing: -.01em;
}

/* Mask-line reveal */
.mask-line {
  display: block; overflow: hidden;
  padding-bottom: .14em; margin-bottom: -.14em;
}
.mask-inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.05s cubic-bezier(.2,.8,.2,1);
}
.mask-line.in .mask-inner { transform: translateY(0); }
.mask-line.d1 .mask-inner { transition-delay: .15s; }
.mask-line.d2 .mask-inner { transition-delay: .30s; }

/* Sous-phrase */
.reserve-subtitle {
  font-family: var(--s); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(250,247,242,.82);
  max-width: 620px;
  text-align: center;
  margin: 0 auto 64px;
}

/* Méta 3 colonnes */
.reserve-meta {
  display: flex; justify-content: center;
  gap: clamp(36px, 6vw, 88px);
  margin-bottom: 96px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(232,162,132,.18);
  width: 100%; max-width: 720px;
}
.reserve-meta-item {
  display: flex; flex-direction: column; gap: 8px; text-align: center;
}
.reserve-meta-label {
  font-family: var(--b); font-weight: 500;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(232,162,132,.55);
}
.reserve-meta-value {
  font-family: var(--u); font-weight: 400; font-size: 17px;
  color: var(--paper); letter-spacing: -.01em;
}

/* ─── Widget Lemcal éclairé ─────────────────────────── */
.reserve-widget {
  position: relative;
  width: 100%; max-width: 880px;
  margin: 0 auto;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease) .3s, transform 1s var(--ease) .3s;
}
.reserve-widget.is-loaded { opacity: 1; transform: translateY(0); }

/* Halo terracotta autour du widget */
.reserve-widget::before {
  content: "";
  position: absolute; inset: -80px;
  background: radial-gradient(ellipse at center, rgba(181,74,42,.35) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

/* Container du widget Lemcal */
.lemcal-embed-booking-calendar {
  background: var(--paper) !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(181, 74, 42, .25),
    0 30px 80px rgba(0, 0, 0, .45);
  width: 100%;
  min-height: 600px;
  display: block;
}

/* ─── Détournement visuel du banner Lemcal orange → terracotta ─────────── */
/* Sélecteurs défensifs : Lemcal injecte du HTML dynamiquement, on cible
   plusieurs patterns possibles (banner, header, cover, hero, inline orange).  */
.lemcal-embed-booking-calendar [class*="banner"],
.lemcal-embed-booking-calendar [class*="header"],
.lemcal-embed-booking-calendar [class*="cover"],
.lemcal-embed-booking-calendar [class*="hero"],
.lemcal-embed-booking-calendar div[style*="rgb(255"],
.lemcal-embed-booking-calendar [style*="background"][style*="orange"] {
  background: var(--terra) !important;
  background-color: var(--terra) !important;
  background-image: linear-gradient(135deg, #B54A2A 0%, #8F3B20 100%) !important;
}

/* Mention discrète sous le widget */
.reserve-widget-note {
  display: block;
  margin: 32px auto 0;
  font-family: var(--s); font-style: italic; font-weight: 300;
  font-size: 14px; line-height: 1.6;
  color: rgba(232,162,132,.7);
  text-align: center;
}
.reserve-widget-note a { color: inherit; border-bottom: 1px solid rgba(232,162,132,.3); transition: color .25s var(--ease), border-color .25s var(--ease); }
.reserve-widget-note a:hover { color: var(--terra-l); border-color: var(--terra-l); }

/* ════════════════════════════════════════════════════════════════════
   SECTION 2 — RÉASSURANCE (fond crème, 3 cards)
   ════════════════════════════════════════════════════════════════════ */
.reserve-reassurance {
  background: var(--paper);
  padding: 140px 32px 160px;
  position: relative;
}
.reserve-reassurance-inner {
  max-width: 1200px; margin: 0 auto;
}
.reserve-reassurance-head {
  text-align: center;
  margin-bottom: 96px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.reserve-reassurance-eyebrow {
  font-family: var(--b); font-weight: 500; font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.reserve-reassurance-eyebrow::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px; background: currentColor; opacity: .55;
}
.reserve-reassurance-title {
  font-family: var(--u); font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--ink);
}
.reserve-reassurance-title em {
  font-family: var(--s); font-style: italic; font-weight: 400;
  color: var(--terra);
}
.reserve-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.reserve-reassurance-item {
  background: var(--paper-2);
  border: 1px solid var(--line-s);
  border-radius: 6px;
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.reserve-reassurance-item.in { opacity: 1; transform: translateY(0); }
.reserve-reassurance-item:hover {
  border-color: rgba(181,74,42,.35);
  box-shadow: 0 18px 48px -22px rgba(143,59,32,.35);
  transform: translateY(-4px);
}
.reserve-reassurance-number {
  font-family: var(--u); font-weight: 400;
  font-size: clamp(64px, 7vw, 92px);
  line-height: 1; letter-spacing: -.04em;
  color: var(--terra);
}
.reserve-reassurance-name {
  font-family: var(--u); font-weight: 500;
  font-size: 22px; letter-spacing: -.01em; line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.reserve-reassurance-text {
  font-family: var(--b); font-weight: 400;
  font-size: 15px; line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* ─── BOUTON STICKY CACHÉ (défensif) ─────────────────────────── */
.sticky-cta,
.sticky-cta-reserve,
[id*="sticky-cta"],
[class*="sticky-cta-reserve"] {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER (cohérent avec les autres pages)
   ════════════════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(250,247,242,.3);
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
footer .row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-family: var(--b); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
}
footer .row em {
  font-family: var(--s); font-style: italic; font-weight: 300;
  text-transform: none; color: var(--terra-l); opacity: .55;
}
.seo-footer {
  max-width: 900px; margin: 0 auto;
  padding: 40px 20px 20px;
  border-top: 1px solid rgba(250,247,242,.08);
}
.seo-footer p {
  font-family: var(--b); font-size: 12px; line-height: 1.7;
  color: rgba(250,247,242,.35);
  text-align: center; max-width: 72ch; margin: 0 auto;
}
.footer-link {
  color: inherit; opacity: .7;
  transition: opacity .25s var(--ease);
}
.footer-link:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .reserve-reassurance-grid {
    grid-template-columns: 1fr 1fr;
  }
  .reserve-reassurance-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .wrap { padding: 0 32px; }
  nav.top { padding: 14px 32px; display: flex; justify-content: space-between; }
  .nav-center { display: none; }
  .menu-overlay { padding: 100px 32px 32px; }
  .menu-inner { grid-template-columns: 1fr; gap: 48px; }
  .menu-footer { grid-template-columns: 1fr; gap: 32px; }
  .menu-list a { font-size: clamp(32px, 8vw, 48px); }
  .menu-list-sub a { font-size: clamp(18px, 4vw, 24px); }
}

@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  nav.top { padding: 12px 20px; }
  .nav-cta { padding: 10px 18px; font-size: 11px; }
  .menu-trigger { padding: 9px 14px 9px 16px; font-size: 11px; }
  .menu-trigger-label { display: none; }
  .menu-trigger-dot { display: none; }
  .menu-burger { display: block; }
  .menu-trigger {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; padding: 0;
  }
  .logo-img { height: 20px; }

  .reserve-hero { padding: 120px 20px 80px; }
  .reserve-eyebrow { font-size: 10px; margin-bottom: 24px; }
  .reserve-title { font-size: clamp(40px, 11vw, 64px); }
  .reserve-subtitle { font-size: 17px; margin-bottom: 48px; }
  .reserve-meta { gap: 28px; margin-bottom: 64px; padding-top: 16px; }
  .reserve-meta-value { font-size: 15px; }
  .reserve-widget::before { inset: -40px; }
  .lemcal-embed-booking-calendar { min-height: 720px; }

  .reserve-reassurance { padding: 80px 20px 100px; }
  .reserve-reassurance-head { margin-bottom: 56px; }
  .reserve-reassurance-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .reserve-reassurance-item:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }
  .reserve-reassurance-item { padding: 36px 28px; }
  .reserve-reassurance-number { font-size: 64px; }
}

@media (max-width: 480px) {
  .menu-overlay { padding: 80px 20px 24px; }
  .menu-list a { font-size: clamp(28px, 9vw, 40px); }
  .reserve-hero { padding: 100px 16px 64px; }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reserve-halo,
  .reserve-particles span,
  .mask-inner,
  .reserve-widget,
  .reserve-reassurance-item {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* ─── Fix navbar : espace entre liens centraux et boutons droite ─── */
.nav { column-gap: 32px; }
.nav__links { gap: 28px !important; }
.nav__right { padding-left: 8px; }

/* ─── Bouton fermer (X) défensif dans le menu plein écran ─── */
.menu-close-x {
  position: absolute; top: 24px; right: 24px;
  background: transparent;
  border: 1px solid rgba(250, 247, 242, .4);
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper, #FAF7F2); cursor: pointer;
  z-index: 50;
  transition: background .25s, border-color .25s, transform .25s;
}
.menu-close-x:hover {
  background: rgba(232, 162, 132, .12);
  border-color: var(--terra-l, #E8A284);
  transform: scale(1.06);
}
@media (max-width: 768px) {
  .menu-close-x { top: 14px; right: 14px; width: 40px; height: 40px; }
}

/* ════════════════════════════════════════════════════════════════════
   NAVBAR COMMUNE (.nav structure) — alignée sur les autres pages
   Les anciennes règles `nav.top` au-dessus deviennent inactives.
   ════════════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 250;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 22px 48px;
  column-gap: 32px;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background .4s var(--ease), color .4s var(--ease), padding .3s var(--ease);
  color: var(--paper);
}
.nav--paper {
  background: rgba(250, 247, 242, .75);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  color: var(--ink);
  padding: 16px 48px;
  border-bottom: 1px solid var(--line-s);
}
.nav__logo { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo-img { height: 28px; width: auto; display: block; filter: brightness(0) invert(1); transition: filter .4s var(--ease); }
.nav--paper .nav__logo-img { filter: none; }

.nav__links { display: flex; gap: 28px; justify-content: center; }
.nav__link {
  font-family: var(--b); font-size: 13px; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; bottom: 0; left: 50%; height: 1px; width: 0;
  background: currentColor; transition: width .3s var(--ease), left .3s var(--ease);
}
.nav__link:hover::after { width: 100%; left: 0; }
.nav__link.is-active::after { width: 100%; left: 0; }
.nav__link.is-active { color: var(--terra-l); }
.nav--paper .nav__link.is-active { color: var(--terra); }

.nav__right { justify-self: end; display: inline-flex; align-items: center; gap: 14px; padding-left: 8px; }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--b); font-size: 13px; font-weight: 500;
  background: var(--terra); color: var(--paper);
  padding: 11px 18px; border-radius: 2px;
  transition: background .2s var(--ease);
}
.nav__cta:hover { background: var(--terra-d); }
.nav__cta .arrow { transition: transform .25s var(--ease); display: inline-block; }
.nav__cta:hover .arrow { transform: translate(2px, -2px); }

/* Override menu-trigger pour la nav commune (texte clair sur fond sombre par défaut) */
.nav .menu-trigger {
  background: transparent; border: 1px solid rgba(250,247,242,.35);
  border-radius: 2px; padding: 9px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--b); font-weight: 500; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--paper);
  cursor: pointer; transition: all .35s var(--ease);
}
.nav--paper .menu-trigger { color: var(--ink); border-color: var(--line); }
.nav .menu-trigger:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav--paper .menu-trigger:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav .menu-trigger-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra-l); transition: transform .35s var(--ease); }
.nav--paper .menu-trigger-dot { background: var(--terra); }
.nav .menu-trigger:hover .menu-trigger-dot { transform: scale(1.3); }

@media (max-width: 900px) {
  .nav { padding: 14px 20px; grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__logo-img { height: 24px; }
  .nav__right { gap: 10px; padding-left: 0; }
  .nav__cta { padding: 9px 14px; font-size: 12px; }
  .nav .menu-trigger { padding: 8px 12px; font-size: 11px; }
  .menu-trigger-label { display: none; }
}
