/* ================================================
   BOUNCE IT UP — GLOBAL STYLESHEET
   bounceitup.com | Livonia, MI
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------ */
:root {
  /* Brand Colors */
  --c-electric-blue: #009DFF;
  --c-deep-blue:     #003B8F;
  --c-navy:          #06172E;
  --c-cyan:          #27F5FF;
  --c-orange:        #FF7A00;
  --c-red:           #F5222D;
  --c-yellow:        #FFD400;
  --c-white:         #F7FBFF;
  --c-black:         #0B0F14;

  /* Surface / Stroke */
  --surface:         rgba(255,255,255,0.04);
  --surface-2:       rgba(255,255,255,0.07);
  --border:          rgba(39,245,255,0.14);
  --border-warm:     rgba(255,122,0,0.25);

  /* Glow Presets */
  --glow-cyan:   0 0 18px rgba(39,245,255,.55), 0 0 40px rgba(39,245,255,.25), 0 0 80px rgba(39,245,255,.08);
  --glow-orange: 0 0 18px rgba(255,122,0,.6),   0 0 40px rgba(255,122,0,.3);
  --glow-blue:   0 0 18px rgba(0,157,255,.55),  0 0 40px rgba(0,157,255,.25);
  --glow-yellow: 0 0 18px rgba(255,212,0,.55),  0 0 40px rgba(255,212,0,.25);

  /* Typography */
  --ff-display: 'Fredoka One', cursive;
  --ff-ui:      'Nunito', sans-serif;
  --ff-body:    'Inter', sans-serif;

  /* Layout */
  --section-py:  clamp(64px, 8vw, 120px);
  --container:   min(100% - 2.5rem, 1280px);
  --r:           16px;
  --r-lg:        24px;
  --r-xl:        32px;
  --r-pill:      999px;

  /* Motion */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:    0.2s;
  --dur-med:     0.4s;
  --dur-slow:    0.7s;
}

/* ------------------------------------------------
   2. RESET + BASE
   ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
  text-wrap: pretty;
}
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ------------------------------------------------
   3. LAYOUT UTILITIES
   ------------------------------------------------ */
.container { width: var(--container); margin-inline: auto; }
.section    { padding-block: var(--section-py); }
.section-alt { background: var(--c-navy); }
.section-deep { background: var(--c-black); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ------------------------------------------------
   4. TYPOGRAPHY
   ------------------------------------------------ */
.eyebrow {
  display: block;
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  color: var(--c-white);
}
.section-body {
  font-size: 1.1rem;
  color: rgba(247,251,255,.62);
  max-width: 580px;
  margin-inline: auto;
  margin-top: 14px;
  line-height: 1.7;
}
.section-header { margin-bottom: clamp(40px, 5vw, 72px); }

/* ------------------------------------------------
   5. BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ff-ui); font-weight: 800;
  font-size: 1rem; padding: 15px 30px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-fast) var(--ease-out);
  line-height: 1;
}
.btn-lg { font-size: 1.1rem; padding: 18px 38px; }
.btn-sm { font-size: .875rem; padding: 10px 20px; }

.btn-primary {
  background: var(--c-orange); color: #fff;
  box-shadow: var(--glow-orange);
}
.btn-primary:hover { transform: scale(1.06); box-shadow: 0 0 30px rgba(255,122,0,.8), 0 0 60px rgba(255,122,0,.4); }

.btn-outline {
  background: transparent; color: var(--c-cyan);
  border-color: var(--c-cyan); box-shadow: var(--glow-cyan);
}
.btn-outline:hover { transform: scale(1.05); background: rgba(39,245,255,.08); }

.btn-ghost {
  background: rgba(255,255,255,.07); color: var(--c-white);
  border-color: rgba(255,255,255,.12);
}
.btn-ghost:hover { background: rgba(255,255,255,.13); transform: scale(1.04); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.centered { justify-content: center; }

/* ------------------------------------------------
   6. NAVIGATION
   ------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background var(--dur-med) var(--ease-out), padding var(--dur-med), border-bottom var(--dur-med);
}
.nav.scrolled {
  background: rgba(6,23,46,.96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  width: var(--container); margin-inline: auto;
}
.nav-logo {
  font-family: var(--ff-display); font-size: 1.45rem;
  color: var(--c-white); line-height: 1; flex-shrink: 0;
}
.nav-logo span { color: var(--c-cyan); }
.nav-links {
  display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center;
}
.nav-links a {
  font-family: var(--ff-ui); font-weight: 600; font-size: .88rem;
  color: rgba(247,251,255,.72); padding: 8px 13px; border-radius: 10px;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-links a:hover, .nav-links a.active { color: var(--c-white); background: rgba(255,255,255,.08); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; z-index: 1001;
  /* WCAG 2.1 AA target size: keep the tap area at least 44x44 without
     changing how the icon looks. Padding does the work, not the bars. */
  align-items: center; justify-content: center;
  min-width: 44px; min-height: 44px; padding: 10px;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--c-white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(6,23,46,.98); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 2px;
  padding: 84px 20px calc(30px + env(safe-area-inset-bottom));
  overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--ff-display); font-size: 1.5rem; color: var(--c-white);
  padding: 9px 28px; border-radius: var(--r); text-align: center; flex-shrink: 0;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--c-cyan); background: rgba(39,245,255,.07); }
.mobile-nav .mobile-nav-cta { margin-top: 14px; flex-shrink: 0; }
/* When the drawer's content is short, center it vertically for balance */
@media (min-height: 760px) { .mobile-nav { justify-content: center; } }
/* Very short viewports: tighten further so everything is reachable */
@media (max-height: 620px) {
  .mobile-nav a { font-size: 1.3rem; padding: 7px 24px; }
  .mobile-nav { padding-top: 72px; }
}

/* ------------------------------------------------
   7. MOBILE BOTTOM CTA BAR
   ------------------------------------------------ */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  display: none;
  background: rgba(6,23,46,.97); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 8px 10px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}
.mobile-cta-bar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.mobile-cta-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-family: var(--ff-ui); font-weight: 700; font-size: .62rem;
  color: rgba(247,251,255,.8); padding: 8px 4px; border-radius: 10px;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.mobile-cta-bar a .bar-icon { font-size: 1.2rem; }
.mobile-cta-bar a.bar-primary { background: var(--c-orange); color: #fff; }
.mobile-cta-bar a:hover:not(.bar-primary) { background: var(--surface-2); }

/* ------------------------------------------------
   8. PHOTO PLACEHOLDER
   ------------------------------------------------ */
.ph {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(0,59,143,.7), rgba(6,23,46,1));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; border-radius: var(--r);
}
.ph::before {
  content: '';  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(39,245,255,.025) 40px, rgba(39,245,255,.025) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(39,245,255,.025) 40px, rgba(39,245,255,.025) 41px);
}
.ph-icon  { font-size: 2.2rem; opacity: .35; position: relative; z-index: 1; }
.ph-label {
  font-family: var(--ff-ui); font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(39,245,255,.4); border: 1px solid rgba(39,245,255,.2);
  padding: 5px 14px; border-radius: var(--r-pill); position: relative; z-index: 1;
}

/* ------------------------------------------------
   9. SCROLL REVEAL
   ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in    { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal-right.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; } .d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) { .reveal,.reveal-left,.reveal-right { opacity:1; transform:none; } }

/* ------------------------------------------------
   10. HERO
   ------------------------------------------------ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--c-black);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 65%, rgba(0,157,255,.13) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(39,245,255,.07) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 110%, rgba(0,59,143,.35) 0%, transparent 55%),
    var(--c-black);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(39,245,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39,245,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 75%);
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 8rem 1.5rem 4rem;
  max-width: 920px; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-ui); font-weight: 700; font-size: .78rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--c-cyan); border: 1px solid rgba(39,245,255,.3);
  background: rgba(39,245,255,.07); padding: 7px 18px;
  border-radius: var(--r-pill); margin-bottom: 1.75rem;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  line-height: 1.05; color: var(--c-white);
  text-shadow: 0 0 80px rgba(39,245,255,.18);
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--c-cyan); }
.hero-sub {
  font-family: var(--ff-ui); font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(247,251,255,.7); max-width: 620px;
  margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.75;
}
.hero-ctas { margin-bottom: 2.75rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.trust-pill {
  font-family: var(--ff-ui); font-size: .78rem; font-weight: 600;
  color: rgba(247,251,255,.62); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); padding: 6px 15px; border-radius: var(--r-pill);
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(247,251,255,.35); font-size: .72rem; font-family: var(--ff-ui);
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid; border-bottom: 2px solid; transform: rotate(45deg); opacity: .5; }

/* ------------------------------------------------
   11. INFO STRIP
   ------------------------------------------------ */
.info-strip { background: var(--c-navy); border-block: 1px solid var(--border); }
.info-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  width: var(--container); margin-inline: auto;
}
.info-cell {
  padding: 30px 24px; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 5px;
}
.info-cell:last-child { border-right: none; }
.info-label { font-family: var(--ff-ui); font-weight: 700; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--c-cyan); }
.info-value { font-family: var(--ff-display); font-size: 1.1rem; color: var(--c-white); }
.info-sub   { font-size: .8rem; color: rgba(247,251,255,.5); line-height: 1.5; }

