/* ============================================
   KADABRA ESCAPE - SHARED STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Bebas+Neue&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg-deep:        #0a0807;
  --bg-soft:        #15110f;
  --bg-card:        #1c1714;
  --ink:            #f5f1e8;
  --ink-soft:       #c9bfae;
  --ink-mute:       #7a7068;
  /* POISON — verde Joker (sustituye al antiguo "blood") */
  --joker:          #6ab43e;
  --joker-deep:     #3f7a22;
  --joker-glow:     #9eea5a;
  --joker-acid:     #c8ff4d;
  --joker-purple:   #6e3aa8;
  /* aliases para compatibilidad con código anterior */
  --blood:          #6ab43e;
  --blood-deep:     #3f7a22;
  --blood-glow:     #9eea5a;
  /* JAIPUR — dorado + naranja Bollywood */
  --gold:           #d4a849;
  --gold-deep:      #9c7a2a;
  --gold-glow:      #f0c668;
  --bolly:          #e87522;
  --bolly-deep:     #9f4316;
  --bolly-glow:     #ffb15f;
  --bolly-orange:   #ff7a2a;
  --bolly-saffron:  #ffb547;
  --border:         #2a221d;
  --grain:          rgba(255, 240, 220, 0.025);

  --font-display:   'Cinzel', 'Times New Roman', serif;
  --font-display-2: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:      'Crimson Pro', 'Georgia', serif;

  --max:            1280px;
  --gutter:         clamp(20px, 4vw, 48px);

  --ease:           cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.nav-open {
  overflow: hidden;
}

/* Subtle film-grain overlay on whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(106, 180, 62, 0.04), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(232, 117, 34, 0.035), transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.94 0 0 0 0 0.86 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

main, header, footer, section { position: relative; z-index: 2; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-display-2);
  font-size: 0.95rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  position: relative;
  padding-left: 56px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--joker-glow); }

img, svg, iframe {
  max-width: 100%;
}

:focus-visible {
  outline: 2px solid var(--gold-glow);
  outline-offset: 4px;
}

/* ============================================
   NAVBAR
   ============================================ */

.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  background: linear-gradient(180deg, rgba(10,8,7,0.92), rgba(10,8,7,0.6) 70%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 168, 73, 0.08);
  transition: all .4s var(--ease);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.55));
}
.brand:hover { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  list-style: none;
}

.mobile-menu-panel {
  display: none;
}

.nav-links a {
  font-family: var(--font-display-2);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--joker);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--joker);
  color: var(--bg-deep) !important;
  padding: 11px 16px !important;
  border-radius: 0;
  font-family: var(--font-display-2);
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
  border: 1px solid var(--joker);
  font-weight: 700;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: transparent;
  color: var(--joker-glow) !important;
  box-shadow: 0 0 24px rgba(106, 180, 62, 0.55);
}

.nav-cta-jaipur {
  background: var(--gold);
  border-color: var(--gold);
}

.nav-cta-jaipur:hover {
  color: var(--gold-glow) !important;
  box-shadow: 0 0 24px rgba(212, 168, 73, 0.45);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--ink);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 1.4rem;
}

.nav-wrap.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10,8,7,0.96);
  box-shadow: 0 18px 48px rgba(0,0,0,0.28);
}

/* megamenu */
.has-mega {
  position: static;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mega-trigger::before {
  content: '▾';
  font-size: 0.7rem;
  color: var(--gold);
}

.mega-menu {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: calc(100% + 12px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(212, 168, 73, 0.08), transparent 45%),
    rgba(21, 17, 15, 0.98);
  border: 1px solid var(--border);
  box-shadow: 0 28px 80px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-panel {
  padding: 22px;
  border: 1px solid rgba(245, 241, 232, 0.08);
  background: rgba(10, 8, 7, 0.42);
}

.mega-panel.featured {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(106,180,62,0.22), transparent 42%),
    rgba(10, 8, 7, 0.55);
}

.mega-kicker {
  display: block;
  font-family: var(--font-display-2);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.mega-panel h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.mega-panel p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.mega-links {
  display: grid;
  gap: 8px;
  list-style: none;
}

.mega-links a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(245, 241, 232, 0.07);
}

.mega-links a::after {
  content: '→';
  position: static;
  width: auto;
  height: auto;
  background: none;
  color: var(--gold);
}

.mega-links a:hover {
  color: var(--ink);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 38px;
  font-family: var(--font-display-2);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 1rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .35s var(--ease);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { color: var(--bg-deep); }
.btn:hover::before { transform: translateX(0); }
.btn:active,
.nav-cta:active,
.cat-pill:active,
.faq-q:active {
  transform: translateY(1px);
}

.btn-blood {
  background: var(--joker);
  border-color: var(--joker);
  color: var(--bg-deep);
  font-weight: 700;
}
.btn-blood::before { background: var(--joker-glow); }
.btn-blood:hover { color: var(--bg-deep); box-shadow: 0 0 30px rgba(106, 180, 62, 0.55); }

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-deep);
}
.btn-gold::before { background: var(--gold-glow); }
.btn-gold:hover { color: var(--bg-deep); box-shadow: 0 0 30px rgba(212, 168, 73, 0.45); }

.btn-bolly {
  background: var(--bolly);
  border-color: var(--bolly);
  color: var(--ink);
  font-weight: 700;
}
.btn-bolly::before { background: var(--bolly-deep); }
.btn-bolly:hover { color: var(--ink); box-shadow: 0 0 30px rgba(232, 117, 34, 0.55); }

/* ============================================
   FOOTER
   ============================================ */

footer.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 80px var(--gutter) 30px;
  margin-top: 120px;
  position: relative;
}

footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 48px;
}

.footer-grid h4 {
  font-family: var(--font-display-2);
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-grid p, .footer-grid li {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.footer-grid ul { list-style: none; }
.footer-grid a:hover { color: var(--gold-glow); }

.footer-bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-mute); }
.footer-bottom a:hover { color: var(--ink); }

/* ============================================
   SECTIONS / GENERIC
   ============================================ */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 120px var(--gutter);
}

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 20px 0 24px;
}

.section-lede {
  color: var(--ink-soft);
  font-size: 1.2rem;
  max-width: 640px;
  line-height: 1.7;
}

/* ============================================
   BOOKING ENTRY SECTION
   ============================================ */

.booking-entry {
  padding: 120px var(--gutter);
  background:
    radial-gradient(ellipse at 10% 10%, rgba(106, 180, 62, 0.1), transparent 42%),
    radial-gradient(ellipse at 90% 20%, rgba(212, 168, 73, 0.12), transparent 48%),
    var(--bg-soft);
}

.booking-entry-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.booking-entry-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: 46px;
}

.booking-entry h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 18px;
  text-wrap: balance;
}

.booking-entry-head p {
  color: var(--ink-soft);
  font-size: 1.16rem;
  line-height: 1.75;
  max-width: 540px;
}

.booking-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.booking-choice {
  min-height: 420px;
  padding: clamp(28px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  isolation: isolate;
}

.booking-choice::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.9;
  z-index: -1;
}

.booking-choice.poison::before {
  background:
    radial-gradient(ellipse at 82% 15%, rgba(158, 234, 90, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(106, 180, 62, 0.14), rgba(10, 8, 7, 0.78) 58%);
}

.booking-choice.jaipur::before {
  background:
    radial-gradient(ellipse at 76% 18%, rgba(240, 198, 104, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(232, 117, 34, 0.12), rgba(10, 8, 7, 0.78) 58%);
}

.booking-choice:hover {
  transform: translateY(-4px);
  border-color: var(--gold-deep);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}

.booking-choice.poison:hover {
  border-color: var(--joker);
}

.booking-choice-kicker {
  font-family: var(--font-display-2);
  color: var(--gold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 18px;
  display: block;
}

.booking-choice h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  max-width: 520px;
  text-wrap: balance;
}

.booking-choice p {
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 580px;
}

.booking-choice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
  list-style: none;
}

.booking-choice-meta li {
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: rgba(10, 8, 7, 0.42);
  color: var(--ink-soft);
  padding: 8px 12px;
  font-family: var(--font-display-2);
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-assist {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 168, 73, 0.06);
  color: var(--ink-soft);
  line-height: 1.65;
}

.booking-assist a {
  color: var(--gold-glow);
  font-weight: 700;
}

.visit-primer {
  padding: 120px var(--gutter);
  background: var(--bg-deep);
}

.visit-primer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.visit-primer h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  margin: 18px 0 22px;
  text-wrap: balance;
}

.visit-primer p {
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 560px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.visit-card {
  padding: 26px;
  border: 1px solid var(--border);
  background: rgba(28, 23, 20, 0.72);
}

.visit-card .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
}