/* ------------------------------------------------
   12. ZONE CARDS
   ------------------------------------------------ */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.zone-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  transition: transform var(--dur-med) var(--ease-spring), border-color var(--dur-med), box-shadow var(--dur-med);
}
.zone-card:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: var(--zone-c, var(--c-cyan));
  box-shadow: 0 12px 40px -8px var(--zone-c, var(--c-cyan));
}
.zone-accent { height: 3px; background: var(--zone-c, var(--c-cyan)); }
.zone-img    { width: 100%; aspect-ratio: 16/9; }
.zone-body   { padding: 18px 20px; }
.zone-name   { font-family: var(--ff-display); font-size: 1.3rem; color: var(--c-white); margin-bottom: 5px; transition: color var(--dur-fast); }
.zone-card:hover .zone-name { color: var(--zone-c, var(--c-cyan)); }
.zone-desc   { font-size: .85rem; color: rgba(247,251,255,.58); line-height: 1.55; }
/* Zone color vars */
.z-playscale { --zone-c: #27F5FF; }
.z-bounce    { --zone-c: #009DFF; }
.z-toddler   { --zone-c: #C084FC; }
.z-arcade    { --zone-c: #FFD400; }
.z-prize     { --zone-c: #FF7A00; }
.z-party     { --zone-c: #F5222D; }
.z-food      { --zone-c: #4ADE80; }

/* ------------------------------------------------
   13. WALKTHROUGH STEPS
   ------------------------------------------------ */
.walkthrough-list { max-width: 880px; margin-inline: auto; display: flex; flex-direction: column; gap: 0; }
.wt-step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 28px; padding: 36px 0; border-bottom: 1px solid var(--border); align-items: start;
}
.wt-step:last-child { border-bottom: none; }
.wt-num-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 4px; }
.wt-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-deep-blue), var(--c-electric-blue));
  border: 1px solid var(--c-cyan); box-shadow: var(--glow-cyan);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.2rem; color: var(--c-white); flex-shrink: 0;
}
.wt-line { flex: 1; width: 1px; background: linear-gradient(to bottom, rgba(39,245,255,.3), transparent); min-height: 60px; }
.wt-step:last-child .wt-line { display: none; }
.wt-body h3 { font-family: var(--ff-display); font-size: 1.55rem; color: var(--c-white); margin-bottom: 8px; }
.wt-body p  { font-size: .97rem; color: rgba(247,251,255,.62); line-height: 1.7; margin-bottom: 16px; }
.wt-photo   { width: 100%; aspect-ratio: 16/9; border-radius: var(--r); }

/* ------------------------------------------------
   14. PARTY PACKAGES
   ------------------------------------------------ */
.party-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.party-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 28px; position: relative; overflow: hidden;
  transition: transform var(--dur-med) var(--ease-spring), box-shadow var(--dur-med);
}
.party-card.featured { border-color: var(--c-orange); box-shadow: var(--glow-orange); }
.party-card.premium  { border-color: var(--c-yellow); }
.party-card:hover    { transform: translateY(-5px); }
.party-tag {
  display: inline-block; font-family: var(--ff-ui); font-weight: 700;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--r-pill); margin-bottom: 18px;
}
.tag-classic { background: rgba(39,245,255,.1);  color: var(--c-cyan); }
.tag-popular { background: rgba(255,122,0,.15); color: var(--c-orange); }
.tag-premium { background: rgba(255,212,0,.15); color: var(--c-yellow); }
.party-name  { font-family: var(--ff-display); font-size: 1.8rem; color: var(--c-white); margin-bottom: 8px; }
.party-price { font-family: var(--ff-display); font-size: 2.6rem; line-height: 1; color: var(--c-orange); margin-bottom: 4px; }
.party-price-note { font-size: .82rem; color: rgba(247,251,255,.4); margin-bottom: 24px; }
.party-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.party-features li { display: flex; align-items: flex-start; gap: 9px; font-size: .9rem; color: rgba(247,251,255,.72); }
.party-features li::before { content: '✓'; color: var(--c-cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.party-placeholder-note {
  font-size: .72rem; color: rgba(247,251,255,.3); text-align: center;
  padding: 6px; background: rgba(255,255,255,.03); border-radius: var(--r); margin-bottom: 16px;
}

/* ------------------------------------------------
   15. OPEN PLAY / PRICING
   ------------------------------------------------ */
.price-hero { text-align: center; padding-bottom: 48px; }
.price-big {
  font-family: var(--ff-display);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--c-cyan); line-height: 1;
  text-shadow: var(--glow-cyan);
}
.price-big-label { font-family: var(--ff-ui); font-weight: 700; font-size: 1.1rem; color: rgba(247,251,255,.6); margin-top: 6px; }
.membership-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.membership-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px; text-align: center;
  transition: transform var(--dur-med) var(--ease-spring), border-color var(--dur-med);
}
.membership-card:hover { transform: translateY(-4px); border-color: var(--c-cyan); }
.mc-price   { font-family: var(--ff-display); font-size: 2.5rem; color: var(--c-cyan); }
.mc-period  { font-family: var(--ff-ui); font-size: .85rem; color: rgba(247,251,255,.5); }
.mc-name    { font-family: var(--ff-display); font-size: 1.3rem; color: var(--c-white); margin: 8px 0; }
.mc-note    { font-size: .85rem; color: rgba(247,251,255,.55); }
.mc-save    { font-family: var(--ff-ui); font-weight: 700; font-size: .75rem; color: var(--c-yellow); background: rgba(255,212,0,.12); padding: 3px 10px; border-radius: var(--r-pill); margin-top: 8px; display: inline-block; }

/* ------------------------------------------------
   16. CONCESSIONS / MENU
   ------------------------------------------------ */
.menu-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.menu-tab {
  font-family: var(--ff-ui); font-weight: 700; font-size: .88rem;
  padding: 10px 22px; border-radius: var(--r-pill);
  border: 1px solid var(--border); color: rgba(247,251,255,.6);
  background: transparent; cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.menu-tab:hover, .menu-tab.active {
  background: var(--c-electric-blue); color: #fff;
  border-color: var(--c-electric-blue); box-shadow: var(--glow-blue);
}
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-category { margin-bottom: 36px; }
.menu-cat-title { font-family: var(--ff-display); font-size: 1.5rem; color: var(--c-white); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }
.menu-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 10px;
  transition: border-color var(--dur-fast);
}
.menu-item:hover { border-color: rgba(39,245,255,.3); }
.mi-info { flex: 1; }
.mi-name  { font-family: var(--ff-ui); font-weight: 600; font-size: .92rem; color: var(--c-white); }
.mi-note  { font-size: .75rem; color: rgba(247,251,255,.4); margin-top: 3px; }
.mi-price { font-family: var(--ff-display); font-size: 1.1rem; color: var(--c-cyan); white-space: nowrap; flex-shrink: 0; }
.menu-note-banner {
  margin-top: 24px; padding: 16px 22px; background: rgba(255,122,0,.07);
  border: 1px solid var(--border-warm); border-radius: var(--r);
  font-size: .9rem; color: rgba(247,251,255,.65); line-height: 1.6;
}

/* ------------------------------------------------
   17. FAQ
   ------------------------------------------------ */
.faq-list { max-width: 760px; margin-inline: auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color var(--dur-fast);
}
.faq-item.open { border-color: rgba(39,245,255,.4); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 24px; background: none; border: none;
  color: var(--c-white); font-family: var(--ff-ui); font-weight: 700; font-size: 1rem;
  text-align: left; cursor: pointer; transition: color var(--dur-fast);
}
.faq-item.open .faq-q { color: var(--c-cyan); }
.faq-icon { flex-shrink: 0; transition: transform var(--dur-fast) var(--ease-spring); color: var(--c-cyan); font-size: 1.2rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); }
.faq-a-inner { padding: 0 24px 20px; font-size: .95rem; color: rgba(247,251,255,.62); line-height: 1.75; }

/* ------------------------------------------------
   18. PAGE HERO (inner pages)
   ------------------------------------------------ */
.page-hero {
  padding: 10rem 1.5rem 5rem; text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 80%, rgba(0,59,143,.4) 0%, transparent 60%),
    var(--c-black);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(39,245,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(39,245,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 70%);
}
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--c-white); line-height: 1.1; position: relative; z-index: 1; }
.page-hero p  { font-size: 1.1rem; color: rgba(247,251,255,.62); margin-top: 14px; max-width: 560px; margin-inline: auto; position: relative; z-index: 1; }

/* ------------------------------------------------
   19. REVIEW CARDS
   ------------------------------------------------ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px 24px;
}
.review-stars { color: var(--c-yellow); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text  { font-size: .95rem; color: rgba(247,251,255,.7); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { font-family: var(--ff-ui); font-weight: 700; font-size: .85rem; color: rgba(247,251,255,.45); }

/* ------------------------------------------------
   MARKETING SIGNUP (Patch email + SMS opt-in)
   Uses the existing neon arcade system — deep navy
   surface, cyan accents, orange CTA button.
   ------------------------------------------------ */
.biu-signup { text-align: left; }
.biu-signup .bsu-title {
  font-family: var(--ff-display); font-size: 1.45rem; color: var(--c-white); margin-bottom: 8px;
}
.biu-signup .bsu-blurb {
  font-size: .93rem; color: rgba(247,251,255,.68); line-height: 1.65; margin-bottom: 20px;
}
.bsu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.bsu-span { grid-column: 1 / -1; }
.bsu-field { display: flex; flex-direction: column; gap: 6px; }
.bsu-field label {
  font-family: var(--ff-ui); font-weight: 700; font-size: .78rem;
  letter-spacing: .04em; color: rgba(247,251,255,.72);
}
.bsu-field .bsu-opt { font-weight: 500; color: rgba(247,251,255,.42); letter-spacing: 0; }
.bsu-field input {
  background: rgba(0,0,0,.28); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 11px 13px; color: #fff;
  font-family: var(--ff-ui); font-size: .93rem; width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.bsu-field input::placeholder { color: rgba(247,251,255,.3); }
.bsu-field input:focus {
  outline: none; border-color: var(--c-cyan); box-shadow: 0 0 0 3px rgba(39,245,255,.16);
}

/* Consent boxes — never pre-ticked, always legible (TCPA). */
.bsu-consents { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.bsu-check { display: flex; gap: 11px; align-items: flex-start; cursor: pointer; }
.bsu-check input[type="checkbox"] {
  appearance: auto; -webkit-appearance: checkbox;
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px;
  accent-color: var(--c-cyan); cursor: pointer;
}
.bsu-check span { font-size: .88rem; color: rgba(247,251,255,.75); line-height: 1.55; }
.bsu-check strong { color: #fff; }
.bsu-fine {
  display: block; margin-top: 5px;
  font-size: .74rem; line-height: 1.5; color: rgba(247,251,255,.45);
}
.bsu-submit { width: 100%; justify-content: center; }
.bsu-legal {
  font-size: .76rem; color: rgba(247,251,255,.42); line-height: 1.55; margin-top: 12px; text-align: center;
}
.bsu-legal a { color: var(--c-cyan); }
.bsu-msg { margin-top: 12px; font-size: .88rem; line-height: 1.5; border-radius: 9px; }
.bsu-msg.ok {
  color: #4ade80; background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.35); padding: 11px 14px;
}
.bsu-msg.err {
  color: #ffb4b4; background: rgba(245,34,45,.1);
  border: 1px solid rgba(245,34,45,.35); padding: 11px 14px;
}

/* Section wrapper on the homepage */
.signup-band {
  background: linear-gradient(160deg, rgba(0,59,143,.4) 0%, var(--surface) 100%);
  border: 1px solid rgba(39,245,255,.26);
  border-radius: var(--r-lg);
  padding: 40px 38px;
  max-width: 720px; margin: 0 auto;
  box-shadow: 0 0 46px rgba(39,245,255,.07);
}
/* Compact variant used in the footer */
.biu-signup.compact .bsu-grid { grid-template-columns: 1fr; gap: 10px; }
.biu-signup.compact .bsu-title { font-size: 1.1rem; }

@media (max-width: 640px) {
  .bsu-grid { grid-template-columns: 1fr; }
  .signup-band { padding: 26px 20px; }
}

/* Neutral reviews call-to-action (used instead of unverifiable testimonials).
   Keeps the neon arcade look — cyan glow on a deep navy surface. */
.reviews-cta {
  background: linear-gradient(160deg, rgba(0,59,143,.35) 0%, var(--surface) 100%);
  border: 1px solid rgba(39,245,255,.28);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 0 46px rgba(39,245,255,.07);
}
.reviews-cta .rc-inner { max-width: 620px; margin: 0 auto; }
.reviews-cta .rc-ic {
  display: inline-grid; place-items: center;
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,212,0,.12); border: 1px solid rgba(255,212,0,.4);
  color: var(--c-yellow); margin-bottom: 16px;
}
.reviews-cta .rc-title {
  font-family: var(--ff-display); font-size: 1.5rem; color: var(--c-white); margin-bottom: 10px;
}
.reviews-cta .rc-body {
  font-size: .95rem; color: rgba(247,251,255,.68); line-height: 1.7; margin-bottom: 22px;
}
.reviews-cta .rc-actions { margin-top: 0; }
@media (max-width: 640px) {
  .reviews-cta { padding: 30px 20px; }
  .reviews-cta .rc-title { font-size: 1.25rem; }
}

/* ------------------------------------------------
   20. FINAL CTA BAND
   ------------------------------------------------ */
.final-cta {
  background: linear-gradient(135deg, var(--c-deep-blue) 0%, var(--c-navy) 60%);
  text-align: center; padding: clamp(64px,8vw,120px) 1.5rem;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(39,245,255,.07) 0%, transparent 65%);
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 { font-family: var(--ff-display); font-size: clamp(2.2rem,5vw,4rem); color: var(--c-white); margin-bottom: 12px; }
.final-cta p  { font-size: 1.1rem; color: rgba(247,251,255,.6); margin-bottom: 32px; }

/* ------------------------------------------------
   21. FOOTER
   ------------------------------------------------ */
footer {
  background: var(--c-black); border-top: 1px solid var(--border);
  padding: clamp(48px,6vw,96px) 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  width: var(--container); margin-inline: auto; margin-bottom: 48px;
}
.footer-brand .logo { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: 10px; }
.footer-brand .logo span { color: var(--c-cyan); }
.footer-brand p { font-size: .88rem; color: rgba(247,251,255,.48); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
.footer-contact-item { font-size: .88rem; color: rgba(247,251,255,.55); line-height: 2; }
.footer-contact-item a:hover { color: var(--c-cyan); }
.footer-col-title { font-family: var(--ff-ui); font-weight: 700; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-cyan); margin-bottom: 16px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: .88rem; color: rgba(247,251,255,.55); transition: color var(--dur-fast); }
.footer-col-links a:hover { color: var(--c-white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  width: var(--container); margin-inline: auto;
  font-size: .78rem; color: rgba(247,251,255,.3);
}
.footer-bottom a:hover { color: rgba(247,251,255,.6); }

/* ------------------------------------------------
   22. KEYFRAME ANIMATIONS
   ------------------------------------------------ */
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); opacity:.7; }
  33%      { transform: translate(28px,-22px) scale(1.06); opacity:1; }
  66%      { transform: translate(-18px,16px) scale(.94); opacity:.6; }
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(9px); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: var(--glow-cyan); }
  50%      { box-shadow: 0 0 28px rgba(39,245,255,.9), 0 0 56px rgba(39,245,255,.45); }
}
@keyframes particleFloat {
  0%,100% { transform: translate(0,0); opacity:.75; }
  25%      { transform: translate(12px,-18px); opacity:1; }
  50%      { transform: translate(-9px,-28px); opacity:.55; }
  75%      { transform: translate(14px,-12px); opacity:.85; }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:none; }
}

/* ------------------------------------------------
   23. RESPONSIVE
   ------------------------------------------------ */
@media (max-width: 1024px) {
  .footer-grid          { grid-template-columns: 1fr 1fr; }
  .nav-links            { display: none; }
  .nav-actions .btn     { display: none; }
  .nav-hamburger        { display: flex; }
  .mobile-cta-bar       { display: block; }
  body                  { padding-bottom: 68px; }
  .info-strip-grid      { grid-template-columns: repeat(2, 1fr); }
  .info-cell:nth-child(odd) { border-right: 1px solid var(--border); }
  .info-cell            { border-bottom: 1px solid var(--border); }
  .info-cell:last-child, .info-cell:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 640px) {
  .footer-grid          { grid-template-columns: 1fr; gap: 32px; }
  .info-strip-grid      { grid-template-columns: 1fr 1fr; }
  .wt-step              { grid-template-columns: 52px 1fr; gap: 16px; }
  .btn-lg               { font-size:1rem; padding:15px 26px; }
  .party-price          { font-size: 2rem; }
}

/* ================================================
   24. PARTY BUILDER  — interactive room explorer
   The centerpiece: pick a package + a room, watch
   the whole panel re-theme and the price recompute.
   ================================================ */
.party-builder {
  --room-c:    #009DFF;
  --room-glow: rgba(0,157,255,.45);
  --room-tint: rgba(0,157,255,.12);
  position: relative;
  background: linear-gradient(180deg, rgba(11,31,63,.55), rgba(6,23,46,.35));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3.2vw, 44px);
  overflow: hidden;
  transition: border-color .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
.party-builder.themed {
  border-color: var(--room-c);
  box-shadow: 0 0 0 1px var(--room-c), 0 26px 90px -34px var(--room-glow);
}
.party-builder::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 82% -10%, var(--room-glow), transparent 62%);
  opacity: .55; transition: background .55s var(--ease-out);
}
.pb-inner { position: relative; z-index: 1; }
.pb-block + .pb-block { margin-top: 30px; }

/* Price reveal — VISUAL ONLY.
   The numeric text is always correct in the HTML; we only animate opacity
   and transform. Never animate the digits themselves: the value is
   semantic content that screen readers, crawlers and tests must be able
   to trust at any moment. */
/* The price is NEVER hidden. It is always fully opaque and readable, even
   if JavaScript fails, the IntersectionObserver never fires, or the
   element renders outside the viewport. A price that can become invisible
   is a worse bug than the count-up it replaced.

   The only effect is a one-shot glow/pop when it first scrolls into view. */
[data-counter] {
  opacity: 1;
  display: inline-block;
  will-change: transform;
}
@media (prefers-reduced-motion: no-preference) {
  [data-counter].counter-in { animation: pricePOP .6s var(--ease-spring); }
}
@keyframes pricePOP {
  0%   { transform: scale(1);    text-shadow: none; }
  45%  { transform: scale(1.06); text-shadow: 0 0 22px rgba(39,245,255,.55); }
  100% { transform: scale(1);    text-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
  [data-counter], [data-counter].counter-in {
    animation: none !important; transform: none !important;
  }
}

/* Availability could not be verified — fail-closed notice (never "all open") */
.pb-avail-error {
  display: block; color: #ffb4b4;
  background: rgba(245,34,45,.10); border: 1px solid rgba(245,34,45,.35);
  border-radius: 10px; padding: 10px 13px; font-size: .85rem; line-height: 1.5;
}
.pb-avail-error a { color: var(--c-cyan); font-weight: 700; }

/* Brief highlight when a Reserve button sends the user to pick a date/time */
.pb-flash { animation: pbFlash 1.6s var(--ease-out); border-radius: var(--r-lg); }
@keyframes pbFlash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(39,245,255,0); }
  15%      { box-shadow: 0 0 0 3px rgba(39,245,255,.55), 0 0 26px rgba(39,245,255,.35); }
  60%      { box-shadow: 0 0 0 2px rgba(39,245,255,.32), 0 0 18px rgba(39,245,255,.2); }
}

/* step headings */
.pb-step-label {
  display: flex; align-items: center; gap: 11px; margin-bottom: 16px;
  font-family: var(--ff-ui); font-weight: 800; font-size: .72rem;
  letter-spacing: .17em; text-transform: uppercase; color: var(--room-c);
  transition: color .4s;
}
.pb-step-num {
  flex-shrink: 0; width: 25px; height: 25px; border-radius: 50%;
  display: grid; place-items: center; font-size: .78rem;
  background: var(--room-c); color: #06172E; transition: background .4s;
}