.visit-card h3 {
  font-family: var(--font-display-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.visit-card p {
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.calendar-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#app {
  min-width: min(100%, 320px);
}

.form-note {
  display: block;
  color: var(--ink-mute);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 14px;
}

/* divider ornament */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold);
  font-size: 1.4rem;
  margin: 30px 0;
  opacity: 0.7;
}
.ornament::before, .ornament::after {
  content: '';
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 920px) {
  .nav-wrap {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(10,8,7,0.96);
  }

  .nav-inner {
    gap: 16px;
  }

  .brand,
  .nav-toggle {
    position: relative;
    z-index: 102;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 101;
    min-height: 100dvh;
    background:
      radial-gradient(ellipse at 12% 18%, rgba(106, 180, 62, 0.18), transparent 42%),
      radial-gradient(ellipse at 86% 16%, rgba(212, 168, 73, 0.16), transparent 40%),
      linear-gradient(180deg, rgba(10,8,7,0.99), rgba(21,17,15,0.99));
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 82px var(--gutter) 24px;
    gap: 2px;
    transform: translateY(-102%);
    opacity: 0;
    visibility: hidden;
    transition: transform .45s var(--ease), opacity .32s var(--ease), visibility .32s;
    border-top: none;
    overflow-y: hidden;
    max-height: 100dvh;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle { display: grid; place-items: center; }

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    font-size: clamp(1.22rem, 6vw, 1.86rem);
    letter-spacing: 0.08em;
    text-align: center;
    border-bottom: none;
  }

  .nav-links a::after {
    display: none;
  }

  .has-mega,
  .nav-cta-item,
  .desktop-reserve {
    display: none;
  }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega-trigger::before {
    content: '';
    display: none;
  }

  .mega-menu {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 4px 0 2px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-width: none;
    width: 100%;
  }

  .mega-panel {
    padding: 0;
    border: none;
    background: transparent;
  }

  .mega-panel.featured {
    background: transparent;
  }

  .mega-panel:nth-child(3),
  .mega-panel:nth-child(2) .mega-links li:nth-child(1),
  .mega-panel:nth-child(2) .mega-links li:nth-child(4) {
    display: none;
  }

  .mega-kicker,
  .mega-panel h3,
  .mega-panel p {
    display: none;
  }

  .mega-links {
    gap: 0;
  }

  .mega-links a {
    min-height: 26px;
    align-items: center;
    padding: 4px 0;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .mobile-menu-panel {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
  }

  .mobile-room-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .nav-links .mobile-room-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 5px 0;
    border: none;
    background: transparent;
    color: var(--ink) !important;
    font-family: var(--font-display-2);
    font-size: clamp(1.42rem, 7vw, 2.08rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    transition: color .25s var(--ease), transform .25s var(--ease);
  }

  .nav-links .mobile-room-card::before {
    display: none;
  }

  .nav-links .mobile-room-card:hover,
  .nav-links .mobile-room-card:focus-visible {
    transform: translateY(-1px);
    color: var(--gold) !important;
  }

  .mobile-menu-contact {
    display: grid;
    justify-items: center;
    gap: 5px;
    margin-top: 34px;
    padding-top: 0;
    color: var(--ink-mute);
    font-family: var(--font-display-2);
    text-align: center;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-menu-contact span {
    font-size: 0.72rem;
    color: var(--gold);
  }

  .mobile-menu-contact a {
    color: var(--ink) !important;
    font-size: clamp(0.98rem, 4.8vw, 1.25rem);
    letter-spacing: 0.12em;
    padding: 0;
  }

  .booking-entry {
    padding: 90px var(--gutter);
  }

  .booking-entry-head,
  .booking-choice-grid,
  .visit-primer-inner,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .booking-choice {
    min-height: auto;
  }

  .cards-grid,
  .mc-grid,
  .voucher-grid,
  .steps,
  .form-row {
    grid-template-columns: 1fr !important;
  }

  .steps::before {
    display: none;
  }

  .page-hero,
  .gift-hero,
  .booking-hero {
    padding-top: 128px !important;
  }

  .ccard,
  .form-card,
  .schedule,
  .voucher,
  .notice-card {
    padding-left: clamp(22px, 6vw, 36px) !important;
    padding-right: clamp(22px, 6vw, 36px) !important;
  }

  .bh-meta .pill,
  .room-meta div {
    letter-spacing: 0.16em;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 18px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 80px var(--gutter); }
  body { font-size: 17px; }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .btn,
  .nav-cta {
    width: 100%;
    justify-content: center;
    padding-left: 18px !important;
    padding-right: 18px !important;
    letter-spacing: 0.12em;
    min-height: 58px;
    text-align: center;
  }

  .eyebrow {
    padding-left: 42px;
    letter-spacing: 0.2em;
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .eyebrow::before {
    width: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .calendar-wrap {
    padding: 18px !important;
  }

  .booking-choice-meta li {
    width: 100%;
  }

  .booking-entry,
  .visit-primer {
    padding: 76px var(--gutter);
  }

  .booking-entry-head {
    gap: 18px;
    margin-bottom: 28px;
  }

  .booking-choice {
    min-height: 0;
    padding: 24px;
  }

  .booking-choice h3,
  .visit-primer h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .booking-choice-meta {
    margin: 22px 0 28px;
  }

  .booking-assist {
    padding: 18px 20px;
  }

  .visit-card {
    padding: 22px;
  }

  .page-hero h1,
  .gift-hero h1,
  .booking-hero h1 {
    overflow-wrap: anywhere;
  }

  .page-hero p,
  .gift-hero p,
  .bh-content p,
  .notice-card p,
  .faq-a {
    font-size: 1rem !important;
    line-height: 1.72 !important;
  }

  .bh-meta .pill {
    width: 100%;
    justify-content: flex-start;
  }

  .poster-bottom {
    padding: 22px !important;
  }

  .poster-bottom h2 {
    font-size: 1.8rem !important;
  }

  .faq-q {
    font-size: 1.05rem !important;
    line-height: 1.35;
    align-items: flex-start !important;
  }

  .schedule li,
  .voucher-specs li {
    display: grid !important;
    gap: 4px;
  }

  footer.site-footer {
    margin-top: 0;
    padding-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