/* package selector */
.pb-packages { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pb-pkg {
  position: relative; text-align: left; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 20px 22px;
  font-family: inherit; color: inherit;
  transition: transform .25s var(--ease-spring), border-color .25s, background .25s, box-shadow .25s;
}
.pb-pkg:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.28); }
.pb-pkg.active {
  border-color: var(--room-c); background: var(--room-tint);
  box-shadow: 0 0 26px -8px var(--room-glow);
}
.pb-pkg-name  { font-family: var(--ff-ui); font-weight: 800; font-size: .98rem; color: var(--c-white); }
.pb-pkg-sub   { font-size: .78rem; color: rgba(247,251,255,.5); margin-top: 3px; }
.pb-pkg-price { font-family: var(--ff-display); font-size: 2.1rem; line-height: 1; margin-top: 12px; color: rgba(247,251,255,.85); transition: color .3s; }
.pb-pkg.active .pb-pkg-price { color: var(--room-c); }
.pb-pkg-check {
  position: absolute; top: 15px; right: 15px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border); display: grid; place-items: center;
  font-size: .7rem; color: transparent; transition: .25s;
}
.pb-pkg.active .pb-pkg-check { border-color: var(--room-c); background: var(--room-c); color: #06172E; }

/* room chips */
.pb-rooms { display: flex; flex-wrap: wrap; gap: 10px; }
.pb-room-chip {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--ff-ui); font-weight: 700; font-size: .88rem;
  padding: 10px 17px; border-radius: var(--r-pill);
  background: var(--surface); border: 1.5px solid var(--border);
  color: rgba(247,251,255,.68);
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease-spring);
}
.pb-room-chip .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--chip-c); box-shadow: 0 0 9px var(--chip-c);
}
.pb-room-chip:hover { color: #fff; border-color: var(--chip-c); transform: translateY(-2px); }
.pb-room-chip.active { color: #fff; border-color: var(--chip-c); background: var(--chip-tint); }
.pb-room-chip .rc-price { font-family: var(--ff-display); font-size: .92rem; color: var(--chip-c); margin-left: 3px; }
.pb-room-price-line { display: inline-flex; align-items: baseline; gap: 8px; margin-top: 12px;
  font-family: var(--ff-ui); font-weight: 700; font-size: .9rem; color: rgba(247,251,255,.6); }
.pb-room-price-line strong { font-family: var(--ff-display); font-size: 1.7rem; color: var(--room-c, var(--c-cyan)); }

/* preview split */
.pb-preview {
  display: grid; grid-template-columns: 1.08fr 1fr; gap: 24px; align-items: stretch;
}
.pb-photo {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4 / 3; border: 1px solid var(--room-c);
  box-shadow: 0 16px 50px -24px var(--room-glow); transition: border-color .5s, box-shadow .5s;
  background: linear-gradient(135deg, var(--room-tint), rgba(6,23,46,.9));
}
.pb-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s var(--ease-out);
}
.pb-photo img.shown { opacity: 1; }
.pb-photo-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 24px;
}
.pb-photo-ph .pbph-ic { font-size: 2.4rem; filter: drop-shadow(0 0 14px var(--room-c)); }
.pb-photo-ph .pbph-tx {
  font-family: var(--ff-ui); font-weight: 700; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(247,251,255,.6);
  border: 1px dashed var(--room-c); padding: 6px 14px; border-radius: var(--r-pill);
}
.pb-room-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--ff-ui); font-weight: 800; font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; padding: 7px 14px; border-radius: var(--r-pill);
  background: rgba(6,23,46,.72); backdrop-filter: blur(6px);
  border: 1px solid var(--room-c); color: var(--room-c);
}

/* specs */
.pb-specs { display: flex; flex-direction: column; }
.pb-room-title { font-family: var(--ff-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--room-c); line-height: 1.1; transition: color .4s; }
.pb-room-tagline { font-size: .95rem; color: rgba(247,251,255,.62); margin-top: 8px; line-height: 1.6; }
.pb-spec-list { display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.pb-spec { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: rgba(247,251,255,.72); }
.pb-spec .pbs-ic { color: var(--room-c); flex-shrink: 0; font-weight: 700; transition: color .4s; }
.pb-mod {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; margin-top: 18px;
  font-family: var(--ff-ui); font-weight: 800; font-size: .82rem;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: var(--room-tint); border: 1px solid var(--room-c); color: var(--room-c);
  transition: .4s;
}

/* live total */
.pb-total {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 28px; padding: 22px 26px;
  background: rgba(4,11,24,.45); border: 1px solid var(--room-c); border-radius: var(--r-lg);
  transition: border-color .5s;
}
.pb-total-left { display: flex; flex-direction: column; gap: 3px; }
.pb-total-label { font-family: var(--ff-ui); font-weight: 700; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(247,251,255,.5); }
.pb-total-price { font-family: var(--ff-display); font-size: clamp(2.3rem, 5vw, 3.2rem); line-height: 1; color: var(--room-c); transition: color .4s; }
.pb-total-meta { font-size: .82rem; color: rgba(247,251,255,.55); }
.pb-total-meta strong { color: var(--c-yellow); }
.pb-total-cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* deposit + reservation callout */
.pb-reserve-note {
  display: flex; align-items: center; gap: 12px; margin-top: 18px;
  font-size: .88rem; color: rgba(247,251,255,.62); line-height: 1.55;
  background: rgba(255,212,0,.06); border: 1px solid rgba(255,212,0,.22);
  border-radius: var(--r); padding: 14px 18px;
}
.pb-reserve-note .prn-ic { font-size: 1.2rem; flex-shrink: 0; }

@media (max-width: 760px) {
  .pb-preview   { grid-template-columns: 1fr; }
  .pb-packages  { grid-template-columns: 1fr; }
  .pb-total     { flex-direction: column; align-items: flex-start; }
  .pb-total-cta { width: 100%; }
  .pb-total-cta .btn { flex: 1; justify-content: center; }
}

/* ================================================
   25. BRAND ELEVATION
   icons · aurora · video · motion · gallery ·
   payments · waiver · scroll progress
   ================================================ */

/* ---- 25.1 SVG icon system ------------------------ */
.ico {
  width: 1em; height: 1em; flex-shrink: 0;
  display: inline-block; vertical-align: -0.14em;
  fill: none; stroke: currentColor; stroke-width: 1.85;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.i-inline { color: var(--c-cyan); font-size: 1.04em; margin-right: .12em; }

/* circular/rounded icon badge for feature cards */
.icon-badge {
  width: 58px; height: 58px; border-radius: 17px; margin: 0 auto 14px;
  display: grid; place-items: center; font-size: 1.55rem;
  color: var(--c-cyan);
  background: radial-gradient(circle at 32% 26%, rgba(39,245,255,.18), rgba(39,245,255,.03));
  border: 1px solid var(--border);
  box-shadow: inset 0 0 20px rgba(39,245,255,.09), 0 10px 26px -16px rgba(39,245,255,.5);
  transition: transform .45s var(--ease-spring), border-color .3s, color .3s, box-shadow .3s;
}
.icon-badge.left { margin-left: 0; margin-right: 0; }
.icon-badge.sm { width: 44px; height: 44px; border-radius: 13px; font-size: 1.2rem; }
.icon-badge.warm   { color: var(--c-orange); background: radial-gradient(circle at 32% 26%, rgba(255,122,0,.18), rgba(255,122,0,.03)); border-color: var(--border-warm); box-shadow: inset 0 0 20px rgba(255,122,0,.1), 0 10px 26px -16px rgba(255,122,0,.5); }
.icon-badge.gold   { color: var(--c-yellow); background: radial-gradient(circle at 32% 26%, rgba(255,212,0,.18), rgba(255,212,0,.03)); border-color: rgba(255,212,0,.26); box-shadow: inset 0 0 20px rgba(255,212,0,.1), 0 10px 26px -16px rgba(255,212,0,.5); }
.icon-badge.violet { color: #C084FC; background: radial-gradient(circle at 32% 26%, rgba(192,132,252,.2), rgba(192,132,252,.03)); border-color: rgba(192,132,252,.32); box-shadow: inset 0 0 20px rgba(192,132,252,.12), 0 10px 26px -16px rgba(192,132,252,.5); }
.wi-card:hover .icon-badge,
.toddler-feature:hover .icon-badge,
.arcade-stat:hover .icon-badge { transform: translateY(-3px) scale(1.05); }

/* ---- 25.2 Aurora animated backdrop --------------- */
.aurora { position: absolute; inset: -25% -12% auto -12%; height: 150%; pointer-events: none; z-index: 1; filter: blur(72px); opacity: .5; }
.aurora span { position: absolute; display: block; border-radius: 50%; mix-blend-mode: screen; animation: auroraDrift 20s ease-in-out infinite; }
.aurora .a1 { width: 48vw; height: 48vw; left: -6vw; top: 2vw;  background: radial-gradient(circle, rgba(0,157,255,.55), transparent 66%); }
.aurora .a2 { width: 40vw; height: 40vw; right: -5vw; top: -8vw; background: radial-gradient(circle, rgba(39,245,255,.42), transparent 66%); animation-delay: -7s; }
.aurora .a3 { width: 36vw; height: 36vw; left: 42vw; top: 12vw; background: radial-gradient(circle, rgba(255,122,0,.34), transparent 66%); animation-delay: -13s; }

/* ---- 25.3 Hero background video ------------------- */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; opacity: 0;
  transition: opacity 1.3s var(--ease-out);
}
.hero-video.ready { opacity: .5; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(11,15,20,.93) 0%, rgba(6,23,46,.42) 46%, rgba(6,23,46,.2) 100%),
    radial-gradient(ellipse 72% 60% at 50% 36%, transparent 38%, rgba(11,15,20,.55) 100%);
}

/* ---- 25.4 Button shine + lift -------------------- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -130%; z-index: -1;
  width: 65%; height: 100%; transform: skewX(-20deg); pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent);
  transition: left .65s var(--ease-out);
}
.btn:hover::after { left: 135%; }

/* ---- 25.5 Scroll progress + reveal variants ------ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  z-index: 1200; pointer-events: none;
  background: linear-gradient(90deg, var(--c-electric-blue), var(--c-cyan), var(--c-yellow));
  box-shadow: 0 0 12px rgba(39,245,255,.6);
}
.reveal, .reveal-left, .reveal-right { will-change: transform, opacity; }
.tilt { transition: transform .35s var(--ease-out); transform-style: preserve-3d; will-change: transform; }

/* ---- 25.6 Gallery -------------------------------- */
.gal-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.gal-chip {
  font-family: var(--ff-ui); font-weight: 700; font-size: .85rem; cursor: pointer;
  padding: 9px 20px; border-radius: var(--r-pill); color: rgba(247,251,255,.7);
  background: var(--surface); border: 1.5px solid var(--border); transition: .22s;
}
.gal-chip:hover { color: #fff; border-color: var(--c-cyan); transform: translateY(-2px); }
.gal-chip.active { color: #06172E; background: var(--c-cyan); border-color: var(--c-cyan); box-shadow: var(--glow-cyan); }
.gal-grid { columns: 3 280px; column-gap: 16px; }
.gal-item {
  position: relative; break-inside: avoid; margin-bottom: 16px;
  border-radius: var(--r-lg); overflow: hidden; cursor: pointer;
  border: 1px solid var(--border); background: var(--c-navy);
  transition: transform .4s var(--ease-spring), border-color .3s, box-shadow .3s;
}
.gal-item img, .gal-item video { width: 100%; display: block; transition: transform .6s var(--ease-out); }
.gal-item:hover { transform: translateY(-4px); border-color: var(--c-cyan); box-shadow: 0 18px 50px -22px rgba(39,245,255,.5); }
.gal-item:hover img, .gal-item:hover video { transform: scale(1.06); }
.gal-item.hide { display: none; }
.gal-cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 13px;
  font-family: var(--ff-ui); font-weight: 700; font-size: .9rem; color: #fff;
  background: linear-gradient(to top, rgba(6,12,24,.9), transparent);
  opacity: 0; transform: translateY(8px); transition: .3s;
}
.gal-item:hover .gal-cap { opacity: 1; transform: none; }
.gal-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-ui); font-weight: 800; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill); color: var(--c-cyan);
  background: rgba(6,23,46,.72); backdrop-filter: blur(6px); border: 1px solid var(--border);
}
.gal-play {
  position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; pointer-events: none;
}
.gal-play span {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(6,23,46,.55); border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(4px);
  color: #fff; transition: .3s;
}
.gal-item:hover .gal-play span { background: var(--c-cyan); border-color: var(--c-cyan); color: #06172E; transform: scale(1.08); }

/* lightbox video sizing */
.lb-media { max-width: 90vw; max-height: 90vh; border-radius: 12px; object-fit: contain; }

/* ---- 25.7 Payment / checkout modal --------------- */
.pay-overlay {
  position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(4,10,22,.82); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.pay-overlay.open { opacity: 1; pointer-events: auto; }
/* `hidden` must actually hide it. Without this the modal stays in the
   layout and in the accessibility tree even while closed. */
.pay-overlay[hidden] { display: none !important; }

/* Skip-to-content link — visible only when focused via keyboard. */
.skip-link {
  position: absolute; left: 8px; top: -100px; z-index: 4000;
  background: var(--c-cyan); color: #06172E;
  font-family: var(--ff-ui); font-weight: 800; font-size: .9rem;
  padding: 12px 18px; border-radius: 0 0 10px 10px; text-decoration: none;
  transition: top .18s var(--ease-out);
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: 2px; }

/* Always-visible keyboard focus. Never remove focus outlines outright —
   keyboard users lose their place entirely. */
:focus-visible {
  outline: 3px solid var(--c-cyan);
  outline-offset: 2px;
  border-radius: 4px;
}
.pay-card {
  width: min(440px, 100%); text-align: center; padding: 40px 32px;
  background: linear-gradient(160deg, rgba(11,31,63,.95), rgba(6,23,46,.98));
  border: 1px solid var(--c-cyan); border-radius: var(--r-xl); box-shadow: var(--glow-cyan);
  transform: translateY(16px) scale(.97); transition: transform .35s var(--ease-spring);
}
.pay-overlay.open .pay-card { transform: none; }
.pay-ic { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 18px; display: grid; place-items: center; font-size: 1.8rem; color: var(--c-cyan); background: rgba(39,245,255,.1); border: 1px solid var(--border); }
.pay-card h3 { font-family: var(--ff-display); font-size: 1.6rem; color: #fff; margin-bottom: 8px; }
.pay-amount { font-family: var(--ff-display); font-size: 2.6rem; color: var(--c-cyan); line-height: 1; margin: 6px 0 4px; }
.pay-card p { font-size: .92rem; color: rgba(247,251,255,.62); line-height: 1.6; margin-bottom: 22px; }
.pay-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: rgba(247,251,255,.6); font-size: 1.6rem; cursor: pointer; line-height: 1; }
.pay-note { font-size: .76rem; color: rgba(247,251,255,.4); margin-top: 16px; }

/* ---- 25.8 Waiver form ---------------------------- */
.wv-form { display: grid; gap: 18px; text-align: left; margin-top: 8px; }
.wv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wv-field { display: flex; flex-direction: column; gap: 7px; }
.wv-field label { font-family: var(--ff-ui); font-weight: 700; font-size: .8rem; color: rgba(247,251,255,.75); }
.wv-field label .req { color: var(--c-orange); }
.wv-input {
  font-family: var(--ff-body); font-size: .95rem; color: #fff;
  background: rgba(4,11,24,.55); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.wv-input::placeholder { color: rgba(247,251,255,.32); }
.wv-input:focus { outline: none; border-color: var(--c-cyan); box-shadow: 0 0 0 3px rgba(39,245,255,.15); }
textarea.wv-input { resize: vertical; min-height: 90px; }
.wv-sign-input { font-family: var(--ff-display); font-size: 1.5rem; color: var(--c-cyan); letter-spacing: .02em; }
.wv-check { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: rgba(247,251,255,.7); line-height: 1.55; cursor: pointer; }
.wv-check input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--c-cyan); cursor: pointer; }
.wv-agreement { background: rgba(4,11,24,.5); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 18px; font-size: .82rem; color: rgba(247,251,255,.55); line-height: 1.65; max-height: 168px; overflow-y: auto; }
.wv-ok { display: none; text-align: center; padding: 30px 24px; border-radius: var(--r-lg); background: rgba(39,245,255,.06); border: 1px solid var(--c-cyan); color: var(--c-white); margin-top: 18px; font-family: var(--ff-ui); font-weight: 700; }
.wv-ok.show { display: block; animation: pbPop .4s var(--ease-spring) both; }

/* Dynamic participant rows */
.wv-participants { display: flex; flex-direction: column; gap: 10px; }
.wv-participant-row { display: grid; grid-template-columns: 30px 1fr 92px 38px; gap: 10px; align-items: center; }
.wv-participant-row .wpr-num { font-family: var(--ff-display); font-size: 1rem; color: var(--c-cyan); text-align: center; }
.wv-participant-row .wpr-remove {
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer; flex-shrink: 0;
  background: rgba(245,34,45,.1); border: 1px solid rgba(245,34,45,.3); color: #ff6b6b;
  font-size: 1.1rem; line-height: 1; display: grid; place-items: center; transition: .2s;
}
.wv-participant-row .wpr-remove:hover { background: rgba(245,34,45,.2); }
.wv-participant-row .wpr-remove[hidden] { display: none; }
@media (max-width: 480px) {
  .wv-participant-row { grid-template-columns: 22px 1fr 74px 36px; gap: 7px; }
  .wv-participant-row .wpr-age { padding-left: 10px; padding-right: 6px; }
}

/* Confirmation screen */
.wv-ok-check { width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; color: #4ade80;
  background: rgba(74,222,128,.12); border: 2px solid #4ade80; }
.wv-ok-title { font-family: var(--ff-display); font-size: 1.6rem; color: var(--c-white); }
.wv-ok-sub { font-weight: 600; font-size: .9rem; color: rgba(247,251,255,.6); margin-top: 8px; }
.wv-code { font-family: var(--ff-display); font-size: 3.4rem; letter-spacing: .22em; color: var(--c-cyan);
  text-shadow: var(--glow-cyan); margin: 8px 0 4px; line-height: 1; }
.wv-ok-hint { font-weight: 400; font-size: .86rem; color: rgba(247,251,255,.7); line-height: 1.6; max-width: 420px; margin: 6px auto 0; }
.wv-ok-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 20px; }
.wv-ok-reminders { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px; font-weight: 400; font-size: .84rem;
  color: rgba(247,251,255,.62); text-align: left; max-width: 440px; margin-inline: auto; }
.wv-ok-reminders strong { color: var(--c-white); font-family: var(--ff-ui); font-weight: 800; margin-bottom: 2px; }

/* ---- 25.9 Misc polish + accessibility ------------ */
.zone-img, .wt-photo, .gal-item img { background: var(--c-navy); }
@media (max-width: 600px) { .wv-row { grid-template-columns: 1fr; } .gal-grid { columns: 2 150px; } }
@media (max-width: 380px) { .gal-grid { columns: 1; } }

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

/* ---- 25.10 Keyframes ----------------------------- */
@keyframes auroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(6%, 4%) scale(1.12); }
  66%      { transform: translate(-5%, -3%) scale(.94); }
}

/* ================================================
   27. APPLE-LEVEL POLISH
   focus rings · scroll · selection · loading ·
   tap highlights · type smoothing · empty states
   ================================================ */

/* Better selection color */
::selection { background: rgba(39,245,255,.35); color: #fff; }
::-moz-selection { background: rgba(39,245,255,.35); color: #fff; }

/* Eliminate iOS tap-highlight + force smoother type */
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

/* Accessible focus rings — only when keyboarding */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible, .btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(39,245,255,.5);
}

/* Page-load fade — runs once on first paint, never again */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
body > nav,
body > .page-hero,
body > section,
body > footer,
body > div.value-strip,
body > div.food-stat-strip {
  animation: pageFadeIn .65s var(--ease-out) both;
}
body > .page-hero { animation-delay: .05s; }
body > section { animation-delay: .12s; }
body > footer { animation-delay: .2s; }
@media (prefers-reduced-motion: reduce) {
  body > * { animation: none !important; }
}

/* Smoother scroll snapping for anchor jumps */
html { scroll-padding-top: 80px; }

/* Polish all clickable controls */
button, .btn, [role="button"], a.btn { -webkit-tap-highlight-color: transparent; user-select: none; }

/* Button shine refinement */
.btn:active { transform: scale(.97); transition: transform .08s; }
.btn-primary { letter-spacing: .01em; }

/* Better card hover for low-end devices that can't tilt */
@media (hover: hover) and (pointer: fine) {
  .wi-card, .zone-card, .review-card, .gal-item, .party-card, .addon-card, .math-card {
    will-change: transform, border-color;
  }
}

/* Better link underline on hover for inline links */
.section-body a, .footer-contact-item a, p a:not(.btn) {
  position: relative;
  background-image: linear-gradient(to right, currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size .3s var(--ease-out);
}
.section-body a:hover, .footer-contact-item a:hover, p a:not(.btn):hover {
  background-size: 100% 1px;
}

/* Img loaded-state shimmer (subtle) */
img { background-color: rgba(255,255,255,.03); }
img[loading="lazy"] { transition: opacity .4s var(--ease-out); }

/* Refined navigation polish */
.nav { transition: backdrop-filter .3s, background .3s, border-color .3s; }
.nav.scrolled { backdrop-filter: blur(20px) saturate(180%); }
.nav-links a {
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--c-cyan);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s var(--ease-spring);
  box-shadow: 0 0 8px rgba(39,245,255,.6);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 60%; }

/* Mobile bar polish — match nav style */
.mobile-cta-bar { backdrop-filter: blur(18px) saturate(180%); }
.mobile-cta-bar a:active { transform: scale(.96); transition: transform .08s; }

/* Final CTA — give it depth */
.final-cta {
  position: relative;
  isolation: isolate;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,157,255,.18), transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,122,0,.1), transparent 60%);
  pointer-events: none;
}

/* Inputs polish — but DON'T strip checkboxes/radios (keeps them visible) */
input:not([type="checkbox"]):not([type="radio"]), textarea, select {
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}
/* Make agreement checkboxes clearly visible on the dark theme */
.wv-check input[type="checkbox"] {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,.06); border: 2px solid var(--c-cyan);
  display: grid; place-content: center; cursor: pointer; transition: background .15s, box-shadow .15s;
}
.wv-check input[type="checkbox"]::before {
  content: ''; width: 12px; height: 12px; transform: scale(0); transition: transform .12s ease;
  background: var(--c-cyan);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}
.wv-check input[type="checkbox"]:checked { background: rgba(39,245,255,.15); box-shadow: 0 0 10px rgba(39,245,255,.4); }
.wv-check input[type="checkbox"]:checked::before { transform: scale(1); }
input::placeholder, textarea::placeholder { color: rgba(247,251,255,.32); }

/* Refined empty-state for placeholder photos */
.pb-photo-ph {
  background:
    radial-gradient(ellipse 70% 70% at 50% 30%, rgba(39,245,255,.06), transparent),
    rgba(255,255,255,.02);
}

/* ================================================
   28. ORIGINAL: PAGE-SPECIFIC THEMES + STRIPE / PAYMENTS
   ================================================ */

/* ---- 26.1 Icon alignment fixes ------------------- */
/* Standalone bar icons: remove right margin so they center properly */
.bar-icon .ico { margin-right: 0; }
/* Fix inline icon centering in flex-column containers */
.contact-action-cell .ico { margin-right: 0; }
/* Consistent icon size in arcade stats */
.arcade-stat .num .ico { width: 2rem; height: 2rem; display: block; margin: 0 auto; }

/* ---- 26.2 Concessions — warm food vibe ----------- */
.pg-concessions .page-hero {
  background:
    linear-gradient(155deg, rgba(110,22,0,.82) 0%, rgba(6,23,46,.9) 65%),
    radial-gradient(ellipse 110% 85% at 5% 60%, rgba(255,80,0,.38), transparent),
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(255,160,0,.18), transparent);
}
.pg-concessions .eyebrow { color: var(--c-orange); }
.pg-concessions .page-hero h1 .accent { color: var(--c-yellow); text-shadow: var(--glow-yellow); }
.pg-concessions .menu-tab:hover { color: var(--c-orange); border-color: rgba(255,122,0,.45); }
.pg-concessions .menu-tab.active {
  color: var(--c-orange); background: rgba(255,122,0,.1);
  border-color: rgba(255,122,0,.6); box-shadow: 0 0 16px rgba(255,122,0,.22);
}
.pg-concessions .menu-cat-title { color: var(--c-orange); }

/* food quick-stat strip */
.food-stat-strip {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: rgba(255,122,0,.04); border-block: 1px solid rgba(255,122,0,.18);
}
.food-stat { padding: 26px 18px; text-align: center; border-right: 1px solid rgba(255,122,0,.14); }
.food-stat:last-child { border-right: none; }
.food-stat .fs-num { font-family: var(--ff-display); font-size: 2.2rem; color: var(--c-orange); }
.food-stat .fs-lbl { font-size: .78rem; color: rgba(247,251,255,.48); font-family: var(--ff-ui); font-weight:600; margin-top: 4px; }
@media (max-width:640px) {
  .food-stat-strip { grid-template-columns: 1fr 1fr; }
  .food-stat { border-bottom: 1px solid rgba(255,122,0,.12); }
  .food-stat:nth-child(2) { border-right: none; }
  .food-stat:nth-last-child(-n+2) { border-bottom: none; }
}

/* ---- 26.3 Contact — store showcase banner --------- */
.contact-banner {
  position: relative; overflow: hidden;
  height: clamp(240px, 36vw, 460px); background: var(--c-navy);
}
.contact-banner video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.contact-banner-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(6,23,46,.88) 0%, rgba(6,23,46,.35) 55%, rgba(6,23,46,.62) 100%),
    linear-gradient(to top, rgba(11,15,20,.92) 0%, transparent 38%);
}
.contact-banner-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center;
  padding: 0 clamp(20px,6vw,80px);
}
.contact-banner-stats { display: flex; gap: clamp(28px,5vw,64px); flex-wrap: wrap; }
.cbs { text-align: center; }
.cbs-num {
  font-family: var(--ff-display); font-size: clamp(2rem,4.5vw,3.2rem);
  color: var(--c-cyan); line-height: 1; text-shadow: var(--glow-cyan);
}
.cbs-lbl { font-size: .78rem; font-family: var(--ff-ui); font-weight: 600; color: rgba(247,251,255,.52); margin-top: 5px; letter-spacing:.05em; }

/* ---- 26.4 Memberships — Stripe + payment methods -- */
.pay-accept-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 44px;
}
.pay-accept-label {
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 700;
  color: rgba(247,251,255,.38); letter-spacing: .16em; text-transform: uppercase; margin-right: 4px;
}
.pay-method-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-ui); font-weight: 700; font-size: .82rem;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border); color: rgba(247,251,255,.78);
  transition: border-color .2s, color .2s;
}
.pay-method-chip.apple { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.25); color: #fff; }
.pay-method-chip.google { border-color: rgba(39,245,255,.25); }
.pay-method-chip.card  { border-color: rgba(39,245,255,.18); }

/* Stripe Pricing Table container */
.stripe-pricing-wrap {
  max-width: 920px; margin: 0 auto 32px;
  border-radius: var(--r-xl); overflow: hidden;
  min-height: 300px;
}
stripe-pricing-table { display: block; }

/* Stripe setup instructions (shown to owner until configured) */
.stripe-setup-box {
  max-width: 720px; margin: 0 auto 40px;
  background: rgba(255,122,0,.05); border: 1px solid rgba(255,122,0,.28);
  border-radius: var(--r-lg); padding: 22px 26px;
  font-size: .87rem; color: rgba(247,251,255,.62); line-height: 1.8;
}
.stripe-setup-box .ssb-title { font-family:var(--ff-ui); font-weight:800; color:var(--c-orange); font-size:.95rem; margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.stripe-setup-box ol { padding-left: 20px; }
.stripe-setup-box li { margin-bottom: 5px; }
.stripe-setup-box code { background: rgba(255,255,255,.09); padding: 2px 8px; border-radius: 6px; font-size: .85em; color: var(--c-cyan); font-family: monospace; }

/* membership hero visual upgrade */
.mem-hero-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(39,245,255,.18), transparent),
    radial-gradient(ellipse 50% 40% at 20% 60%, rgba(0,157,255,.12), transparent),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(255,122,0,.08), transparent);
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ================================================
   31. NAV "MORE" DROPDOWN + SOCIAL + NEW PAGES
   ================================================ */
.nav-more { position: relative; list-style: none; }
.nav-more-btn { font-family: var(--ff-ui); font-weight: 600; font-size: .88rem;
  color: rgba(247,251,255,.72); background: none; border: none; cursor: pointer;
  padding: 8px 13px; border-radius: 10px; display: inline-flex; align-items: center; gap: 5px; transition: color .2s, background .2s; }
.nav-more-btn:hover, .nav-more.open .nav-more-btn, .nav-more-btn.active { color: #fff; background: rgba(255,255,255,.08); }
.nm-caret { font-size: .7em; transition: transform .25s; }
.nav-more.open .nm-caret { transform: rotate(180deg); }
.nav-more-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 184px;
  background: rgba(6,23,46,.98); border: 1px solid var(--border); border-radius: 14px; padding: 8px;
  display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s; box-shadow: 0 18px 50px -20px rgba(0,0,0,.7);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 1002; }
.nav-more.open .nav-more-menu { opacity: 1; visibility: visible; transform: none; }
.nav-more-menu a { padding: 10px 14px; border-radius: 9px; font-family: var(--ff-ui); font-weight: 600;
  font-size: .88rem; color: rgba(247,251,255,.78); white-space: nowrap; display: flex; align-items: center; gap: 9px; }
.nav-more-menu a:hover { background: rgba(39,245,255,.1); color: #fff; }
.nav-more-menu a svg { color: var(--c-cyan); width: 1.05em; height: 1.05em; }

/* Social icons (footer + follow strip) */
.social-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.social-btn { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border); color: var(--c-cyan);
  transition: transform .25s var(--ease-spring), border-color .25s, background .25s, color .25s; }
.social-btn:hover { transform: translateY(-3px); border-color: var(--c-cyan); background: rgba(39,245,255,.1); }
.social-btn svg { width: 1.25rem; height: 1.25rem; }
.follow-strip { text-align: center; }
.follow-strip .social-row { justify-content: center; margin-top: 16px; }

/* Memberships "Three Steps to Walk In" — stacks cleanly on mobile */
.mem-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.mem-step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px 24px; text-align: center; }
.mem-step-num { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, #003B8F, #009DFF); border: 1px solid var(--c-cyan);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-cyan);
  font-family: var(--ff-display); color: #fff; font-size: 1.2rem; }
@media (max-width: 760px) {
  .mem-steps { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .mem-step { padding: 22px 22px; }
  .mem-step-num { width: 46px; height: 46px; font-size: 1.05rem; margin-bottom: 12px; }
}

/* Follow Us — socials section */
.social-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.social-cta { display: inline-flex; align-items: center; gap: 9px; padding: 11px 22px; border-radius: 999px;
  font-family: var(--ff-ui); font-weight: 800; font-size: .92rem; color: #fff; border: 1px solid var(--border);
  background: var(--surface); transition: transform .2s var(--ease-spring), border-color .2s, background .2s; }
.social-cta svg { width: 1.2rem; height: 1.2rem; }
.social-cta:hover { transform: translateY(-3px); }
.social-cta.tiktok:hover { border-color: #27F5FF; background: rgba(39,245,255,.12); }
.social-cta.facebook:hover { border-color: #1877F2; background: rgba(24,119,242,.14); }
.social-cta.instagram:hover { border-color: #E1306C; background: rgba(225,48,108,.14); }
.social-grid { columns: 4 200px; column-gap: 14px; margin-top: 44px; }
.social-tile { position: relative; break-inside: avoid; margin-bottom: 14px; border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid var(--border); display: block; background: var(--c-navy);
  transition: transform .35s var(--ease-spring), border-color .3s, box-shadow .3s; }
.social-tile:hover { transform: translateY(-4px); border-color: var(--c-cyan); box-shadow: 0 18px 44px -22px rgba(39,245,255,.5); }
.social-tile img, .social-tile video { width: 100%; display: block; transition: transform .5s var(--ease-out); }
.social-tile:hover img, .social-tile:hover video { transform: scale(1.06); }
.social-tile .st-plat { position: absolute; top: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(6,23,46,.72); backdrop-filter: blur(4px); border: 1px solid var(--border); color: #fff; z-index: 2; }
.social-tile .st-plat svg { width: 1rem; height: 1rem; }
.social-tile .st-glow { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,12,24,.55), transparent 55%);
  opacity: 0; transition: opacity .3s; }
.social-tile:hover .st-glow { opacity: 1; }
@media (max-width: 900px) { .social-grid { columns: 3 160px; } }
@media (max-width: 600px) { .social-grid { columns: 2 140px; } }

/* Party "What's Included" checklist + boxed inline links */
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 28px; }
.pkg-li { position: relative; padding-left: 27px; font-size: .9rem; color: rgba(247,251,255,.8); line-height: 1.55; }
.pkg-li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--c-cyan); font-weight: 800; }
.pkg-link { display: inline-block; border: 1.5px solid var(--c-cyan); border-radius: 6px; padding: 0 7px;
  color: var(--c-cyan); font-weight: 800; text-decoration: none; transition: background .2s, color .2s; }
.pkg-link:hover { background: var(--c-cyan); color: #06172E; }
@media (max-width: 640px) { .pkg-grid { grid-template-columns: 1fr; } }

/* Slim cancellation callout (top of parties) */
.cancel-callout { max-width: none; display: flex; gap: 12px; align-items: flex-start; margin-bottom: 36px;
  background: rgba(255,212,0,.05); border: 1px solid rgba(255,212,0,.22); border-radius: var(--r-lg); padding: 16px 20px; }
.cancel-callout svg { color: var(--c-yellow); flex-shrink: 0; margin-top: 2px; }
.cancel-callout p { font-size: .88rem; color: rgba(247,251,255,.7); line-height: 1.6; }
.cancel-callout strong { color: var(--c-yellow); }
.cancel-callout a { color: var(--c-cyan); }

/* Floating balloons — lightweight, decorative, desktop-only.
   Easy to remove: delete this block + the .float-balloons markup. */
.float-balloons { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.float-balloons .fb { position: absolute; opacity: .5; animation: fbFloat 9s ease-in-out infinite; }
.float-balloons .fb svg { width: 100%; height: 100%; }
.float-balloons .fb1 { left: 6%;  top: 28%; width: 34px; color: var(--c-cyan);   animation-delay: 0s; }
.float-balloons .fb2 { left: 15%; top: 60%; width: 26px; color: var(--c-orange); animation-delay: -2.4s; }
.float-balloons .fb3 { right: 8%; top: 32%; width: 38px; color: var(--c-yellow); animation-delay: -4s; }
.float-balloons .fb4 { right: 17%; top: 62%; width: 28px; color: #C084FC;        animation-delay: -1.5s; }
@keyframes fbFloat { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-18px) rotate(4deg); } }
@media (max-width: 1024px) { .float-balloons { display: none; } }
@media (prefers-reduced-motion: reduce) { .float-balloons .fb { animation: none; } }

/* Generic page form helpers (reuse .wv-* where possible) */
.form-card { max-width: 720px; margin-inline: auto; background: linear-gradient(135deg, rgba(0,59,143,.28), rgba(6,23,46,.85));
  border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); }
.form-success { display: none; text-align: center; padding: 30px 24px; border-radius: var(--r-lg);
  background: rgba(74,222,128,.07); border: 1px solid #4ade80; margin-top: 8px; }
.form-success.show { display: block; animation: pbPop .4s var(--ease-spring) both; }
.form-success .fs-check { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center;
  color: #4ade80; background: rgba(74,222,128,.12); border: 2px solid #4ade80; }
.form-success h3 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--c-white); }
.form-success p { font-weight: 400; color: rgba(247,251,255,.7); margin-top: 8px; line-height: 1.6; }
.wv-availability { display: flex; flex-wrap: wrap; gap: 10px; }
.wv-day { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: var(--r-pill);
  background: var(--surface); border: 1.5px solid var(--border); cursor: pointer; font-family: var(--ff-ui);
  font-weight: 700; font-size: .85rem; color: rgba(247,251,255,.7); transition: .2s; user-select: none; }
.wv-day:hover { border-color: rgba(39,245,255,.4); color: #fff; }
.wv-day input { width: 17px; height: 17px; accent-color: var(--c-cyan); cursor: pointer; }
.wv-day.checked { border-color: var(--c-cyan); background: rgba(39,245,255,.1); color: #fff; }
.file-input { font-family: var(--ff-body); font-size: .9rem; color: rgba(247,251,255,.7); }
.file-input::file-selector-button { font-family: var(--ff-ui); font-weight: 700; font-size: .85rem;
  background: var(--surface-2); color: var(--c-cyan); border: 1px solid var(--border); border-radius: 10px;
  padding: 9px 16px; margin-right: 12px; cursor: pointer; transition: .2s; }
.file-input::file-selector-button:hover { background: rgba(39,245,255,.12); }

/* ================================================
   30. BOOKING FLOW — date · time · extra · summary
   Builds on the existing .party-builder styles.
   ================================================ */

/* Important Party Information card */
.party-info-band {
  background: linear-gradient(165deg, rgba(255,122,0,.07), rgba(6,23,46,.4));
  border: 1px solid var(--border-warm); border-radius: var(--r-xl);
  padding: clamp(24px, 3.5vw, 40px); margin-bottom: 36px;
}
.party-info-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.party-info-head .pi-ic { color: var(--c-yellow); display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 13px; background: rgba(255,212,0,.1);
  border: 1px solid rgba(255,212,0,.28); flex-shrink: 0; }
.party-info-head h3 { font-family: var(--ff-display); font-size: clamp(1.3rem,2.6vw,1.7rem); color: var(--c-white); }
.party-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.pi-item { display: flex; gap: 13px; align-items: flex-start;
  background: rgba(255,255,255,.025); border: 1px solid var(--border);
  border-radius: var(--r); padding: 16px 18px; }
.pi-item .pi-badge { flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center; color: var(--c-cyan);
  background: rgba(39,245,255,.08); border: 1px solid var(--border); }
.pi-item.warn .pi-badge { color: var(--c-yellow); background: rgba(255,212,0,.08); border-color: rgba(255,212,0,.24); }
.pi-item strong { display: block; font-family: var(--ff-ui); font-weight: 800; font-size: .95rem; color: var(--c-white); margin-bottom: 3px; }
.pi-item p { font-size: .86rem; color: rgba(247,251,255,.62); line-height: 1.55; }
@media (max-width: 640px) { .party-info-grid { grid-template-columns: 1fr; } }

/* Date input */
.pb-date-wrap { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.pb-date-input {
  font-family: var(--ff-ui); font-weight: 700; font-size: 1rem; color: #fff;
  background: rgba(4,11,24,.55); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 13px 16px; min-width: 220px; transition: border-color .2s, box-shadow .2s;
  color-scheme: dark;
}
.pb-date-input:focus { outline: none; border-color: var(--room-c, var(--c-cyan)); box-shadow: 0 0 0 3px rgba(39,245,255,.15); }
.pb-discount-msg {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-ui); font-weight: 800; font-size: .86rem;
  padding: 11px 18px; border-radius: var(--r-pill);
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.4); color: #4ade80;
  animation: pbPop .35s var(--ease-spring) both;
}
.pb-discount-msg svg { width: 1.1em; height: 1.1em; }
.pb-discount-msg[hidden] { display: none; }
@keyframes pbPop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: none; } }

/* Week availability finder */
.pb-week { margin-top: 14px; }
.pb-week-head { font-family: var(--ff-ui); font-weight: 800; font-size: .82rem; color: var(--c-cyan); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.pb-week-day { display: flex; gap: 14px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); }
.pb-week-day:last-child { border-bottom: none; }
.pb-week-date { font-family: var(--ff-ui); font-weight: 800; font-size: .8rem; color: #fff; width: 104px; flex-shrink: 0; padding-top: 5px; }
.pb-week-date.is-weekday { color: #4ade80; }
.pb-week-slots { display: flex; flex-wrap: wrap; gap: 7px; flex: 1; }
.pb-week-chip { font-family: var(--ff-ui); font-weight: 700; font-size: .76rem; padding: 6px 12px; border-radius: 999px;
  border: 1.5px solid var(--border); background: var(--surface); color: rgba(247,251,255,.82); cursor: pointer; transition: .15s; }
.pb-week-chip:hover { border-color: var(--room-c, var(--c-cyan)); color: #fff; transform: translateY(-1px); }
.pb-week-full { font-size: .76rem; color: rgba(247,251,255,.32); padding-top: 5px; }
@media (max-width: 560px) { .pb-week-date { width: 84px; font-size: .74rem; } }

/* Time slots */
.pb-slots, .pb-extras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pb-slot, .pb-extra {
  position: relative; cursor: pointer; text-align: center;
  font-family: var(--ff-ui); font-weight: 700; font-size: .92rem; color: rgba(247,251,255,.82);
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--r-lg);
  padding: 16px 14px; transition: transform .2s var(--ease-spring), border-color .2s, background .2s;
}
.pb-slot small, .pb-extra small { display: block; font-weight: 600; font-size: .74rem; color: rgba(247,251,255,.5); margin-top: 4px; }
.pb-slot:hover, .pb-extra:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.28); color: #fff; }
.pb-slot.active, .pb-extra.active {
  border-color: var(--room-c, var(--c-cyan)); background: var(--room-tint, rgba(39,245,255,.12)); color: #fff;
  box-shadow: 0 0 22px -8px var(--room-glow, rgba(39,245,255,.5));
}
.pb-slot.active small, .pb-extra.active small { color: rgba(255,255,255,.75); }
.pb-slot[disabled], .pb-slot.taken {
  opacity: .4; cursor: not-allowed; text-decoration: line-through; pointer-events: none;
}
.pb-slot-taken-tag { display: block; font-size: .64rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--c-red); margin-top: 4px; text-decoration: none; }
@media (max-width: 640px) {
  .pb-slots, .pb-extras { grid-template-columns: 1fr 1fr; }
}

/* Booking summary line items */
.pb-summary {
  margin-top: 28px; background: rgba(4,11,24,.5); border: 1px solid var(--room-c, var(--border));
  border-radius: var(--r-lg); padding: 22px 26px; transition: border-color .5s;
}
.pb-summary-title { font-family: var(--ff-ui); font-weight: 800; font-size: .74rem;
  letter-spacing: .15em; text-transform: uppercase; color: rgba(247,251,255,.5); margin-bottom: 14px; }
.pb-line { display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 8px 0; font-size: .94rem; color: rgba(247,251,255,.8); border-bottom: 1px dashed rgba(255,255,255,.08); }
.pb-line:last-of-type { border-bottom: none; }
.pb-line .pl-label { color: rgba(247,251,255,.62); }
.pb-line .pl-val { font-family: var(--ff-ui); font-weight: 700; color: #fff; white-space: nowrap; }
.pb-line.discount .pl-label, .pb-line.discount .pl-val { color: #4ade80; }
.pb-line.total { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--border); border-bottom: none; }
.pb-line.total .pl-label { font-family: var(--ff-display); font-size: 1.1rem; color: var(--c-white); }
.pb-line.total .pl-val { font-family: var(--ff-display); font-size: 1.6rem; color: var(--room-c, var(--c-cyan)); }
.pb-line.deposit .pl-val { color: var(--c-yellow); }
.pb-line.remaining { border-bottom: none; }
.pb-line.remaining .pl-label, .pb-line.remaining .pl-val { font-size: .86rem; color: rgba(247,251,255,.5); }
.pb-summary-host { display: flex; gap: 10px; align-items: flex-start; margin-top: 16px;
  font-size: .82rem; color: rgba(247,251,255,.6); line-height: 1.55;
  background: rgba(39,245,255,.05); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 14px; }
.pb-summary-host svg { color: var(--c-cyan); flex-shrink: 0; margin-top: 2px; }

/* Mobile sticky reserve bar (booking) */
.pb-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 997;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(6,23,46,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--room-c, var(--border));
  transform: translateY(120%); transition: transform .35s var(--ease-spring);
}
.pb-sticky.show { transform: none; }
.pb-sticky-info .pbs-total { font-family: var(--ff-display); font-size: 1.5rem; line-height: 1; color: var(--room-c, var(--c-cyan)); }
.pb-sticky-info .pbs-sub { font-size: .72rem; color: rgba(247,251,255,.55); }
.pb-sticky .btn { flex-shrink: 0; }

/* ================================================
   29. MOBILE PERFORMANCE
   Eliminates the GPU-heavy effects that cause
   scroll lag and dropped frames on phones.
   ================================================ */

/* Always show hero video on mobile — don't wait for canplay */
@media (max-width: 1024px) {
  .hero-video { opacity: .5 !important; transition: none !important; }
  /* Booking sticky bar is mobile-only */
  .pb-sticky { display: flex; }
  body.has-pb-sticky { padding-bottom: 76px; }
}

@media (max-width: 1024px) {
  /* ── Remove blur filters — the #1 mobile FPS killer ── */
  .orb {
    filter: none !important;
    opacity: .05 !important;
    animation: none !important;
  }
  .aurora { filter: blur(30px); opacity: .25; }
  .aurora span { animation-duration: 60s; }
  .mem-hero-stack .blob { filter: blur(28px); }
  .e404-aurora .a1,
  .e404-aurora .a2 { filter: blur(30px) !important; }

  /* ── Lightweight backdrop filters ── */
  .nav.scrolled        { backdrop-filter: blur(6px) saturate(140%); -webkit-backdrop-filter: blur(6px) saturate(140%); }
  .mobile-nav          { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .mobile-cta-bar      { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
  .pb-room-badge,
  .gal-badge           { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .pay-overlay         { backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }

  /* ── Remove will-change — frees compositor memory ── */
  .reveal, .reveal-left, .reveal-right,
  .zone-card, .review-card, .wi-card, .party-card,
  .gal-item, .member-card-lg, .math-card,
  .btn { will-change: auto !important; }

  /* ── Disable costly 3D tilt (handled in JS too) ── */
  .tilt { transform-style: flat !important; }

  /* ── Touch targets — minimum 48 × 48 px ── */
  .mobile-cta-bar a {
    min-height: 56px;
    padding: 10px 4px;
    gap: 4px;
  }

  /* ── Mobile bar icons — explicit 24 px SVG ── */
  .mobile-cta-bar a .bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 1.5rem;
  }
  .mobile-cta-bar a .bar-icon svg.ico {
    width: 24px !important;
    height: 24px !important;
    vertical-align: unset;
  }
  .mobile-cta-bar a { font-size: .65rem; }

  /* ── Contain layout for paint isolation ── */
  .hero, .page-hero { contain: layout; }

  /* ── Reduce hero grid opacity (grid lines are heavy) ── */
  .hero-grid { opacity: .18; }

  /* ── Safer parallax — kill inline transforms from JS ── */
  .hero-content, .hero-grid { transform: none !important; }
}

/* ── Phones (≤640 px) — more aggressive ── */
@media (max-width: 640px) {
  /* Hide aurora entirely — saves 30+ FPS on low-end phones */
  .aurora { display: none !important; }

  /* Reduce blob count on memberships page */
  .mem-hero-stack .b3 { display: none; }
  .mem-hero-stack .b1,
  .mem-hero-stack .b2 { opacity: .35; }

  /* Hero type scale */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero-sub   { font-size: clamp(.92rem, 3.8vw, 1.1rem); }
  .hero-content { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Shrink hero trust pills to a single row on phones */
  .trust-pill { font-size: .7rem; padding: 5px 11px; }

  /* Tighter gaps on phone */
  .mobile-cta-bar-grid { gap: 3px; }
  .mobile-cta-bar a { border-radius: 8px; font-size: .58rem; }

  /* Prevent any horizontal scroll */
  .concessions-preview-grid { grid-template-columns: 1fr !important; }
  .wv-row { grid-template-columns: 1fr !important; }

  /* Section padding reduction */
  :root { --section-py: clamp(44px, 8vw, 72px); }
}

/* ── Very small phones (≤380 px) ── */
@media (max-width: 380px) {
  .mobile-cta-bar a .bar-icon svg.ico { width: 20px !important; height: 20px !important; }
  .mobile-cta-bar a { font-size: .55rem; padding: 8px 2px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
}
