/* 
   ==========================================================================
   INFUSED RESTAURANT & BAR - BRAND CSS STYLESHEET
   Identity: Midnight Lounge (Deep Midnight, Warm Gold, Translucent Charcoal)
   Author: Antigravity AI
   ========================================================================== */

/* 1. GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Outfit:wght@200;300;400;500;600;700;800;900&display=swap');

/* 2. CORE CUSTOM TOKENS */
:root {
  /* HSL Harmonies - Layered translucency */
  --bg-dark: rgba(6, 2, 8, 0.42); /* Deep Obsidian Translucent Purple Velvet */
  --bg-darker: rgba(4, 1, 6, 0.65); /* Deep royal shadow translucent overlay */
  --bg-card: rgba(14, 6, 20, 0.58); /* Royal purple frosted glass */
  --bg-glass-input: rgba(255, 255, 255, 0.03);
  
  /* Diamond & Platinum Elements (Internal Names Retained for Compatibility) */
  --gold-primary: hsl(38, 30%, 96%); /* Champagne White */
  --gold-light: hsl(38, 30%, 100%); /* Pure Champagne Light */
  --gold-dark: hsl(38, 30%, 78%); /* Polished Champagne Gold */
  --gold-glow: rgba(212, 175, 55, 0.12); /* Soft Candlelit Gold Glow */
  --gold-gradient: linear-gradient(135deg, hsl(38, 70%, 95%) 0%, hsl(38, 75%, 65%) 50%, hsl(162, 20%, 75%) 100%); /* Molten champagne gold shimmer */
  
  /* Accent Shades — warm champagne hierarchy (contrast-safe on dark glass) */
  --text-light: hsl(38, 20%, 95%);
  --text-body: hsl(38, 22%, 90%);
  --text-muted: hsl(38, 14%, 78%); /* was gray-green; warmer + brighter sitewide */
  --text-muted-soft: hsl(38, 8%, 64%);
  --text-on-glass: hsl(38, 18%, 86%);
  --text-on-glass-dim: hsl(38, 12%, 74%);
  --border-glass: rgba(212, 175, 55, 0.09);
  --border-glass-hover: rgba(212, 175, 55, 0.18);
  --success: hsl(152, 70%, 45%);

  /* Menu — Candlelit Ledger */
  --menu-rail-gold: linear-gradient(180deg, hsl(38, 75%, 72%) 0%, hsl(38, 45%, 48%) 100%);
  --menu-card-bg: rgba(14, 6, 20, 0.62);
  --menu-card-bg-hover: rgba(18, 8, 26, 0.72);
  --menu-inset-bg: rgba(255, 255, 255, 0.045);
  --menu-inset-border: rgba(212, 175, 55, 0.12);
  --menu-tab-track: rgba(255, 255, 255, 0.04);
  --menu-hh-glow: rgba(255, 50, 150, 0.18);
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Spacing & Utilities */
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-lg: 16px;
  --border-radius-sm: 8px;
}
 
/* 3. RESET & BASE ELEMENTS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
html {
  scroll-behavior: smooth;
  background-color: #040106; /* Solid fallback backing color while WebGL canvas compiles */
  overflow-x: clip; /* clip preserves position:sticky better than overflow:hidden on iOS */
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
 
body {
  background-color: rgb(4, 1, 6); /* Fallback baseline backing color */
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
  /* Notch / home-indicator safe padding for fixed chrome */
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

/* Fixed Background canvas covering full screen under layout content */
#volumetric-beams-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: -10;
  pointer-events: none;
  display: block;
}

html.beams-disabled body {
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(85, 60, 140, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(16, 185, 129, 0.08), transparent 55%),
    rgb(4, 1, 6);
}
 
/* Ambient Background Light Spheres */
body::before {
  content: '';
  position: absolute;
  top: 15%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
 
body::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.015) 0%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}
 
/* Typography Standards */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold-primary);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.site-footer p,
.footer-contact-list li,
.form-input::placeholder {
  color: var(--text-muted);
}

a {
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold-light);
}

/* 4. LAYOUT SYSTEM */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.container-wide {
  width: 95%;
  max-width: 1400px;
  margin: 0 auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Responsive Grid Breakpoints */
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  section {
    padding: 4rem 0 !important;
  }
}

section {
  padding: 6rem 0;
}

/* 5. NAV LAYOUT — Bold Champagne Bubble Rail */
@keyframes nav-rail-shimmer {
  0%, 100% { background-position: 0% 50%; opacity: 0.65; }
  50% { background-position: 100% 50%; opacity: 1; }
}

@keyframes nav-brand-breathe {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.22)); }
  50% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5)); }
}

@keyframes nav-orbit-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  40% { transform: translate(10px, -12px) scale(1.2); opacity: 0.95; }
  70% { transform: translate(-8px, 6px) scale(0.88); opacity: 0.7; }
}

@keyframes nav-orbit-drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.25); }
}

@keyframes nav-blue-glow {
  0% {
    box-shadow:
      0 0 16px rgba(55, 149, 177, 0.45),
      0 0 32px rgba(55, 149, 177, 0.2),
      inset 0 0 12px rgba(55, 149, 177, 0.28),
      inset 0 1px 1px rgba(255, 255, 255, 0.45),
      0 8px 20px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow:
      0 0 24px rgba(55, 149, 177, 0.65),
      0 0 44px rgba(64, 136, 168, 0.3),
      inset 0 0 16px rgba(55, 149, 177, 0.36),
      inset 0 1px 1px rgba(255, 255, 255, 0.55),
      0 10px 24px rgba(0, 0, 0, 0.45);
  }
}

@keyframes nav-purple-glow {
  0% {
    box-shadow:
      0 0 16px rgba(176, 64, 128, 0.45),
      0 0 32px rgba(104, 0, 64, 0.25),
      inset 0 0 12px rgba(176, 64, 128, 0.28),
      inset 0 1px 1px rgba(255, 255, 255, 0.45),
      0 8px 20px rgba(0, 0, 0, 0.4);
  }
  100% {
    box-shadow:
      0 0 24px rgba(176, 64, 128, 0.65),
      0 0 44px rgba(104, 0, 64, 0.35),
      inset 0 0 16px rgba(176, 64, 128, 0.36),
      inset 0 1px 1px rgba(255, 255, 255, 0.55),
      0 10px 24px rgba(0, 0, 0, 0.45);
  }
}

@keyframes nav-link-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes nav-drawer-item-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.main-nav {
  --nav-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --nav-ease: cubic-bezier(0.16, 1, 0.3, 1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border: none;
  padding: env(safe-area-inset-top, 0px) 0 0;
  pointer-events: none;
  transition:
    transform 0.45s var(--nav-ease),
    opacity 0.35s ease;
}

.main-nav.nav-hidden {
  transform: translateY(calc(-100% - 0.75rem));
  opacity: 0;
  pointer-events: none;
}

.nav-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.nav-bubble-orbit {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 248, 230, 0.65), rgba(212, 175, 55, 0.15) 45%, transparent 72%);
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  animation: nav-orbit-float 7s ease-in-out infinite;
}

.nav-bubble-orbit-1 {
  width: 16px;
  height: 16px;
  top: 0.35rem;
  left: 8%;
}

.nav-bubble-orbit-2 {
  width: 10px;
  height: 10px;
  top: 0.15rem;
  right: 18%;
  background: radial-gradient(circle at 30% 30%, rgba(55, 149, 177, 0.75), rgba(55, 149, 177, 0.12) 50%, transparent 72%);
  animation-name: nav-orbit-drift;
  animation-duration: 5.2s;
  animation-delay: 0.5s;
}

.nav-bubble-orbit-3 {
  width: 12px;
  height: 12px;
  bottom: -0.35rem;
  left: 42%;
  background: radial-gradient(circle at 30% 30%, rgba(176, 64, 128, 0.7), rgba(176, 64, 128, 0.12) 50%, transparent 72%);
  animation-delay: 1.1s;
}

.main-nav .nav-container {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem 1.5rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding:
    0.75rem
    max(1.5rem, env(safe-area-inset-right, 0px))
    0.75rem
    max(1.5rem, env(safe-area-inset-left, 0px));
  overflow: visible;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(24, 12, 32, 0.94) 0%, rgba(8, 4, 14, 0.96) 55%, rgba(14, 22, 30, 0.94) 100%);
  border: none;
  border-bottom: 1.5px solid rgba(242, 220, 160, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 14px 44px rgba(0, 0, 0, 0.55),
    0 0 42px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    padding 0.35s ease;
}

/* Soft champagne rim light */
.main-nav .nav-container::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(
    120deg,
    rgba(255, 248, 230, 0.7) 0%,
    rgba(55, 149, 177, 0.35) 22%,
    rgba(212, 175, 55, 0.12) 45%,
    rgba(176, 64, 128, 0.35) 72%,
    rgba(255, 248, 230, 0.55) 100%
  );
  background-size: 220% 220%;
  animation: nav-rail-shimmer 7s ease-in-out infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}

.main-nav .nav-container::after {
  content: '';
  position: absolute;
  top: -25%;
  right: 6%;
  width: 38%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.main-nav.scrolled .nav-container {
  background:
    linear-gradient(135deg, rgba(18, 8, 26, 0.97) 0%, rgba(6, 2, 10, 0.98) 100%);
  border-bottom-color: rgba(242, 220, 160, 0.5);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 18px 50px rgba(0, 0, 0, 0.65),
    0 0 48px rgba(212, 175, 55, 0.14);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

/* Minimal headers (checkout / manage) */
.main-nav .nav-container:not(:has(.nav-actions)) {
  display: flex;
  justify-content: space-between;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
}

.main-nav .nav-container:not(:has(.nav-actions)) .nav-links {
  grid-column: auto;
}

/* Brand — logo only */
.nav-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  justify-self: start;
  min-width: 0;
  max-width: none;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0.1rem 0;
  transition: transform 0.35s var(--nav-spring);
}

.nav-brand-glow,
.nav-brand-text,
.nav-brand-name,
.nav-brand-tag {
  display: none !important;
}

.nav-brand:hover {
  transform: translateY(-1px) scale(1.03);
}

.nav-brand:focus-visible {
  outline: 2px solid rgba(232, 206, 140, 0.75);
  outline-offset: 6px;
  border-radius: 12px;
}

.nav-brand img {
  height: 64px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
  transition: height 0.35s var(--nav-ease), filter 0.35s ease;
  animation: nav-brand-breathe 5.5s ease-in-out infinite;
}

.main-nav.scrolled .nav-brand img {
  height: 52px;
}

.nav-links {
  position: relative;
  z-index: 1;
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.32rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 248, 230, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28) inset;
  grid-column: 2;
}

.nav-links > li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.nav-links > li.nav-pill-slot {
  display: none;
}

.nav-links > li:has(> a:not(.btn-liquid-glass)) + li:has(> a:not(.btn-liquid-glass))::before {
  content: '';
  width: 5px;
  height: 5px;
  margin: 0 0.1rem;
  flex-shrink: 0;
  border-radius: 1px;
  background: linear-gradient(135deg, hsl(38, 75%, 88%), hsl(38, 55%, 52%));
  transform: rotate(45deg);
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-links a:not(.btn-liquid-glass) {
  color: hsl(38, 28%, 94%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  transition:
    color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.3s var(--nav-spring);
}

.nav-links a:not(.btn-liquid-glass)::after {
  display: none;
}

.nav-links a:not(.btn-liquid-glass):hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.14);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.nav-links a:not(.btn-liquid-glass):active {
  transform: translateY(0) scale(0.97);
}

.nav-links a:not(.btn-liquid-glass):focus-visible {
  outline: 2px solid rgba(232, 206, 140, 0.7);
  outline-offset: 2px;
}

.nav-links a.active:not(.btn-liquid-glass) {
  color: #12080f;
  background: var(--gold-gradient);
  font-weight: 800;
  box-shadow:
    0 0 0 1px rgba(255, 248, 230, 0.3) inset,
    0 4px 20px rgba(212, 175, 55, 0.35);
  animation: nav-link-bob 2.8s ease-in-out infinite;
}

.nav-links a.active:not(.btn-liquid-glass):hover {
  color: #12080f;
  background: var(--gold-gradient);
  transform: translateY(-2px) scale(1.04);
}

.nav-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  justify-self: end;
  grid-column: 3;
  min-width: 0;
}

#nav-resy-btn,
.nav-actions #nav-resy-btn,
.nav-links #nav-resy-btn {
  margin: 0 !important;
  flex-shrink: 0;
}

.nav-actions .btn-liquid-glass-sm {
  padding: 0.75rem 1.45rem !important;
  font-size: 0.74rem !important;
  letter-spacing: 0.12em !important;
  border-radius: 999px !important;
  transition:
    transform 0.35s var(--nav-spring),
    box-shadow 0.35s ease,
    border-color 0.3s ease,
    background 0.3s ease !important;
}

.nav-actions .btn-liquid-glass-sm:hover {
  transform: translateY(-2px) scale(1.06);
}

.nav-actions .btn-liquid-glass-sm:active {
  transform: translateY(0) scale(0.96);
}

.main-nav .btn-nav-blue {
  border: 1.5px solid rgba(55, 149, 177, 0.9);
  background: linear-gradient(135deg, rgba(18, 52, 64, 0.95) 0%, rgba(12, 36, 48, 0.92) 100%);
  animation: nav-blue-glow 3.2s ease-in-out infinite alternate;
}

.main-nav .btn-nav-blue .btn-text {
  color: #e8f6fa !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(55, 149, 177, 0.75);
}

.main-nav .btn-nav-blue:hover {
  border-color: rgba(100, 180, 200, 1);
  background: linear-gradient(135deg, rgba(28, 72, 88, 0.97) 0%, rgba(16, 48, 64, 0.95) 100%);
  box-shadow:
    0 0 30px rgba(55, 149, 177, 0.7),
    0 0 55px rgba(55, 149, 177, 0.35),
    inset 0 0 20px rgba(55, 149, 177, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.75),
    0 12px 28px rgba(0, 0, 0, 0.5);
}

.main-nav .btn-nav-blue .liquid-glass-glow {
  background: radial-gradient(
    circle at center,
    rgba(55, 149, 177, 0.55) 0%,
    rgba(64, 136, 168, 0.3) 45%,
    transparent 75%
  );
}

.main-nav .btn-nav-purple {
  border: 1.5px solid rgba(176, 64, 128, 0.9);
  background: linear-gradient(135deg, rgba(72, 16, 52, 0.95) 0%, rgba(48, 8, 36, 0.92) 100%);
  animation: nav-purple-glow 3.2s ease-in-out infinite alternate;
}

.main-nav .btn-nav-purple .btn-text {
  color: #fce8f2 !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(176, 64, 128, 0.75);
}

.main-nav .btn-nav-purple:hover {
  border-color: rgba(210, 100, 160, 1);
  background: linear-gradient(135deg, rgba(96, 24, 68, 0.97) 0%, rgba(64, 12, 48, 0.95) 100%);
  box-shadow:
    0 0 30px rgba(176, 64, 128, 0.7),
    0 0 55px rgba(104, 0, 64, 0.4),
    inset 0 0 20px rgba(176, 64, 128, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.75),
    0 12px 28px rgba(0, 0, 0, 0.5);
}

.main-nav .btn-nav-purple .liquid-glass-glow {
  background: radial-gradient(
    circle at center,
    rgba(176, 64, 128, 0.55) 0%,
    rgba(104, 0, 64, 0.35) 45%,
    transparent 75%
  );
}

.nav-links > li.nav-cta-mobile,
.nav-links > li.nav-resy-mobile {
  display: none;
}

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 998;
  background:
    radial-gradient(ellipse at 80% 12%, rgba(55, 149, 177, 0.1), transparent 45%),
    radial-gradient(ellipse at 20% 80%, rgba(176, 64, 128, 0.12), transparent 50%),
    rgba(4, 1, 8, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s;
}

.main-nav.nav-open .nav-scrim,
body.nav-open .nav-scrim {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.mobile-menu-btn {
  display: none;
  position: relative;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 50%),
    linear-gradient(145deg, rgba(55, 149, 177, 0.32), rgba(104, 0, 64, 0.42));
  border: 1px solid rgba(255, 248, 230, 0.28);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.35s var(--nav-spring), box-shadow 0.3s ease, background 0.3s ease;
  box-shadow:
    0 0 18px rgba(176, 64, 128, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mobile-menu-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 26px rgba(55, 149, 177, 0.4);
}

.mobile-menu-btn span {
  display: block;
  width: 17px;
  height: 2px;
  background: linear-gradient(90deg, #3795b1, #e8ce8c, #b04080);
  border-radius: 999px;
  transition: transform 0.35s var(--nav-spring), opacity 0.25s ease;
  transform-origin: center;
}

@media (max-width: 1180px) {
  .nav-links a:not(.btn-liquid-glass) {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    padding: 0.55rem 0.8rem;
  }

  .nav-actions .btn-liquid-glass-sm {
    padding: 0.65rem 1.1rem !important;
    font-size: 0.7rem !important;
  }
}

@media (max-width: 992px) {
  .main-nav {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-float { display: none; }

  .main-nav .nav-container {
    display: flex;
    justify-content: space-between;
    grid-template-columns: none;
    max-width: none;
    border-radius: 0;
    padding:
      0.65rem
      max(1rem, env(safe-area-inset-right, 0px))
      0.65rem
      max(1rem, env(safe-area-inset-left, 0px));
  }

  .main-nav .nav-container::after { display: none; }

  .mobile-menu-btn {
    display: flex;
    pointer-events: auto;
  }

  .nav-actions #nav-resy-btn,
  .nav-actions #nav-menu-btn {
    display: none !important;
  }

  .nav-links > li.nav-cta-mobile,
  .nav-links > li.nav-resy-mobile {
    display: flex;
    margin-top: 0.35rem;
  }

  .nav-cta-mobile .btn-liquid-glass,
  .nav-resy-mobile .btn-liquid-glass {
    width: 100%;
    justify-content: center;
    border-radius: 999px !important;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 1.4rem));
    height: auto;
    max-height: min(72dvh, calc(100dvh - 7rem));
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background:
      linear-gradient(160deg, rgba(20, 10, 28, 0.98) 0%, rgba(6, 3, 12, 0.99) 100%);
    border: 1.5px solid rgba(232, 206, 140, 0.38);
    border-radius: 26px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1.05rem 0.9rem max(1rem, env(safe-area-inset-bottom, 0px));
    gap: 0.35rem;
    box-shadow:
      0 22px 55px rgba(0, 0, 0, 0.65),
      0 0 34px rgba(212, 175, 55, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(0.96);
    transform-origin: top right;
    transition:
      opacity 0.3s var(--nav-ease),
      transform 0.35s var(--nav-spring),
      visibility 0.3s;
    z-index: 1100;
    grid-column: auto;
  }

  .nav-links::before {
    content: 'Explore';
    font-family: var(--font-heading);
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    padding: 0 0.55rem;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links.active > li:not(.nav-pill-slot) {
    animation: nav-drawer-item-in 0.4s var(--nav-spring) both;
  }

  .nav-links.active > li:nth-child(1) { animation-delay: 0.03s; }
  .nav-links.active > li:nth-child(2) { animation-delay: 0.06s; }
  .nav-links.active > li:nth-child(3) { animation-delay: 0.09s; }
  .nav-links.active > li:nth-child(4) { animation-delay: 0.12s; }
  .nav-links.active > li:nth-child(5) { animation-delay: 0.15s; }
  .nav-links.active > li:nth-child(6) { animation-delay: 0.18s; }
  .nav-links.active > li:nth-child(7) { animation-delay: 0.21s; }

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

  .nav-links > li:has(> a:not(.btn-liquid-glass)) + li:has(> a:not(.btn-liquid-glass))::before {
    display: none;
  }

  .nav-links a:not(.btn-liquid-glass) {
    display: flex;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    padding: 0.9rem 1.05rem;
    border-radius: 18px;
    animation: none;
  }

  .nav-links a.active:not(.btn-liquid-glass) {
    animation: none;
  }

  .mobile-menu-btn.open {
    background:
      radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 50%),
      linear-gradient(145deg, rgba(55, 149, 177, 0.5), rgba(176, 64, 128, 0.52));
    border-color: rgba(232, 206, 140, 0.5);
    box-shadow: 0 0 28px rgba(176, 64, 128, 0.4);
    transform: rotate(90deg) scale(1.04);
  }

  .mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .nav-brand img {
    height: 52px;
  }

  .main-nav.scrolled .nav-brand img {
    height: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-nav .nav-container::before,
  .nav-brand img,
  .nav-bubble-orbit,
  .main-nav .btn-nav-blue,
  .main-nav .btn-nav-purple,
  .nav-links a.active:not(.btn-liquid-glass),
  .nav-links.active > li:not(.nav-pill-slot) {
    animation: none !important;
  }

  .nav-brand,
  .nav-links,
  .nav-actions .btn-liquid-glass-sm,
  .mobile-menu-btn {
    transition: none !important;
  }
}

/* 6. GLASSMORPHIC COMPONENT SYSTEM */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  transition: var(--transition-smooth);
}
 
.glass-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
}
 
/* Buttons */
.btn-gold {
  background: var(--gold-gradient);
  color: #05040a;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  padding: 1rem 2.2rem;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.08);
  display: inline-block;
  text-align: center;
}
 
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
  color: #05040a;
}
 
.btn-outline {
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  background: transparent;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  padding: 0.9rem 2.1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-block;
  text-align: center;
}
 
.btn-outline:hover {
  background: var(--gold-primary);
  color: #05040a;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* 7. HERO SLIDESHOW SYSTEM (FADING) */
.hero-wrapper {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 4, 10, 0.4) 0%,
    rgba(5, 4, 10, 0.75) 50%,
    var(--bg-dark) 100%
  );
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 800px;
  z-index: 3;
}

.hero-tag {
  font-family: var(--font-body);
  color: var(--gold-primary);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1rem;
  display: block;
}

.hero-title-main {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.hero-title-main span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-btn-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Quick Strip Utilities */
/* Quick Strip Utilities */
.quick-strip {
  background: linear-gradient(to bottom, rgba(10, 9, 20, 0) 0%, rgba(6, 2, 8, 0.8) 100%);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
  border-top: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.06);
  padding: 1.5rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.strip-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.2rem 2.2rem;
  border-radius: 50px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.15), 
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.strip-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(180, 100, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.strip-item:hover::before {
  opacity: 1;
}

.strip-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.35), 
    0 0 20px rgba(180, 100, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.strip-item:hover .strip-icon {
  transform: rotate(12deg) scale(1.1);
  background: var(--gold-gradient);
  border-color: transparent;
  color: #0a090f;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

.strip-text {
  z-index: 2;
}

.strip-text h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1.5px;
  margin-bottom: 0.2rem;
  transition: all 0.3s ease;
}

.strip-item:hover .strip-text h4 {
  color: var(--gold-dark);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.strip-text p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
}

/* 8. HOMEPAGE CUSTOM STYLING */
.about-section {
  position: relative;
}

.about-img-box {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.about-img-box:hover .about-img {
  transform: scale(1.08);
}

.showcase-card {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 4s ease;
  z-index: 1;
}

.showcase-card:hover .showcase-bg {
  transform: scale(1.06);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 4, 10, 0.9) 0%, rgba(5, 4, 10, 0.3) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.showcase-overlay h3 {
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  z-index: 3;
}

.showcase-overlay p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  z-index: 3;
}

/* 9. MENU PAGE — CANDLELIT LEDGER */
.menu-header {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.menu-stage {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

/* Segmented tab rail */
.menu-tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 auto 3rem;
  padding: 0.35rem;
  max-width: 820px;
  background: var(--menu-tab-track);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.menu-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-on-glass);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.72rem, 2vw, 0.85rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.3s ease, background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease, transform 0.25s ease;
  position: relative;
  z-index: 1;
}

.menu-tab-btn:hover {
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.06);
  border-color: transparent;
}

.menu-tab-btn.active {
  background: var(--gold-gradient);
  color: #05040a;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 2px 18px rgba(212, 175, 55, 0.35),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.menu-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: hsl(330, 100%, 60%);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 50, 150, 0.6);
  animation: tabPulse 2.5s ease-in-out infinite;
}

/* Digital Menu Container */
.menu-panel {
  display: none;
  animation: menuPanelIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.menu-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes menuCardStagger {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tabPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(255, 50, 150, 0.6); }
  50%      { opacity: 0.55; box-shadow: 0 0 4px rgba(255, 50, 150, 0.3); }
}

@keyframes hhShimmer {
  0%, 100% { transform: translateX(-100%); opacity: 0; }
  50%      { transform: translateX(100%); opacity: 1; }
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  max-width: 960px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tab-btn {
    flex-shrink: 0;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.menu-item-card {
  position: relative;
  background: var(--menu-card-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-lg);
  padding: 1.35rem 1.35rem 1.15rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.4s ease,
              background 0.3s ease;
}

/* Gold left rail */
.menu-item-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--menu-rail-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  transition: top 0.35s ease, bottom 0.35s ease, box-shadow 0.35s ease;
}

.menu-item-card:hover {
  background: var(--menu-card-bg-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45),
              0 0 24px rgba(212, 175, 55, 0.06);
}

.menu-item-card:hover::before {
  top: 6%;
  bottom: 6%;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
}

.menu-item-card--featured {
  border-color: rgba(255, 50, 150, 0.22);
  box-shadow: 0 0 0 1px rgba(255, 50, 150, 0.08),
              0 8px 32px rgba(0, 0, 0, 0.35);
}

.menu-item-card--featured::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 100% 0%, var(--menu-hh-glow) 0%, transparent 70%);
  pointer-events: none;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0;
}

.menu-item-title {
  order: 1;
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 1;
  max-width: 72%;
  line-height: 1.25;
}

/* Dotted price leader between title and price */
.menu-item-header::after {
  content: '';
  order: 2;
  flex: 1;
  min-width: 1rem;
  border-bottom: 1px dotted rgba(212, 175, 55, 0.35);
  transform: translateY(-0.35em);
  opacity: 0.7;
}

.menu-item-price {
  order: 3;
  font-family: var(--font-body);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.15rem;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

.menu-item-desc {
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-on-glass);
  background: var(--menu-inset-bg);
  border: 1px solid var(--menu-inset-border);
  border-radius: var(--border-radius-sm);
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

.menu-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-on-glass-dim);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.menu-item-card:hover .menu-tag {
  border-color: rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
}

.menu-tag.spicy {
  background: rgba(207, 46, 46, 0.12);
  border-color: rgba(207, 46, 46, 0.28);
  color: hsl(0, 75%, 72%);
}

.menu-tag.gf {
  background: rgba(74, 234, 220, 0.1);
  border-color: rgba(74, 234, 220, 0.25);
  color: hsl(174, 65%, 68%);
}

/* Happy Hour banner */
.menu-hh-banner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 1.75rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 50, 150, 0.08) 0%, var(--menu-card-bg) 50%, rgba(212, 175, 55, 0.06) 100%);
  border: 1px solid rgba(255, 50, 150, 0.25);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 40px var(--menu-hh-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}

.menu-hh-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 50, 150, 0.06), transparent);
  animation: hhShimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.menu-hh-banner .hero-tag {
  color: hsl(330, 100%, 65%);
  text-shadow: 0 0 15px rgba(255, 50, 150, 0.45);
  letter-spacing: 0.35em;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.menu-hh-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.menu-hh-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Stagger cards when grid reveals */
.menu-items-grid.reveal-visible .menu-item-card {
  animation: menuCardStagger 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.menu-items-grid.reveal-visible .menu-item-card:nth-child(1) { animation-delay: 0.05s; }
.menu-items-grid.reveal-visible .menu-item-card:nth-child(2) { animation-delay: 0.1s; }
.menu-items-grid.reveal-visible .menu-item-card:nth-child(3) { animation-delay: 0.15s; }
.menu-items-grid.reveal-visible .menu-item-card:nth-child(4) { animation-delay: 0.2s; }
.menu-items-grid.reveal-visible .menu-item-card:nth-child(5) { animation-delay: 0.25s; }
.menu-items-grid.reveal-visible .menu-item-card:nth-child(6) { animation-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .menu-panel,
  .menu-items-grid.reveal-visible .menu-item-card,
  .menu-tab-btn.active::after,
  .menu-hh-banner::before {
    animation: none !important;
  }

  .menu-items-grid.reveal-visible .menu-item-card {
    opacity: 1;
    transform: none;
  }
}

/* PDF Links Box */
.pdf-download-box {
  margin-top: 6rem;
  text-align: center;
  border-top: 1px solid var(--border-glass);
  padding-top: 4rem;
}

.pdf-download-box p {
  color: var(--text-muted);
  max-width: 500px;
  margin-inline: auto;
}

.pdf-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* 10. EVENTS PAGE STYLING & FORMS */
.events-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  height: 450px;
}

.event-main-img, .event-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-glass);
}

@media (max-width: 768px) {
  .events-img-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .event-side-img {
    display: none;
  }
}

/* Form Styles */
.glass-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
}

.form-input {
  background: var(--bg-glass-input);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  padding: 0.9rem 1.2rem;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e0a93a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.2rem;
  padding-right: 3rem;
}

.form-select option {
  background-color: var(--bg-darker);
  color: var(--text-light);
}

/* 11. CONTACT PAGE, INFO, & FOOTER */
.info-row {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.info-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text-light);
}

.info-details p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.map-container {
  height: 480px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(100%);
}

/* Unified Footer */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-glass);
  padding: 5rem 0 2rem;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-brand img {
  height: 55px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-links-box h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

/* Footer Contact Styles */
.footer-contact-box h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact-list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--gold-primary);
}

.contact-hours-divider {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin: 0.4rem 0;
  padding-top: 0.4rem;
}

.footer-contact-list .highlight-text {
  color: var(--gold-primary);
  font-weight: 500;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-input {
  flex-grow: 1;
  background: var(--bg-glass-input);
  border: 1px solid var(--border-glass);
  color: var(--text-light);
  padding: 0.8rem 1rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.newsletter-btn {
  background: var(--gold-gradient);
  border: none;
  color: #05040a;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.25);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* Success Validation Toasts */
.validation-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--success);
  border-radius: var(--border-radius-sm);
  padding: 1rem 2rem;
  color: var(--text-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.validation-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success-icon {
  color: var(--success);
  font-size: 1.2rem;
  font-weight: bold;
}
 
/* 12. ADVANCED ANIMATIONS & SCROLL REVEALS */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
@keyframes textLetterSpacing {
  from {
    letter-spacing: 0px;
    opacity: 0;
  }
  to {
    letter-spacing: 2px;
    opacity: 1;
  }
}
 
/* Fallback & Initial State for Scroll Reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}
 
.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
 
/* Modern Native Scroll-Driven Animations using View Timeline */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .reveal-on-scroll {
      animation: revealUp auto linear backwards;
      animation-timeline: view();
      animation-range: entry 10% entry 45%;
      /* Avoid resetting transition properties for browsers that support scroll timelines natively */
      transition: none;
      opacity: 1;
      transform: none;
    }
  }
}
 
/* Character/Heading Keyframe Trigger */
.animate-title {
  animation: textLetterSpacing 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
 
/* 13. LOUNGE & BAR MASONRY GALLERY */
.lounge-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
 
.gallery-item {
  position: relative;
  height: 380px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: var(--transition-smooth);
  cursor: pointer;
}
 
/* Masonry variations for premium staggered visual flow */
.gallery-item.tall {
  grid-row: span 2;
  height: 784px;
}
 
.gallery-item.wide {
  grid-column: span 2;
}
 
.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
 
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 4, 10, 0.85) 0%, rgba(5, 4, 10, 0.1) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition-smooth);
  z-index: 2;
}
 
.gallery-item-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}
 
.gallery-item-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  transform: translateY(15px);
  transition: var(--transition-smooth);
  transition-delay: 0.05s;
}
 
/* Hover effects */
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.03);
}
 
.gallery-item:hover .gallery-item-img {
  transform: scale(1.06);
}
 
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
 
.gallery-item:hover .gallery-item-info h4,
.gallery-item:hover .gallery-item-info p {
  transform: translateY(0);
}
 
@media (max-width: 992px) {
  .lounge-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item, .gallery-item.tall {
    height: 320px;
    grid-row: auto;
    grid-column: auto;
  }
}
 
@media (max-width: 576px) {
  .lounge-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* 14. PARALLAX BANNER SECTION */
.parallax-banner {
  position: relative;
  height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.parallax-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(5, 4, 10, 0.45) 0%, rgba(5, 4, 10, 0.85) 100%);
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
}

.parallax-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.parallax-content h2::after {
  display: none; /* Turn off under-bar for the parallax headline */
}

.parallax-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .parallax-banner {
    background-attachment: scroll;
    height: 350px;
  }
}

/* ==========================================================================
   BESPOKE GLASSMORPHIC RESERVATION WIZARD MODAL SYSTEM
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 4, 8, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: none; /* Controlled via JS */
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  background: rgba(10, 10, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7), 0 0 40px rgba(255, 255, 255, 0.02);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* Quick View Modal Styles */
.quick-view-modal {
  width: 900px;
  max-width: 95vw;
  padding: 0;
  overflow: hidden;
}

.qv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.qv-image-col {
  background: var(--bg-dark);
}

.qv-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.qv-info-col {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .qv-grid {
    grid-template-columns: 1fr;
  }
  .qv-image-col {
    height: 300px;
  }
  .qv-info-col {
    padding: 2rem 1.5rem;
  }
}

.reservation-step {
  display: none;
}

.reservation-step.active {
  display: block;
  animation: fadeInStep 0.4s ease forwards;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 0.8rem 1.1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

input[type="date"].form-input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  max-height: none !important;
  overflow: visible !important;
  padding: 2px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 568px) {
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.checkmark-animation {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(20, 200, 100, 0.1);
  border: 2px solid var(--success);
  color: var(--success);
  font-size: 2.2rem;
  animation: scaleCheckmark 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleCheckmark {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.receipt-card {
  border-left: 3px solid #fff !important;
}

/* 
   ==========================================================================
   CINEMATIC SCROLL-DRIVEN VIDEO REDESIGN & NEON MIDNIGHT STYLES
   ========================================================================== */

/* Neon Midnight Custom Tokens */
:root {
  --neon-magenta: hsl(38, 90%, 55%); /* Molten Liquid Gold */
  --neon-blue: hsl(152, 70%, 45%); /* Botanical Emerald Green */
  --neon-purple: hsl(24, 90%, 50%); /* Alchemical Copper */
  --neon-glow-pink: 0 0 25px rgba(212, 175, 55, 0.4), 0 0 50px rgba(212, 175, 55, 0.2);
  --neon-glow-blue: 0 0 25px rgba(16, 185, 129, 0.4), 0 0 50px rgba(16, 185, 129, 0.2);
}

/* Page Obsidian-Midnight Override */
body {
  background-color: transparent !important; /* Let the fixed WebGL background canvas animate natively behind all cards and subpages */
  position: relative;
}

/* Ambient Radial Spot-Glows */
.ambient-glow-pink {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.ambient-glow-blue {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* 3-Layer Parallax Hero Canvas & Sticky Track */
.hero-sticky-track {
  position: relative;
  width: 100%;
  height: 650vh; /* Slows down the video scrubbing pace cinematically */
  background: transparent !important;
}

.hero-parallax-canvas {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
}

.hero-parallax-canvas.sticky-canvas {
  position: sticky;
  top: 0;
  z-index: 10;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}

/* Layer 1: Background Large Outline Text */
.layer-bg {
  z-index: 1;
  font-family: var(--font-heading);
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 950;
  letter-spacing: 0.25em;
  text-indent: 0.25em; /* Perfectly balance the centering */
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.07);
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.01);
  user-select: none;
  white-space: nowrap;
}

/* Layer 2: Middle Cinematic Portal Card */
.layer-portal {
  z-index: 2;
  pointer-events: auto; /* Allow interactive hovering and sub-controls */
}

.cinematic-portal-container {
  position: relative;
  width: 78vw;
  max-width: 820px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.85);
  border-radius: 0px; /* Rounded via requestAnimationFrame interpolation */
  will-change: transform, border-radius;
}

/* Rotating Neon Double Border Glow */
.neon-glow-ring {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  z-index: 1;
  background: conic-gradient(
    from 0deg,
    var(--neon-magenta) 0%,
    var(--neon-blue) 25%,
    var(--neon-purple) 50%,
    var(--neon-blue) 75%,
    var(--neon-magenta) 100%
  );
  border-radius: inherit;
  animation: rotateGlow 7s linear infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.cinematic-portal-container.video-state-card .neon-glow-ring {
  opacity: 1;
}

.cinematic-portal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  background: #000;
}

.cinematic-video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) contrast(1.05) saturate(1.05);
  transform: scale(1.02);
  transition: filter 0.5s ease;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Layer 3: Foreground Content Overlays */
.layer-fg {
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: auto;
}

/* Glassmorphism Cards Optimization */
.glass-card.frosted {
  background: rgba(10, 9, 20, 0.6) !important;
  backdrop-filter: blur(28px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7) !important;
}

.glass-card.frosted:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8) !important;
}

/* Miniature Portal Banners for Subpages */
.subpage-portal-header {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: auto !important;
  overflow: visible;
  background: transparent !important; /* Remove muddy solid backing to let WebGL beams flow */
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none !important; /* Remove harsh divider lines */
  padding-top: 132px !important; /* Clear full-bleed stage bar */
  padding-bottom: 2.5rem !important;
}

.subpage-portal-container {
  position: relative;
  width: 90vw;
  max-width: 1000px;
  height: auto !important;
  min-height: 360px;
  padding: 3.5rem 2rem !important;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 25px 55px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 30px rgba(139, 92, 246, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(14, 6, 20, 0.35) !important; /* Translucent grape glass backplate */
  backdrop-filter: blur(25px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(145%) !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.subpage-portal-container .cinematic-video-el {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.subpage-portal-container:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(212, 175, 55, 0.3) !important; /* Shimmering gold outline highlights */
  box-shadow: 
    0 35px 75px rgba(0, 0, 0, 0.65), 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 45px rgba(139, 92, 246, 0.2) !important; /* Radiant Amethyst glow scattering */
}

/* Coordinates-reactive dynamic spotlight backplate glow */
.subpage-portal-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(139, 92, 246, 0.14) 0%, /* Amethyst core */
    rgba(212, 175, 55, 0.04) 50%, /* Soft warm gold halo */
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.subpage-portal-container:hover::before {
  opacity: 1;
}

/* Conic border-beam neon sweep highlight on hover */
.subpage-portal-container::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg), 
    transparent 30%, 
    rgba(212, 175, 55, 0.45) 50%, 
    rgba(139, 92, 246, 0.8) 70%, 
    transparent 90%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  animation: rotate-beam 8s linear infinite;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.subpage-portal-container:hover::after {
  opacity: 0.65;
}

/* Beautiful amethyst gradient overlay on card contents to replace dark inline backing */
.subpage-portal-container > div {
  background: linear-gradient(
    to bottom, 
    rgba(14, 6, 20, 0.2) 0%, 
    rgba(6, 2, 8, 0.45) 50%, 
    rgba(14, 6, 20, 0.75) 100%
  ) !important;
  z-index: 2;
}

/* Shimmering gold text tag override to match the brand identity */
.subpage-portal-container .hero-tag {
  color: #d4af37 !important;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4) !important;
  font-weight: 600 !important;
}

/* Cinematic Title Accents */
.hero-title-large {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 40%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 45px rgba(255, 255, 255, 0.15);
  margin-bottom: 0.5rem;
}

.hero-subtitle-glow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-on-glass);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.28);
  margin-bottom: 2.5rem;
}

/* ==========================================================================
   ATMOSPHERIC VAPOR INFUSION HERO SYSTEM
   ========================================================================== */
.hero-content-infuse {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 100%;
}

.hero-tag-infuse {
  font-family: var(--font-body);
  letter-spacing: 0.85em; /* Condensing tracking */
  text-transform: uppercase;
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  font-weight: 600;
  color: var(--neon-magenta);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.45);
  margin-bottom: 0.5rem;
  display: block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-20px);
  animation: infuse-tag-condense 2.0s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
  will-change: transform, opacity, filter, letter-spacing;
}

/* ==========================================================================
   GOOEY LIQUID TEXT MORPHER STYLING
   ========================================================================== */
.gooey-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.gooey-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: clamp(140px, 25vh, 230px);
  width: 100%;
  max-width: 1000px;
  overflow: visible;
  margin-bottom: 1.5rem;
}

.gooey-text-el {
  position: absolute;
  display: inline-block;
  user-select: none;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
  
  /* Fluid responsive sizing to prevent wrapping on mobile */
  font-size: clamp(1.8rem, 6.2vw, 4.8rem);
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  
  /* Luxury Liquid Metal Shimmer */
  background: linear-gradient(
    135deg, 
    #ffffff 0%, 
    #ffffff 20%, 
    #d4af37 40%, 
    var(--neon-magenta) 55%, 
    var(--neon-blue) 75%,
    #d4af37 88%, 
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Deep ambient glowing dropshadow under the SVG matrix contrast */
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.2));
  
  opacity: 0;
  transform: scale(0.96);
  will-change: transform, opacity, filter;
  
  /* Elegant slow gradient flow */
  animation: infuse-gradient-flow 12s linear infinite;
}

.hero-btn-row-infuse {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  
  opacity: 0;
  transform: translateY(15px);
  animation: infuse-btn-fade 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.3s;
  will-change: transform, opacity;
}

/* Atmospheric Vapor Animation Keyframes */
@keyframes infuse-tag-condense {
  0% {
    opacity: 0;
    filter: blur(12px);
    letter-spacing: 0.85em;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    letter-spacing: 0.45em;
    transform: translateY(0);
  }
}

@keyframes infuse-text-glow {
  0% {
    opacity: 0;
    filter: blur(25px);
    letter-spacing: 0.9em;
    transform: scale(1.15);
  }
  40% {
    opacity: 0.35;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    letter-spacing: 0.25em; /* Fuses together cleanly */
    transform: scale(1);
  }
}

@keyframes infuse-gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes infuse-sub-glow {
  0% {
    opacity: 0;
    filter: blur(15px);
    letter-spacing: 0.9em;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    letter-spacing: 0.5em;
    transform: translateY(0);
  }
}

@keyframes infuse-btn-fade {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-prompt-cinematic {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: floatPrompt 2.5s ease-in-out infinite;
}

.scroll-prompt-indicator {
  width: 1px;
  height: 45px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-prompt-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--neon-blue);
  animation: promptPulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes floatPrompt {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); opacity: 0.8; }
}

@keyframes promptPulse {
  0% { transform: translateY(-100%); }
  80%, 100% { transform: translateY(100%); }
}

/* Neon Text Accents */
.text-neon-pink {
  color: var(--neon-magenta);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.text-neon-blue {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.parallax-section {
  position: relative;
  background: transparent !important;
  z-index: 10;
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-portal-container {
    transform: none !important;
    border-radius: 16px !important;
    width: 85vw !important;
  }
  /* Keep absolute stacking — do not flatten layers (breaks hero layout) */
  .parallax-layer {
    transform: none !important;
  }
  .scroll-prompt-cinematic {
    animation: none !important;
    display: none !important;
  }
  .subpage-portal-container .cinematic-video-el {
    animation: none !important;
  }
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* Lightweight motion path: phones, tablets, Save-Data, reduced-motion (via .motion-lite) */
html.motion-lite .hero-sticky-track {
  height: auto !important;
  min-height: 100svh;
}
html.motion-lite .hero-parallax-canvas.sticky-canvas {
  position: relative;
  height: auto;
  min-height: 100svh;
  padding: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4.5rem)) 1.25rem max(2rem, env(safe-area-inset-bottom, 0px));
}
html.motion-lite .cinematic-portal-container.cinematic-portal-fullscreen {
  width: 100%;
  max-width: none;
  height: min(52vh, 420px);
  aspect-ratio: auto;
  border-radius: 18px;
}
html.motion-lite .narrative-slide-container,
html.motion-lite .scroll-prompt-cinematic {
  display: none !important;
}
html.motion-lite .gooey-text-container {
  filter: none !important;
}
html.motion-lite .parallax-layer {
  will-change: auto;
}
html.motion-lite .subpage-portal-container .cinematic-video-el {
  animation: none !important;
  will-change: auto;
}
html.viewport-short .scroll-prompt-cinematic {
  display: none !important;
}
html.viewport-short .gooey-text-container {
  height: clamp(64px, 10vh, 100px) !important;
  margin-bottom: 0.75rem !important;
}

/* ==========================================================================
   SCROLL-DRIVEN NARRATIVE & TIMELINE OVERLAYS
   ========================================================================== */

/* Narrative Slide Wrappers for Homepage (Overlayed Sticky System) */
.narrative-slide-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background: transparent;
  pointer-events: none;
}

.narrative-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  pointer-events: none;
}

.narrative-glow-card {
  width: 90%;
  max-width: 580px;
  padding: 3rem 2.5rem;
  background: rgba(8, 22, 16, 0.45) !important;
  backdrop-filter: blur(35px) saturate(130%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(16, 185, 129, 0.05);
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease;
  pointer-events: auto; /* Re-enable clicks for content inside */
}

.narrative-glow-card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.narrative-glow-card:hover {
  border-color: rgba(212, 175, 55, 0.3) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 50px rgba(212, 175, 55, 0.1);
}

.narrative-glow-card .hero-tag {
  color: var(--neon-magenta);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.narrative-glow-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.narrative-glow-card p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

/* Adjust quick-strip and subsequent sections for clean layering */
.quick-strip {
  position: relative;
  z-index: 20;
  background: rgba(6, 2, 8, 0.65);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.about-section {
  position: relative;
  z-index: 20;
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC FULLSCREEN STICKY-SCROLL CINEMATIC LAYOUT
   ========================================================================== */

/* Fullscreen cinematic layout wrapper */
.contact-hero-cinematic-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
}

/* Fullscreen background video portal - absolute inside sticky canvas */
#contact-portal-card {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  z-index: 1 !important;
  overflow: hidden;
  border-radius: 0px !important;
  transform: none !important;
  pointer-events: none;
}

.cinematic-portal {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#contact-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05); /* Initial subtle zoom for premium spring scaling */
  will-change: transform;
}

/* Cinematic Ambient Vignette Overlay - absolute inside sticky canvas */
.contact-page .cinematic-vignette {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: radial-gradient(circle at center, rgba(10, 9, 20, 0.05) 0%, rgba(6, 2, 8, 0.35) 40%, rgba(6, 2, 8, 0.7) 75%, rgba(10, 9, 20, 0.92) 100%) !important;
  z-index: 2 !important;
  pointer-events: none;
}

/* Cyber grid - absolute inside sticky canvas */
.contact-page .cyber-grid {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 3 !important;
  pointer-events: none;
}

/* Ambient Aurora Blooms - absolute inside sticky canvas */
.contact-page .ambient-aurora-bg {
  position: absolute !important;
  z-index: 4 !important;
  pointer-events: none;
}

/* Integrated site footer positioned completely below the sticky track */
.contact-page .site-footer {
  margin-top: 0 !important;
  padding-top: 4rem !important;
  position: relative;
  z-index: 20 !important;
  background: #030806 !important;
  border-top: 1px solid var(--border-glass) !important;
}

/* Centered Narrative Overlay Stack */
.contact-narratives-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Text Overlay Intro formatting */
#contact-parallax-fg-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 8;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-narrative-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.93);
  width: 90%;
  max-width: 580px;
  padding: 3rem 2.5rem;
  background: rgba(8, 22, 16, 0.52) !important;
  backdrop-filter: blur(40px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 28px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.85), 
              0 0 50px rgba(16, 185, 129, 0.02),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.contact-narrative-card.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.0);
  pointer-events: auto;
}

.contact-narrative-card:hover {
  border-color: rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.9), 
              0 0 60px rgba(212, 175, 55, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-narrative-card .hero-tag {
  color: var(--neon-magenta);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.contact-narrative-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-narrative-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Contact slide-level micro elements */
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.strip-item-mini {
  padding: 0.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.strip-item-mini:hover {
  transform: translateY(-3px);
}

.strip-item-mini h4 {
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Custom dark styling for subpage map */
.map-container-mini {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  height: 100%;
  min-height: 200px;
}

.map-container-mini iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(100%);
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* Mobile Responsive Collapse */
@media (max-width: 1024px) {
  .contact-narrative-card {
    padding: 2.5rem 2rem;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .contact-narrative-card {
    padding: 2rem 1.5rem;
    max-width: 440px;
    border-radius: 20px;
  }
  
  .contact-strip-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .contact-narrative-card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .contact-narrative-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .map-container-mini {
    min-height: 140px;
    height: 140px;
  }
}

@media (max-width: 480px) {
  .contact-narrative-card {
    padding: 1.5rem 1.25rem;
    max-width: 92%;
  }
  
  .contact-narrative-card h2 {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   21ST.DEV INSPIRED PREMIUM INTERACTIVE & VISUAL COMPONENTS
   ========================================================================== */

/* Cursor Spotlight Glow Border for Narrative Cards */
.contact-narrative-card {
  position: absolute;
  overflow: hidden;
}

.contact-narrative-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(212, 175, 55, 0.4),
    rgba(16, 185, 129, 0.25) 50%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.contact-narrative-card:hover::before {
  opacity: 1;
}

/* Ambient Aurora Dynamic Color Blooms */
.ambient-aurora-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: min(650px, 90vw);
  height: min(650px, 90vw);
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.ambient-aurora-bg.active {
  transform: translate(-50%, -50%) scale(1.0);
}

#aurora-magenta {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
}

#aurora-cyan {
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0.05) 50%, transparent 70%);
}

#aurora-purple {
  background: radial-gradient(circle, rgba(242, 110, 40, 0.16) 0%, rgba(242, 110, 40, 0.05) 50%, transparent 70%);
}

/* ==========================================================================
   21ST.DEV EXTENDED LAYOUTS, BORDER BEAMS, SCRUBBER DOCKS & MAGNETIC CTAS
   ========================================================================== */

/* 1. Cyber Midnight Vector Grid underlay */
.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Sits above background video but below active glass overlays */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 45%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.45) 45%, transparent 75%);
  pointer-events: none;
  opacity: 0.65;
}

/* 2. Rotating Border Beam CSS Properties and Keyframes */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-beam {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}

.border-beam-card {
  position: relative;
}

.border-beam-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--angle), transparent 30%, var(--neon-magenta) 50%, var(--neon-blue) 70%, transparent 90%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 12;
  opacity: 0;
  animation: rotate-beam 7s linear infinite;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.border-beam-card.active::after {
  opacity: 1;
}

/* 3. Floating Scrubber / Vertical Dot Navigation Dock */
.floating-scrubber-dock {
  position: fixed;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.6rem;
  z-index: 100;
  pointer-events: auto;
}

.scrubber-node {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.4rem;
  pointer-events: auto;
  position: relative;
  transition: transform 0.3s ease;
}

.scrubber-label {
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              color 0.35s ease;
  pointer-events: none;
  font-weight: 500;
}

.scrubber-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  transition: background 0.45s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: background, border-color, box-shadow, transform;
}

/* Connective line flowing underneath all dots */
.floating-scrubber-dock::before {
  content: '';
  position: absolute;
  right: 12px; /* Centers with the 10px dot inside the padding bounds */
  top: 15px;
  bottom: 15px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.12) 15%,
    rgba(255, 255, 255, 0.12) 85%,
    rgba(255, 255, 255, 0.02) 100%
  );
  z-index: -1;
  pointer-events: none;
}

/* Interactive Hover States */
.scrubber-node:hover .scrubber-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--text-light);
}

.scrubber-node:hover .scrubber-dot {
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.25);
}

/* Active State Mapped by Scroll Timeline progress */
.scrubber-node.active .scrubber-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--neon-magenta);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.scrubber-node.active .scrubber-dot {
  background: var(--neon-magenta);
  border-color: var(--neon-magenta);
  box-shadow: 0 0 15px var(--neon-magenta), 0 0 5px rgba(212, 175, 55, 0.5);
  transform: scale(1.45);
}

/* Hide scrubber dock on small mobile viewports to prevent layout clutter */
@media (max-width: 900px) {
  .floating-scrubber-dock {
    display: none;
  }
}

/* 4. Sheen Highlights for Buttons */
.btn-gold, .btn-outline {
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.18s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.3s ease, 
              border-color 0.3s ease, 
              background-color 0.3s ease, 
              color 0.3s ease;
}

.btn-gold::after, .btn-outline::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 130%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent 100%
  );
  transform: skewX(-28deg);
  transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
  pointer-events: none;
}

.btn-gold:hover::after, .btn-outline:hover::after {
  left: 150%;
}

/* Custom Cinematic Video Portal Fullscreen Override */
.cinematic-portal-fullscreen {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Homepage cinematic overrides: seamless video mask, floating amethyst pills, and visual blend */
.hero-parallax-canvas .cinematic-portal {
  mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%) !important;
}

.hero-parallax-canvas .cinematic-vignette {
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(circle at center, rgba(10, 9, 20, 0) 30%, rgba(6, 2, 8, 0.2) 65%, rgba(10, 9, 20, 0.75) 100%) !important;
  z-index: 5 !important;
  pointer-events: none;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 75%, transparent 100%) !important;
}

/* Homepage frosted glass quick-strip overlapping and bleeding seamlessly */
.quick-strip {
  margin-top: -6rem !important; /* Pulls up to seamlessly overlap the fading video hero */
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
  position: relative;
  z-index: 20 !important;
  background: linear-gradient(
    to bottom, 
    rgba(10, 9, 20, 0) 0%, 
    rgba(10, 9, 20, 0.25) 45%, 
    rgba(10, 9, 20, 0.75) 100%
  ) !important; /* Extremely soft dark purple blend */
  backdrop-filter: none !important; /* Let the sharp, clear WebGL beams shine through the screen background */
  -webkit-backdrop-filter: none !important;
  border: none !important; /* Remove harsh screen-wide borders */
  box-shadow: none !important; /* Remove screen-wide shadow lines */
}

/* Float-in glassmorphic amethyst pills for quick information */
.quick-strip .strip-item {
  background: rgba(14, 6, 20, 0.45) !important; /* Rich Obsidian-Amethyst translucent glass */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.3), 
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 25px rgba(139, 92, 246, 0.06) !important; /* Soft royal purple scatter glow */
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.quick-strip .strip-item:hover {
  transform: translateY(-6px) scale(1.03) !important;
  background: rgba(22, 10, 32, 0.6) !important;
  border-color: rgba(212, 175, 55, 0.3) !important; /* Molten champagne gold highlight */
  box-shadow: 
    0 22px 45px rgba(0, 0, 0, 0.45), 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 35px rgba(212, 175, 55, 0.25) !important; /* Molten gold magnetic aura */
}

/* ==========================================================================
   CINEMATIC OFF-CENTER LAYOUTS & STAGGERED ELEMENT REVEAL ANIMATIONS
   ========================================================================== */

/* 1. Improved Readability: Sharper text contrasts and glows */
.narrative-glow-card h2,
.contact-narrative-card h2 {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  letter-spacing: 3px !important;
}

.narrative-glow-card p,
.contact-narrative-card p {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.92) !important; /* Slightly boosted for legibility */
}

/* 2. Interactive Staggered Slide-Up Entrance on Card Activation */
.narrative-glow-card .hero-tag,
.narrative-glow-card h2,
.narrative-glow-card p,
.narrative-glow-card a,
.contact-narrative-card .hero-tag,
.contact-narrative-card h2,
.contact-narrative-card p,
.contact-narrative-card .contact-strip-grid,
.contact-narrative-card .map-container-mini,
.contact-narrative-card form,
.contact-narrative-card .btn-outline {
  opacity: 0 !important;
  transform: translateY(22px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Active transitions with staggered delay offsets */
.narrative-glow-card.active .hero-tag,
.contact-narrative-card.active .hero-tag {
  opacity: 1 !important;
  transform: translateY(0) scale(1);
  transition-delay: 0.12s;
}

.narrative-glow-card.active h2,
.contact-narrative-card.active h2 {
  opacity: 1 !important;
  transform: translateY(0) scale(1);
  transition-delay: 0.24s;
}

.narrative-glow-card.active p,
.contact-narrative-card.active p {
  opacity: 1 !important;
  transform: translateY(0) scale(1);
  transition-delay: 0.36s;
}

.narrative-glow-card.active a,
.contact-narrative-card.active .contact-strip-grid,
.contact-narrative-card.active .map-container-mini,
.contact-narrative-card.active form,
.contact-narrative-card.active .btn-outline {
  opacity: 1 !important;
  transform: translateY(0) scale(1);
  transition-delay: 0.48s;
}

/* 3. Off-Center Desktop Layout: Shift panels sideways to un-block video center */
@media (min-width: 901px) {
  /* Homepage: Left-align Slide 1 (Pour) and Right-align Slide 2 (Tapas) */
  #narrative-slide-1 {
    justify-content: flex-start !important;
    padding-left: 9% !important;
  }
  
  #narrative-slide-2 {
    justify-content: flex-end !important;
    padding-right: 9% !important;
  }

  .narrative-glow-card {
    max-width: 470px !important;
    text-align: left !important;
    background: rgba(8, 22, 16, 0.38) !important; /* Premium higher-transparency glass */
    backdrop-filter: blur(28px) saturate(140%) !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75), 0 0 60px rgba(16, 185, 129, 0.03) !important;
  }
  
  .narrative-glow-card a {
    align-self: flex-start;
  }

  /* Contact Page: Shift panels alternately to expose rich background dimensions */
  #contact-card-1 {
    left: 9% !important;
    transform: translate(0, -46%) scale(0.93) !important;
    max-width: 470px !important;
    background: rgba(10, 8, 20, 0.38) !important;
    backdrop-filter: blur(28px) saturate(140%) !important;
  }
  #contact-card-1.active {
    transform: translate(0, -50%) scale(1.0) !important;
  }

  #contact-card-2 {
    left: auto !important;
    right: 9% !important;
    transform: translate(0, -46%) scale(0.93) !important;
    max-width: 470px !important;
    background: rgba(10, 8, 20, 0.38) !important;
    backdrop-filter: blur(28px) saturate(140%) !important;
  }
  #contact-card-2.active {
    transform: translate(0, -50%) scale(1.0) !important;
  }

  #contact-card-3 {
    left: 9% !important;
    transform: translate(0, -46%) scale(0.93) !important;
    max-width: 480px !important;
    background: rgba(10, 8, 20, 0.38) !important;
    backdrop-filter: blur(28px) saturate(140%) !important;
  }
  #contact-card-3.active {
    transform: translate(0, -50%) scale(1.0) !important;
  }
}

/* ==========================================================================
   9. MAGNETIC LIQUID GLASS BUTTONS (PERSISTENT HYPER-GLOW & HIGH READABILITY)
   ========================================================================== */
.btn-liquid-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-body), sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff !important;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  z-index: 10;
  --x: 50%;
  --y: 50%;
  cursor: pointer;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95);
}

.btn-liquid-glass:hover {
  transform: translateY(-4px) scale(1.04);
}

.btn-liquid-glass:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-liquid-glass .btn-text {
  position: relative;
  z-index: 3;
  pointer-events: none;
  font-weight: 800;
  letter-spacing: 2.2px;
}

/* Base Gloss Shimmer Layer - Persistent ambient specular highlight */
.btn-liquid-glass .liquid-glass-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at var(--x) var(--y),
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.05) 45%,
    rgba(255, 255, 255, 0) 70%
  );
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
  opacity: 0.6;
}

.btn-liquid-glass:hover .liquid-glass-shimmer {
  opacity: 1;
}

/* Base Liquid Glow Layer - ALWAYS ACTIVE RADIANT LIGHT CORE */
.btn-liquid-glass .liquid-glass-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate(calc(var(--x) - 50%), calc(var(--y) - 50%));
}

.btn-liquid-glass:hover .liquid-glass-glow {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gold Button Specific Style (Explore Menu - Radiant Golden Aura) */
.btn-lg-gold {
  border: 1.5px solid rgba(255, 215, 0, 0.8);
  background: linear-gradient(135deg, rgba(32, 24, 6, 0.88) 0%, rgba(18, 14, 4, 0.82) 100%);
  box-shadow: 
    0 0 22px rgba(212, 175, 55, 0.6),
    0 0 45px rgba(255, 215, 0, 0.3),
    0 0 70px rgba(212, 175, 55, 0.15),
    inset 0 0 16px rgba(255, 215, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    0 10px 25px rgba(0, 0, 0, 0.5);
  animation: gold-always-glow 3.5s ease-in-out infinite alternate;
}

.btn-lg-gold .btn-text {
  color: #FFF9E6 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 0 14px rgba(255, 215, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.6);
}

.btn-lg-gold:hover {
  border-color: rgba(255, 235, 130, 1);
  background: linear-gradient(135deg, rgba(45, 34, 8, 0.95) 0%, rgba(26, 20, 5, 0.9) 100%);
  box-shadow: 
    0 0 35px rgba(212, 175, 55, 0.9),
    0 0 70px rgba(255, 215, 0, 0.6),
    0 0 100px rgba(212, 175, 55, 0.35),
    inset 0 0 25px rgba(255, 215, 0, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    0 15px 35px rgba(0, 0, 0, 0.6);
}

.btn-lg-gold .liquid-glass-glow {
  background: radial-gradient(
    circle at center,
    rgba(255, 215, 0, 0.5) 0%,
    rgba(212, 175, 55, 0.3) 38%,
    rgba(212, 175, 55, 0) 75%
  );
}

/* Outline Button Specific Style (Reserve Table - Electric Cyan / Magenta Pulsing Aura) */
.btn-lg-outline {
  border: 1.5px solid rgba(0, 229, 255, 0.8);
  background: linear-gradient(135deg, rgba(6, 20, 32, 0.88) 0%, rgba(20, 8, 28, 0.82) 100%);
  box-shadow: 
    0 0 22px rgba(0, 229, 255, 0.55),
    0 0 45px rgba(236, 72, 153, 0.35),
    0 0 70px rgba(0, 229, 255, 0.15),
    inset 0 0 16px rgba(0, 229, 255, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.7),
    0 10px 25px rgba(0, 0, 0, 0.5);
  animation: neon-always-glow 3.5s ease-in-out infinite alternate;
}

.btn-lg-outline .btn-text {
  color: #FFFFFF !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.95), 0 0 14px rgba(0, 229, 255, 0.9), 0 0 25px rgba(236, 72, 153, 0.6);
}

.btn-lg-outline:hover {
  border-color: rgba(140, 240, 255, 1);
  background: linear-gradient(135deg, rgba(10, 30, 48, 0.95) 0%, rgba(30, 12, 40, 0.9) 100%);
  box-shadow: 
    0 0 35px rgba(0, 229, 255, 0.85),
    0 0 70px rgba(236, 72, 153, 0.65),
    0 0 100px rgba(0, 229, 255, 0.35),
    inset 0 0 25px rgba(0, 229, 255, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.9),
    0 15px 35px rgba(0, 0, 0, 0.6);
}

.btn-lg-outline .liquid-glass-glow {
  background: radial-gradient(
    circle at center,
    rgba(0, 229, 255, 0.45) 0%,
    rgba(236, 72, 153, 0.35) 45%,
    rgba(0, 0, 0, 0) 75%
  );
}

/* Keyframes for Persistent Ambient Glowing Auras */
@keyframes gold-always-glow {
  0% {
    box-shadow: 
      0 0 18px rgba(212, 175, 55, 0.5),
      0 0 35px rgba(255, 215, 0, 0.25),
      0 0 55px rgba(212, 175, 55, 0.12),
      inset 0 0 12px rgba(255, 215, 0, 0.3),
      inset 0 1px 1px rgba(255, 255, 255, 0.6),
      0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.7);
  }
  100% {
    box-shadow: 
      0 0 30px rgba(212, 175, 55, 0.85),
      0 0 60px rgba(255, 215, 0, 0.45),
      0 0 85px rgba(212, 175, 55, 0.25),
      inset 0 0 22px rgba(255, 215, 0, 0.5),
      inset 0 1px 2px rgba(255, 255, 255, 0.9),
      0 12px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 235, 120, 0.95);
  }
}

@keyframes neon-always-glow {
  0% {
    box-shadow: 
      0 0 18px rgba(0, 229, 255, 0.5),
      0 0 35px rgba(236, 72, 153, 0.3),
      0 0 55px rgba(0, 229, 255, 0.12),
      inset 0 0 12px rgba(0, 229, 255, 0.3),
      inset 0 1px 1px rgba(255, 255, 255, 0.6),
      0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 229, 255, 0.7);
  }
  100% {
    box-shadow: 
      0 0 30px rgba(0, 229, 255, 0.85),
      0 0 60px rgba(236, 72, 153, 0.55),
      0 0 85px rgba(0, 229, 255, 0.25),
      inset 0 0 22px rgba(0, 229, 255, 0.5),
      inset 0 1px 2px rgba(255, 255, 255, 0.9),
      0 12px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(140, 240, 255, 0.95);
  }
}

/* Hero Section Dedicated Ambient Projection Domes */
.hero-btn-row-infuse .btn-liquid-glass {
  position: relative;
}

.hero-btn-row-infuse .btn-liquid-glass::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 60px;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.hero-btn-row-infuse .btn-lg-gold::before {
  background: radial-gradient(circle, rgba(255, 215, 0, 0.45) 0%, rgba(212, 175, 55, 0.2) 50%, transparent 80%);
}

.hero-btn-row-infuse .btn-lg-outline::before {
  background: radial-gradient(circle, rgba(0, 229, 255, 0.45) 0%, rgba(236, 72, 153, 0.25) 50%, transparent 80%);
}

.hero-btn-row-infuse .btn-liquid-glass:hover::before {
  opacity: 1;
  filter: blur(24px);
}

/* Small Liquid Glass Variant (Navbar) */
.btn-liquid-glass-sm {
  padding: 0.65rem 1.5rem !important;
  font-size: 0.76rem !important;
  letter-spacing: 1.8px !important;
}

/* ==========================================================================
   10. STATIC CONTACT PAGE LAYOUT
   ========================================================================== */
.contact-static-section {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  z-index: 10;
  background: transparent;
}

.contact-static-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-static-card {
  position: relative;
  background: rgba(8, 22, 16, 0.45) !important;
  backdrop-filter: blur(30px) saturate(145%) !important;
  -webkit-backdrop-filter: blur(30px) saturate(145%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75),
              0 0 50px rgba(16, 185, 129, 0.02),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-static-card:hover {
  border-color: rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 45px 100px rgba(0, 0, 0, 0.9), 
              0 0 60px rgba(212, 175, 55, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-static-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(212, 175, 55, 0.06),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.contact-static-card:hover::before {
  opacity: 1;
}

.contact-static-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--angle, 0deg), transparent 30%, var(--neon-magenta) 50%, var(--neon-blue) 70%, transparent 90%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 12;
  opacity: 0.35;
  animation: rotate-beam 7s linear infinite;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-static-card:hover::after {
  opacity: 1;
}

.contact-static-card > * {
  position: relative;
  z-index: 2;
}

.contact-static-card .hero-tag {
  color: var(--neon-magenta);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.contact-static-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #fff 50%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-static-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-left-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (max-width: 900px) {
  .contact-static-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-static-section {
    padding: 4rem 0;
  }
}

/* Immersive Ken Burns Breathing Animation for Subpage Headers */
@keyframes pan-breathing {
  0% { transform: scale(1.08) translate(0%, 0%); }
  50% { transform: scale(1.15) translate(-1%, -0.5%); }
  100% { transform: scale(1.08) translate(0%, 0%); }
}

.subpage-portal-container .cinematic-video-el {
  animation: pan-breathing 28s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

/* ==========================================================================
   PREMIUM MOBILE RESPONSIVE OPTIMIZATION & PARALLAX ALIGNMENT OVERRIDES
   ========================================================================== */

@media (max-width: 768px) {
  /* Collapse scrub track — JS also disables scroll-video on this breakpoint */
  .hero-sticky-track {
    height: auto !important;
    min-height: 100svh;
  }

  .hero-parallax-canvas.sticky-canvas {
    position: relative;
    min-height: 100svh;
    height: auto;
    padding: max(5.5rem, calc(env(safe-area-inset-top, 0px) + 4.5rem)) 1rem max(2rem, env(safe-area-inset-bottom, 0px));
  }

  .cinematic-portal-container.cinematic-portal-fullscreen {
    width: 100%;
    height: min(48vh, 380px);
    aspect-ratio: auto;
    border-radius: 16px;
  }

  .narrative-slide-container,
  .scroll-prompt-cinematic {
    display: none !important;
  }

  .subpage-portal-container .cinematic-video-el {
    animation: none !important;
    will-change: auto;
  }

  /* Compress Gooey Morpher height and prevent text wrapping on smaller viewports */
  .gooey-text-container {
    height: clamp(85px, 12vh, 125px) !important;
    margin-bottom: 1rem !important;
    filter: none !important;
  }

  .gooey-text-el {
    font-size: clamp(1.2rem, 5.2vw, 2.4rem) !important;
    letter-spacing: 0.08em !important;
    text-indent: 0.08em !important;
  }
  
  .hero-tag-infuse {
    font-size: 0.75rem !important;
    letter-spacing: 0.25em !important;
    margin-bottom: 0.75rem !important;
  }

  /* Compact padding for the timeline slides overlapping cards */
  .narrative-slide {
    padding: 1.25rem !important;
  }

  .narrative-glow-card {
    width: 95% !important;
    max-width: 380px !important;
    padding: 1.75rem 1.5rem !important;
    border-radius: 20px !important;
    background: rgba(8, 22, 16, 0.45) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(16, 185, 129, 0.03) !important;
  }

  .narrative-glow-card .hero-tag {
    font-size: 0.7rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 0.5rem !important;
  }

  .narrative-glow-card h2 {
    font-size: clamp(1.3rem, 6vw, 1.75rem) !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: 1px !important;
  }

  .narrative-glow-card p {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem !important;
  }

  /* Scale down subpage portal banners beneath mobile navbar */
  .subpage-portal-header {
    padding-top: 110px !important;
    padding-bottom: 1.5rem !important;
    min-height: auto !important;
  }

  .subpage-portal-container {
    height: auto !important;
    min-height: auto !important;
    padding: 2.2rem 1.2rem !important;
    border-radius: 16px !important;
  }

  .subpage-portal-header .hero-tag {
    font-size: 0.7rem !important;
    letter-spacing: 0.25em !important;
    margin-bottom: 0.5rem !important;
  }

  .subpage-portal-header h1.hero-title-large {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    margin-bottom: 0.1rem !important;
  }

  .subpage-portal-header p.hero-subtitle-glow {
    font-size: 0.8rem !important;
  }

  /* ==========================================
     MOBILE RESERVATION MODAL OPTIMIZATIONS
     ========================================== */
  .modal-content {
    padding: 1.5rem 1.25rem !important;
    max-height: 85vh !important;
    width: 92% !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .modal-close-btn {
    top: 1rem !important;
    right: 1rem !important;
    font-size: 1.8rem !important;
  }

  .modal-content h3 {
    margin-bottom: 1rem !important;
    font-size: 1.35rem !important;
  }

  .form-group {
    margin-bottom: 0.85rem !important;
  }

  .form-group label {
    margin-bottom: 0.25rem !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.5px !important;
  }

  .form-input {
    padding: 0.65rem 0.9rem !important;
    font-size: 0.9rem !important;
  }

  select.form-input {
    padding-right: 2rem !important;
  }

  .time-slots-grid {
    max-height: none !important;
    gap: 0.45rem !important;
  }

  .time-slot-btn {
    padding: 0.5rem 0.1rem !important;
    font-size: 0.8rem !important;
  }

  .modal-content .grid-2 {
    gap: 0.75rem !important;
  }

  /* Success Screen Step 3 optimizations */
  .modal-content h2 {
    font-size: 1.3rem !important;
  }

  .checkmark-animation {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.4rem !important;
    margin: 0 auto 0.75rem !important;
    line-height: 50px !important;
  }

  .receipt-card {
    padding: 1rem !important;
    margin-bottom: 1.25rem !important;
    font-size: 0.8rem !important;
  }

  .receipt-card > div {
    margin-bottom: 0.4rem !important;
  }

  .receipt-card code {
    font-size: 0.75rem !important;
  }

  /* ==========================================
     MOBILE CONTACT PAGE OPTIMIZATIONS
     ========================================== */
  .contact-static-card {
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }

  .contact-static-card h2 {
    margin-bottom: 0.75rem !important;
  }

  .contact-static-card p {
    margin-bottom: 1rem !important;
    font-size: 0.88rem !important;
  }

  /* Preserve compact 3-column strip grid horizontally on mobile */
  .contact-strip-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.3rem !important;
    padding: 0.8rem 0 !important;
    margin-bottom: 1.25rem !important;
  }

  .strip-item-mini {
    padding: 0.3rem !important;
  }

  .strip-item-mini > div {
    font-size: 1.1rem !important;
    margin-bottom: 0.15rem !important;
  }

  .strip-item-mini h4 {
    font-size: 0.65rem !important;
    margin-bottom: 0.1rem !important;
    letter-spacing: 0.5px !important;
  }

  .strip-item-mini p {
    font-size: 0.75rem !important;
  }

  .map-container-mini {
    height: 160px !important;
    margin-bottom: 1rem !important;
  }

  /* Contact message form optimizations */
  #contact-message-form .form-group {
    margin-bottom: 0.85rem !important;
  }

  #contact-message-form textarea.form-input {
    height: 95px !important;
  }
}

@media (max-width: 576px) {
  /* Stack liquid gold CTA buttons vertically to avoid horizontal squeezing */
  .hero-btn-row-infuse {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 0.75rem !important;
    margin-top: 1.5rem !important;
  }

  .hero-btn-row-infuse .btn-liquid-glass {
    width: 100% !important;
    max-width: 290px !important;
    padding: 0.9rem 1.8rem !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  /* Compresses morpher container height on ultra-compact screens */
  .gooey-text-container {
    height: clamp(75px, 10vh, 110px) !important;
  }

  .gooey-text-el {
    font-size: clamp(1.1rem, 5.5vw, 2.1rem) !important;
  }

  .narrative-glow-card {
    max-width: 310px !important;
    padding: 1.5rem 1.25rem !important;
  }

  .narrative-glow-card p {
    font-size: 0.82rem !important;
  }
}



/* ==========================================================================
   RESERVATION WIZARD V2 — premium booking experience
   Champagne-scarcity rule: gold only for primary CTA, selected states,
   hairlines, and eyebrows. Elevation via surface lightness, not shadows.
   ========================================================================== */

/* ==========================================================================
   Reservation modal v3 — single-column contained wizard
   ========================================================================== */
.res-modal-v2 {
  --res-pad-x: 1.5rem;
  max-width: 480px;
  width: min(94vw, 480px);
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  max-height: min(92vh, 840px);
  overflow: hidden !important;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(212, 175, 55, 0.08), transparent 55%),
    rgba(12, 10, 18, 0.94);
  transform: none !important;
}

.res-modal-v2:hover {
  transform: none !important;
}

.res-modal-v2 > .modal-close-btn {
  top: 0.85rem;
  right: 0.95rem;
  z-index: 3;
  font-size: 1.75rem;
}

.res-modal-chrome {
  flex: 0 0 auto;
  padding: 1.15rem var(--res-pad-x) 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 8, 16, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.res-modal-chrome.res-chrome-confirm {
  border-bottom-color: transparent;
  padding-bottom: 0.5rem;
}

.res-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.15rem var(--res-pad-x) 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.25) transparent;
  -webkit-overflow-scrolling: touch;
}

.res-modal-layout { display: block; }
.res-ticket-panel,
.res-live-ticket { display: none; }

.res-modal-v2 .form-group { margin-bottom: 1.1rem; }

.res-modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(38, 25%, 93%);
  margin: 0 0 0.35rem;
  text-align: left;
}

.res-modal-lede {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.res-eyebrow {
  display: flex !important;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.7rem !important;
  letter-spacing: 0.16em !important;
  font-weight: 600 !important;
  color: var(--gold-dark) !important;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.res-hours-hint {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  text-transform: none;
  color: var(--text-muted);
}

.res-label-optional {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.4rem;
}

.res-progress {
  position: relative;
  display: flex;
  gap: 0.4rem;
  margin: 0 2.2rem 0.65rem 0;
  padding-bottom: 1rem;
}

.res-progress-seg { flex: 1; text-align: left; min-width: 0; }

.res-progress-seg .seg-bar {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 0.4rem;
}

.res-progress-seg .seg-label {
  display: none;
  position: absolute;
  left: 0;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
}

.res-progress-seg.done .seg-bar,
.res-progress-seg.current .seg-bar {
  background: linear-gradient(90deg, #e0c878, #be9b4f);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.35);
}

.res-progress-seg.current .seg-label { display: block; }

.res-booking-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.1rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-size: 0.8rem;
  color: var(--text-light);
}

.res-booking-strip.rbs-hidden { display: none; }

.rbs-chunk {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: baseline;
  gap: 0.28rem;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  transition: background 0.2s ease;
}

.rbs-chunk:hover { background: rgba(212, 175, 55, 0.1); }

.rbs-chunk-table {
  opacity: 0.45;
  pointer-events: none;
}

.rbs-has-table .rbs-chunk-table {
  opacity: 1;
  pointer-events: auto;
}

.rbs-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.rbs-val {
  font-weight: 600;
  font-feature-settings: "tnum";
  font-size: 0.82rem;
}

.rbs-gold { color: var(--gold-dark); }

.rbs-sep {
  width: 1px;
  height: 14px;
  background: rgba(237, 232, 240, 0.14);
  margin: 0 0.15rem;
  flex-shrink: 0;
}

.rbs-area {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rbs-area:not(:empty)::before {
  content: '· ';
  color: rgba(237, 232, 240, 0.35);
}

.rbs-occasion {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.rbs-free {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: rgba(120, 200, 140, 0.9);
  white-space: nowrap;
  padding: 0.15rem 0.25rem;
}

.rbs-check {
  color: #52c41a;
  font-size: 0.75rem;
}

.party-chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
}

.party-chip {
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-feature-settings: "tnum";
  cursor: pointer;
  transition: var(--transition-fast);
}

.party-chip:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-1px);
}

.party-chip.selected {
  background: linear-gradient(160deg, #e8d296, #c2a057);
  border-color: transparent;
  color: #1a1526;
  font-weight: 700;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.28);
}

.date-strip-wrap {
  position: relative;
  margin: 0 -0.15rem;
}

.date-strip-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.6rem;
  width: 2rem;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(12, 10, 18, 0.92));
  border-radius: 0 10px 10px 0;
}

.date-strip {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 2px 1.5rem 0.65rem 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.date-strip::-webkit-scrollbar { display: none; }

.date-chip {
  flex: 0 0 auto;
  min-width: 64px;
  min-height: 72px;
  padding: 0.45rem 0.4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.date-chip .dc-dow {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(237, 232, 240, 0.5);
}

.date-chip .dc-day {
  font-size: 1.2rem;
  font-weight: 600;
  font-feature-settings: "tnum";
  line-height: 1.15;
}

.date-chip .dc-tag { font-size: 0.62rem; color: rgba(237, 232, 240, 0.5); }

.date-chip:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-1px);
}

.date-chip.selected {
  background: linear-gradient(160deg, #e8d296, #c2a057);
  border-color: transparent;
  color: #1a1526;
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.28);
}

.date-chip.selected .dc-dow,
.date-chip.selected .dc-tag { color: rgba(26, 21, 38, 0.75); }

.res-date-more {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.res-date-more-btn {
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.res-date-native {
  flex: 1;
  max-width: 11rem;
  margin-top: 0 !important;
  padding: 0.4rem 0.65rem !important;
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  opacity: 0.85;
}

.res-period-filters {
  display: flex !important;
  gap: 0.4rem;
  overflow-x: auto;
  padding-bottom: 0.15rem;
  margin-bottom: 0.75rem;
  scrollbar-width: none;
}

.res-period-filters::-webkit-scrollbar { display: none; }

.period-filter-btn {
  flex: 1;
  min-width: max-content;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.period-filter-btn:hover {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--text-light);
}

.period-filter-btn.selected {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-dark);
  color: var(--gold-primary);
  font-weight: 600;
}

.time-slots-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.15rem 0 0.35rem !important;
  max-height: none !important;
  overflow: visible !important;
  flex-wrap: unset !important;
  transition: opacity 0.25s ease;
}

.time-slots-grid.refreshing { opacity: 0.45; pointer-events: none; }

.time-slot-btn {
  flex: unset !important;
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.04);
  font-feature-settings: "tnum";
  position: relative;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slotIn 0.35s ease backwards;
  animation-delay: calc(var(--i, 0) * 26ms);
}

@keyframes slotIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.time-slot-btn:hover {
  border-color: rgba(212, 175, 55, 0.65);
  background: rgba(212, 175, 55, 0.07);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.time-slot-btn.selected {
  background: linear-gradient(160deg, #e8d296, #c2a057) !important;
  color: #1a1526 !important;
  border-color: transparent !important;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
  font-weight: 700;
  animation: slotPulse 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slotPulse {
  0% { transform: scale(1); }
  55% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.time-slot-btn.disabled {
  opacity: 0.32;
  border-color: rgba(255, 255, 255, 0.05);
}

.time-slot-btn.disabled::after {
  content: 'Booked';
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 232, 240, 0.55);
  margin-top: -1px;
}

.slot-skeleton {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.025);
  position: relative;
  overflow: hidden;
}

.slot-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.07), transparent);
  animation: slotSweep 1.6s infinite;
}

@keyframes slotSweep {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.slots-empty-note {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(237, 232, 240, 0.6);
  padding: 1.1rem 0.5rem;
  font-size: 0.85rem;
  line-height: 1.55;
}

.tour-space-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tour-space-chip:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.06);
}

.tour-space-chip.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(180, 140, 30, 0.12) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.time-picker-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.time-select-custom {
  flex: 1;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: var(--text-light) !important;
  border-radius: 8px !important;
  padding: 0.6rem 0.85rem !important;
  font-size: 0.9rem !important;
  font-weight: 500;
  outline: none;
}

.time-mode-btn {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seating-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.35rem;
}

@media (max-width: 520px) {
  .seating-cards-grid { grid-template-columns: 1fr; }
}

.seating-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.seating-card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(212, 175, 55, 0.04);
}

.seating-card.selected {
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0.04));
}

.seating-card-icon { font-size: 1.25rem; line-height: 1; flex-shrink: 0; }
.seating-card-info { display: flex; flex-direction: column; }
.seating-card-title { font-weight: 600; font-size: 0.85rem; color: var(--text-light); }
.seating-card-desc { font-size: 0.7rem; color: var(--text-muted); }
.seating-card.selected .seating-card-title { color: var(--gold-dark); }

.res-nav-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  margin-top: 0.85rem;
  align-items: stretch;
}

.res-nav-row .btn-outline {
  min-height: 50px;
  padding-inline: 1.1rem;
}

.res-nav-row .res-cta {
  margin-top: 0;
  width: 100%;
}

.res-cta {
  width: 100%;
  margin-top: 0.35rem;
  min-height: 50px;
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
  position: relative;
}

.res-cta:active { transform: scale(0.98); }
.res-cta.loading { color: transparent !important; pointer-events: none; }

.res-cta.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  border: 2px solid rgba(26, 21, 38, 0.25);
  border-top-color: #1a1526;
  animation: resSpin 0.7s linear infinite;
}

@keyframes resSpin {
  to { transform: rotate(360deg); }
}

.res-summary-pill,
.res-summary-edit { display: none; }

.occasion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.occasion-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.occasion-chip:hover { border-color: rgba(212, 175, 55, 0.45); transform: translateY(-1px); }

.occasion-chip.selected {
  background: rgba(212, 175, 55, 0.14);
  border-color: rgba(212, 175, 55, 0.65);
  color: hsl(38, 40%, 88%);
}

.occasion-chip.selected span { animation: occasionWiggle 0.3s ease; }

@keyframes occasionWiggle {
  0%, 100% { transform: rotate(0); }
  30% { transform: rotate(-12deg) scale(1.15); }
  65% { transform: rotate(10deg) scale(1.1); }
}

.res-note-toggle {
  font-size: 0.82rem;
  color: var(--gold-dark);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.res-note-toggle:hover { text-decoration: underline; text-underline-offset: 3px; }

/* Gentle error shake for failed submits */
.res-shake { animation: resShake 0.3s ease; }

@keyframes resShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-3px); }
}

/* ------------------------- Step 3: confirmation ------------------------- */
.res-check-wrap { margin: 0.5rem auto 1.4rem; width: 76px; height: 76px; }

.res-check-svg { width: 76px; height: 76px; }

.res-check-ring {
  fill: rgba(212, 175, 55, 0.05);
  stroke: #c9a961;
  stroke-width: 1.5;
  stroke-dasharray: 208;
  stroke-dashoffset: 208;
  transform: rotate(-90deg);
  transform-origin: center;
  animation: ringDraw 0.7s ease-out forwards;
}

.res-check-tick {
  fill: none;
  stroke: #e0c878;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 45;
  stroke-dashoffset: 45;
  animation: tickDraw 0.45s ease-out 0.55s forwards;
}

@keyframes ringDraw { to { stroke-dashoffset: 0; } }
@keyframes tickDraw { to { stroke-dashoffset: 0; } }

.res-confirm-headline {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(38, 25%, 94%);
  margin-bottom: 0.4rem;
  animation: confirmRise 0.5s ease 0.35s backwards;
}

.res-confirm-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  animation: confirmRise 0.5s ease 0.45s backwards;
}

@keyframes confirmRise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.res-receipt {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-left: 2px solid #c9a961 !important;
  border-radius: 10px !important;
  padding: 1.4rem 1.5rem !important;
  text-align: left;
  margin-bottom: 1.4rem;
  animation: confirmRise 0.5s ease 0.55s backwards;
}

.res-receipt .receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.res-receipt .receipt-row-last { margin-bottom: 0; }

.res-receipt .receipt-row strong {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.res-receipt .receipt-row span {
  color: #f2eef5;
  font-size: 0.95rem;
  font-feature-settings: "tnum";
  text-align: right;
}

.res-receipt code {
  color: #e0c878;
  background: rgba(212, 175, 55, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.res-confirm-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
  animation: confirmRise 0.5s ease 0.65s backwards;
}

.res-mini-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  font-size: 0.8rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.res-mini-action:hover { border-color: rgba(212, 175, 55, 0.5); background: rgba(212, 175, 55, 0.06); }

.res-know-block {
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  padding-top: 1.1rem;
  margin-bottom: 1.2rem;
  animation: confirmRise 0.5s ease 0.75s backwards;
}

.res-know-block p {
  font-size: 0.78rem;
  color: rgba(237, 232, 240, 0.55);
  line-height: 1.6;
  margin: 0;
}

.res-know-block a { color: rgba(237, 232, 240, 0.85); }

.res-manage-link {
  display: block;
  text-align: center;
  margin-bottom: 1.1rem;
  color: var(--text-muted);
  font-size: 0.83rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.res-manage-link:hover { color: var(--gold-dark); }

/* ------------------------- Mobile: bottom sheet ------------------------- */
@media (max-width: 640px) {
  .modal-overlay { align-items: flex-end; }

  .res-modal-v2 {
    --res-pad-x: 1.2rem;
    width: 100%;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 20px 20px 0 0;
    padding: 0;
    transform: translateY(60px);
  }

  .res-modal-chrome {
    padding-top: 1.1rem;
  }

  .res-modal-chrome::before {
    content: '';
    display: block;
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
    margin: 0 auto 0.85rem;
  }

  .res-modal-title { font-size: 1.2rem; }

  .time-slots-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .rbs-free { display: none; }

  .res-confirm-actions { flex-direction: column; }
  .res-mini-action { justify-content: center; }
}

/* ------------------------- Accessibility guards ------------------------- */
@media (prefers-reduced-motion: reduce) {
  .time-slot-btn, .res-check-ring, .res-check-tick,
  .res-confirm-headline, .res-confirm-sub, .res-receipt,
  .res-confirm-actions, .res-know-block, .slot-skeleton::after,
  .occasion-chip.selected span {
    animation: none !important;
  }
  .res-check-ring, .res-check-tick { stroke-dashoffset: 0; }
}

@media (prefers-reduced-transparency: reduce) {
  .res-modal-v2 { background: #16101f !important; backdrop-filter: none !important; }
}

/* 
   ==========================================================================
   SHOP — BRANDED MERCH, GIFT CARDS & CART
   ========================================================================== */

/* --- Gift card hero --- */
.gift-card-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem !important;
  margin-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

.gift-card-hero-media img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
  transition: var(--transition-smooth);
}

.gift-card-hero:hover .gift-card-hero-media img {
  transform: rotate(0deg) translateY(-4px);
}

.gift-bonus-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212, 175, 106, 0.08);
  border: 1px solid rgba(212, 175, 106, 0.28);
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
}

.gift-denom-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.gift-denom-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.75rem 1.4rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gift-denom-chip:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.gift-denom-chip.selected {
  background: var(--gold-gradient);
  color: #05040a;
  border-color: transparent;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.18);
}

.gift-custom-row {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gift-custom-row.visible { display: flex; }

.gift-custom-row .form-input { max-width: 180px; }

.gift-send-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  cursor: pointer;
  user-select: none;
  margin-bottom: 1rem;
}

.gift-send-toggle input { accent-color: hsl(38, 70%, 70%); width: 17px; height: 17px; cursor: pointer; }

.gift-recipient-fields {
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.gift-recipient-fields.visible { display: flex; }

/* --- Featured strip --- */
.shop-featured-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.shop-featured-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem !important;
}

.shop-featured-card img {
  width: 150px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-glass);
  flex-shrink: 0;
}

/* --- Product grid & cards --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-card-hero { grid-template-columns: 1fr; gap: 2rem; padding: 2rem !important; }
  .shop-featured-strip { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .shop-grid { grid-template-columns: 1fr; }
}

.shop-card {
  background: rgba(10, 9, 20, 0.55);
  backdrop-filter: blur(25px) saturate(130%);
  -webkit-backdrop-filter: blur(25px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
}

.shop-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 18px rgba(212, 175, 106, 0.06);
  transform: translateY(-4px);
}

.shop-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.shop-card:hover .shop-card-media img { transform: scale(1.04); }

.shop-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: var(--gold-gradient);
  color: #05040a;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.shop-badge.limited,
.shop-badge.low-stock {
  background: linear-gradient(135deg, hsl(18, 80%, 58%), hsl(2, 70%, 52%));
  color: #fff;
}

.shop-badge.new-item {
  background: rgba(14, 6, 20, 0.8);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 106, 0.4);
}

.shop-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.65rem;
}

.shop-card-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}

.shop-card-title {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shop-card-price {
  font-family: var(--font-body);
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1.1rem;
  white-space: nowrap;
}

.shop-card-desc {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-grow: 1;
}

.shop-variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.variant-chip {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 42px;
  padding: 0.4rem 0.7rem;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.variant-chip:hover { border-color: rgba(255, 255, 255, 0.3); }

.variant-chip.selected {
  background: #fff;
  color: #05040a;
  border-color: #fff;
  font-weight: 600;
}

.variant-chip.disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

.shop-card-actions {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 0.4rem;
}

.shop-card-actions .btn-gold {
  flex-grow: 1;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
}

.shop-card-soldout {
  flex-grow: 1;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 40px;
}

/* --- Quantity stepper --- */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
}

.qty-stepper button {
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: var(--text-light);
  width: 32px;
  align-self: stretch;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.qty-stepper button:hover { background: rgba(255, 255, 255, 0.1); }

.qty-stepper .qty-value {
  min-width: 30px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
}

/* --- Trust row --- */
.shop-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.shop-trust-card {
  text-align: center;
  padding: 2rem 1.5rem !important;
}

.shop-trust-card .trust-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--gold-primary);
}

.shop-trust-card h4 {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.shop-trust-card p { font-size: 0.87rem; margin: 0; }

@media (max-width: 768px) {
  .shop-trust-row { grid-template-columns: 1fr; }
}

/* --- Nav cart button (lives in .nav-actions, outside the mobile drawer) --- */
.nav-cart-btn {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 50%),
    linear-gradient(145deg, rgba(55, 149, 177, 0.35), rgba(104, 0, 64, 0.45));
  border: 1px solid rgba(255, 248, 230, 0.22);
  color: #e8c4d8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease;
  box-shadow:
    0 0 18px rgba(176, 64, 128, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav-cart-btn:hover {
  transform: scale(1.08);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 50%),
    linear-gradient(145deg, rgba(55, 149, 177, 0.48), rgba(176, 64, 128, 0.48));
  border-color: rgba(176, 64, 128, 0.7);
  box-shadow: 0 0 26px rgba(55, 149, 177, 0.4);
  color: #fff;
}

.nav-cart-btn .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3795b1 0%, #b04080 100%);
  color: #0a0614;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-cart-btn .cart-count.pop { transform: scale(1.35); }

@media (max-width: 992px) {
  .nav-cart-btn {
    width: 46px;
    height: 46px;
  }
}

/* --- Cart drawer --- */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 8, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1600;
}

.cart-drawer-overlay.active { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(430px, 100vw);
  background: rgba(12, 8, 18, 0.92);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-left: 1px solid var(--border-glass);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.55);
  transform: translateX(102%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1700;
  display: flex;
  flex-direction: column;
}

.cart-drawer.active { transform: translateX(0); }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-drawer-head h3 {
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 2px;
}

.cart-drawer-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-drawer-close:hover { color: #fff; transform: rotate(90deg); }

.cart-drawer-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-empty .cart-empty-icon { font-size: 2.4rem; display: block; margin-bottom: 0.9rem; opacity: 0.6; }

.cart-line {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cart-line img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  flex-shrink: 0;
}

.cart-line-info { flex-grow: 1; min-width: 0; }

.cart-line-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 0.15rem;
}

.cart-line-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-line-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-line-remove:hover { color: hsl(2, 70%, 65%); }

.cart-line-price {
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 0.95rem;
  white-space: nowrap;
}

.cart-upsell {
  margin-top: 1.5rem;
  padding: 1.1rem;
  border: 1px dashed rgba(212, 175, 106, 0.25);
  border-radius: var(--border-radius-sm);
}

.cart-upsell-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
  display: block;
}

.cart-upsell-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cart-upsell-item img {
  width: 52px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--border-glass);
}

.cart-upsell-item .upsell-info { flex-grow: 1; }

.cart-upsell-item .upsell-name { font-size: 0.85rem; color: var(--text-light); margin: 0; }

.cart-upsell-item .upsell-price { font-size: 0.8rem; color: var(--gold-primary); font-weight: 600; }

.cart-upsell-add {
  background: transparent;
  border: 1px solid rgba(212, 175, 106, 0.4);
  color: var(--gold-primary);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-upsell-add:hover { background: rgba(212, 175, 106, 0.12); }

.cart-drawer-foot {
  padding: 1.4rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 3, 10, 0.5);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.cart-subtotal-row .label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.cart-subtotal-row .amount {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.cart-checkout-btn { width: 100%; text-align: center; }

.cart-foot-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0.75rem 0 0;
}

/* --- Checkout modal --- */
.checkout-modal-content {
  width: min(520px, 92vw);
  padding: 2.5rem;
}

.pay-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin: 1.25rem 0;
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
  color: var(--text-light);
  font-family: var(--font-body);
  width: 100%;
}

.pay-option:hover { border-color: rgba(255, 255, 255, 0.28); }

.pay-option.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 106, 0.07);
  box-shadow: 0 0 16px rgba(212, 175, 106, 0.12);
}

.pay-option .pay-icon { font-size: 1.5rem; }

.pay-option .pay-title { font-weight: 600; font-size: 0.98rem; margin: 0; }

.pay-option .pay-sub { font-size: 0.8rem; color: var(--text-muted); margin: 0.15rem 0 0; }

.checkout-summary {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  color: var(--text-muted);
}

.checkout-summary-row.total {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.5rem;
  padding-top: 0.7rem;
}

.checkout-summary-row.total span:last-child { color: var(--gold-primary); }

.newsletter-optin {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  margin-top: 0.25rem;
}

.newsletter-optin input { accent-color: hsl(38, 70%, 70%); width: 16px; height: 16px; cursor: pointer; }

/* --- Skeleton loaders --- */
@keyframes shopShimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.shop-skeleton {
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  height: 380px;
  background: rgba(10, 9, 20, 0.5);
  position: relative;
}

.shop-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  background-size: 400px 100%;
  animation: shopShimmer 1.4s infinite linear;
}

/* --- Order status page (shop-order.html) --- */
.order-status-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.order-timeline {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 2.5rem;
  position: relative;
}

.order-timeline::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: #0c0714;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.timeline-step.done .timeline-dot {
  background: var(--gold-gradient);
  border-color: transparent;
  color: #05040a;
  font-weight: 700;
}

.timeline-step.current .timeline-dot {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 14px rgba(212, 175, 106, 0.35);
}

.timeline-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
}

.timeline-step.done .timeline-label,
.timeline-step.current .timeline-label { color: var(--text-light); }

.order-items-list { margin: 1.5rem 0; }

.order-item-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.93rem;
}

.order-item-row .item-name { color: var(--text-light); }

.order-item-row .item-qty { color: var(--text-muted); font-size: 0.85rem; }

.order-item-row .item-price { color: var(--gold-primary); font-weight: 600; white-space: nowrap; }

.gift-card-reveal {
  background: rgba(212, 175, 106, 0.06);
  border: 1px solid rgba(212, 175, 106, 0.3);
  border-radius: var(--border-radius-sm);
  padding: 1.1rem 1.3rem;
  margin: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.gift-card-reveal code {
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--gold-primary);
  font-weight: 700;
}

.gift-card-copy {
  background: transparent;
  border: 1px solid rgba(212, 175, 106, 0.4);
  color: var(--gold-primary);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gift-card-copy:hover { background: rgba(212, 175, 106, 0.12); }

.order-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  padding-top: 1rem;
}

.order-total-row span:last-child { color: var(--gold-primary); }

.pickup-info-box {
  background: rgba(255, 255, 255, 0.025);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  padding: 1.1rem 1.3rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.balance-due-banner {
  background: rgba(207, 122, 46, 0.09);
  border: 1px solid rgba(207, 122, 46, 0.35);
  border-radius: var(--border-radius-sm);
  padding: 0.9rem 1.2rem;
  margin: 1.25rem 0;
  color: hsl(28, 80%, 70%);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

/* --- Reduced motion / transparency guards --- */
@media (prefers-reduced-motion: reduce) {
  .shop-skeleton::after { animation: none; }
  .cart-fab .cart-count.pop { transform: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .cart-drawer { background: #0e0916; backdrop-filter: none; }
}

/* --- Checkout page (checkout.html) --- */
.checkout-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8.5rem 1.5rem 5rem;
}

.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

.checkout-steps .step { display: flex; align-items: center; gap: 0.75rem; }

.checkout-steps .step.current { color: var(--gold-primary); font-weight: 600; }

.checkout-steps .step.done { color: var(--text-light); }

.checkout-steps .sep { color: rgba(255, 255, 255, 0.2); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary-col { order: -1; }
}

.checkout-section {
  padding: 2rem !important;
  margin-bottom: 1.5rem;
}

.checkout-section-head {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.checkout-section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #05040a;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-section-head h2 {
  font-size: 1.05rem;
  margin: 0;
  text-align: left;
  letter-spacing: 2px;
}

.checkout-section-head h2::after { display: none; }

.field-error {
  color: hsl(2, 70%, 65%);
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
}

.form-input.invalid { border-color: hsl(2, 70%, 55%); }

.form-input.invalid + .field-error,
.form-input.invalid ~ .field-error { display: block; }

.pickup-location-card {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pickup-location-card .loc-icon { font-size: 1.4rem; color: var(--gold-primary); }

.pickup-location-card strong { color: var(--text-light); display: block; margin-bottom: 0.2rem; }

.checkout-place-btn {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  padding: 1.1rem;
}

.checkout-legal {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.9rem;
  line-height: 1.6;
}

/* Sticky order summary */
.checkout-summary-card {
  padding: 1.75rem !important;
  position: sticky;
  top: 110px;
}

.checkout-summary-card h3 {
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
}

.summary-line {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-line img {
  width: 62px;
  height: 47px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  flex-shrink: 0;
}

.summary-line-info { flex-grow: 1; min-width: 0; }

.summary-line-name { font-size: 0.88rem; font-weight: 600; color: var(--text-light); margin: 0 0 0.1rem; }

.summary-line-meta { font-size: 0.76rem; color: var(--text-muted); margin: 0 0 0.4rem; }

.summary-line .qty-stepper { transform: scale(0.85); transform-origin: left center; }

.summary-line-price { font-weight: 700; color: var(--gold-primary); font-size: 0.9rem; white-space: nowrap; }

.summary-line-remove {
  background: none; border: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  margin-left: 0.6rem;
}

.summary-line-remove:hover { color: hsl(2, 70%, 65%); }

.summary-totals { margin-top: 1rem; font-size: 0.9rem; }

.summary-totals .row {
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
  color: var(--text-muted);
}

.summary-totals .row.grand {
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0.6rem;
  padding-top: 0.8rem;
}

.summary-totals .row.grand span:last-child { color: var(--gold-primary); }

.summary-trust {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.summary-trust span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  flex: 1;
  line-height: 1.5;
}

.summary-trust .t-ico { display: block; font-size: 1.05rem; color: var(--gold-primary); margin-bottom: 0.2rem; }

.checkout-empty, .checkout-success {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2.5rem !important;
}

/* ==========================================================================
   REDESIGNED PRIVATE EVENTS EXPERIENCE STYLES
   ========================================================================== */

/* 1. Occasion Tab Navigation */
.event-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.event-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  padding: 0.75rem 1.4rem;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.event-tab-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--text-light);
  transform: translateY(-2px);
}

.event-tab-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(180, 140, 30, 0.15) 100%);
  border-color: var(--gold-primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* 2. Occasion Tab Panels */
.event-tab-panel {
  display: none;
  animation: fadeInTab 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.event-tab-panel.active {
  display: block;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 3. Interactive Event Cost Estimator */
.estimator-card {
  background: linear-gradient(135deg, rgba(20, 10, 30, 0.75) 0%, rgba(10, 5, 18, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.05);
  position: relative;
  overflow: hidden;
}

.estimator-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.estimator-slider-container {
  margin: 1.5rem 0 2rem;
}

.estimator-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.estimator-slider-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.estimator-range-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.estimator-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff 0%, var(--gold-dark) 100%);
  border: 2px solid var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  transition: transform 0.2s ease;
}

.estimator-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.estimator-chip-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.estimator-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: left;
}

.estimator-chip:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.05);
}

.estimator-chip.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(140, 100, 20, 0.12) 100%);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.estimator-chip-title {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.estimator-chip-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.estimator-price-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.estimator-total-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.estimator-per-person {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 4. Weekly Happenings Grid */
.happenings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.happening-card {
  background: rgba(14, 6, 20, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 16px;
  padding: 1.8rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.happening-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

.happening-day-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%);
  color: #040106;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.happening-card h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.happening-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 5. FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(14, 6, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-toggle-icon {
  font-size: 1.2rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

/* 6. Spec Pills & Badges */
.venue-spec-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 14px;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Responsive tweaks for estimator */
@media (max-width: 768px) {
  .estimator-card {
    padding: 2rem 1.25rem;
  }
  .estimator-price-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .estimator-chip-group {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ULTRA-PREMIUM EVENT STYLING & HIGH-CONVERSION COMPONENTS
   ========================================================================== */

/* 1. Urgency & High Demand Banner */
.urgency-badge-strip {
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 50, 150, 0.15) 50%, rgba(0, 200, 255, 0.15) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.live-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff3b30;
  animation: pulseDot 1.5s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7); }
  70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 10px rgba(255, 59, 48, 0); }
  100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 59, 48, 0); }
}

/* 2. Venue Comparison Matrix */
.matrix-container {
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(14, 6, 20, 0.65);
}

.venue-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}

.venue-matrix-table th, .venue-matrix-table td {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.venue-matrix-table th {
  background: rgba(0, 0, 0, 0.4);
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.venue-matrix-table td {
  font-size: 0.92rem;
  color: var(--text-light);
}

.venue-matrix-table tr:last-child td {
  border-bottom: none;
}

.matrix-check {
  color: var(--success);
  font-weight: bold;
  font-size: 1.1rem;
}

.matrix-cross {
  color: var(--text-muted);
  opacity: 0.4;
}

/* 3. Event Addon Checkboxes */
.addon-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.addon-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.addon-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.05);
}

.addon-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-primary);
  cursor: pointer;
}

.addon-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.addon-price {
  font-size: 0.78rem;
  color: var(--gold-primary);
}

/* 4. Client Testimonials Carousel/Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: rgba(14, 6, 20, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

.rating-stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-primary);
}

.testimonial-event-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 5. Key Metric Badges */
.stats-counter-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  margin: 3rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}



/* ==========================================================================
   Reservation floor plan + AI concierge
   ========================================================================== */
.floor-area-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}
.floor-area-tab {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted, #b8b2a8);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.floor-area-tab.selected,
.floor-area-tab:hover {
  border-color: rgba(212, 175, 55, 0.55);
  color: #fff;
  background: rgba(212, 175, 55, 0.12);
}

.floor-plan-canvas {
  display: block;
  margin-bottom: 0.85rem;
}
.floor-table-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.floor-zone {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.08), transparent 50%),
    rgba(0,0,0,0.28);
  padding: 0.65rem 0.75rem 0.85rem;
}
.floor-zone-title {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary, #d4af37);
  margin-bottom: 0.45rem;
}
.floor-zone-map {
  position: relative;
  min-height: 180px;
  height: 200px;
}
.floor-table-node {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.45);
  background: rgba(20,18,14,0.85);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, opacity 0.2s;
  padding: 0;
}
.floor-table-node.shape-booth,
.floor-table-node.shape-rect { border-radius: 10px; width: 68px; height: 48px; }
.floor-table-node.shape-bar { border-radius: 8px; width: 52px; height: 42px; }
.floor-table-node .ft-num { font-weight: 700; font-size: 0.78rem; line-height: 1; }
.floor-table-node .ft-cap { font-size: 0.58rem; color: rgba(255,255,255,0.55); }
.floor-table-node:hover:not(.unavailable) {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.35);
}
.floor-table-node.selected {
  border-color: var(--gold-primary, #d4af37);
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
  background: rgba(212,175,55,0.18);
}
.floor-table-node.unavailable {
  opacity: 0.35;
  cursor: not-allowed;
  border-color: rgba(255,255,255,0.12);
}
.floor-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-muted, #b8b2a8);
  font-size: 0.9rem;
}
.floor-plan-hint {
  font-size: 0.8rem;
  color: var(--text-muted, #b8b2a8);
  margin: 0.35rem 0 0;
}
.floor-table-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.floor-table-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.75rem;
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
}
.floor-table-card strong { grid-row: 1; font-size: 0.95rem; }
.floor-table-card span:nth-child(2) { grid-column: 2; grid-row: 1; color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.floor-table-card .ft-cap { grid-column: 2; grid-row: 2; font-size: 0.72rem; color: var(--gold-primary, #d4af37); }
.floor-table-card .ft-status { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: #55d98d; }
.floor-table-card.unavailable { opacity: 0.45; cursor: not-allowed; }
.floor-table-card.unavailable .ft-status { color: #999; }
.floor-table-card.selected { border-color: rgba(212,175,55,0.65); background: rgba(212,175,55,0.12); }

.res-honeypot {
  position: absolute !important;
  left: -9999px !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
}

/* Table list is primary in the single-column reservation modal */

/* AI Concierge widget */
.infused-chat-root {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 99990;
  font-family: var(--font-body, inherit);
}
.infused-chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.45);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 45%),
    linear-gradient(145deg, #2a2418, #12100c);
  color: var(--gold-primary, #d4af37);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  cursor: pointer;
  font-size: 1.35rem;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.infused-chat-toggle:hover { transform: translateY(-2px) scale(1.03); }
.infused-chat-panel {
  display: none;
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(380px, calc(100vw - 1.5rem));
  height: min(560px, calc(100vh - 6.5rem));
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(30,26,20,0.98), rgba(12,11,9,0.98));
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  flex-direction: column;
}
.infused-chat-root.open .infused-chat-panel { display: flex; }
.infused-chat-header {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.infused-chat-header h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.infused-chat-header p {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}
.infused-chat-close {
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.infused-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.infused-chat-bubble {
  max-width: 88%;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
}
.infused-chat-bubble.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.08);
}
.infused-chat-bubble.user {
  align-self: flex-end;
  background: rgba(212,175,55,0.18);
  border: 1px solid rgba(212,175,55,0.35);
  color: #fff;
}
.infused-chat-bubble.system {
  align-self: center;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  padding: 0.2rem;
}
.infused-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}
.infused-chat-actions button {
  appearance: none;
  border: 1px solid rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.1);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  cursor: pointer;
}
.infused-chat-form {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.infused-chat-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 0.7rem 0.95rem;
  font-size: 0.88rem;
}
.infused-chat-form button {
  border: 0;
  border-radius: 999px;
  background: var(--gold-primary, #d4af37);
  color: #111;
  font-weight: 700;
  padding: 0 1rem;
  cursor: pointer;
}
.infused-chat-form button:disabled { opacity: 0.55; cursor: wait; }

/* ==========================================================================
   PRIVATE EVENTS PAGE — GALLERY-FORWARD REDESIGN
   ========================================================================== */

.events-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.events-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.events-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: eventsHeroDrift 18s ease-in-out infinite alternate;
  filter: brightness(0.88) contrast(1.05);
}

@keyframes eventsHeroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.events-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 1, 6, 0.55) 0%, rgba(4, 1, 6, 0.28) 32%, rgba(4, 1, 6, 0.72) 62%, rgba(4, 1, 6, 0.97) 100%),
    radial-gradient(ellipse at 50% 70%, rgba(4, 1, 6, 0.15) 0%, rgba(4, 1, 6, 0.65) 75%);
}

.events-hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 92%);
  margin: 0 auto;
  padding: 7rem 0 2.5rem;
  text-align: center;
}

.events-hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: eventsFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.events-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0;
  animation: eventsFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}

.events-hero-lede {
  max-width: 540px;
  margin: 0 auto 1.75rem;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.65;
  opacity: 0;
  animation: eventsFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.events-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: eventsFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards;
}

.events-hero-capacity {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  padding: 1.25rem 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  background: linear-gradient(180deg, transparent, rgba(4, 1, 6, 0.55));
}

.events-hero-capacity strong {
  color: var(--gold-primary);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-right: 0.35rem;
  letter-spacing: 0;
  text-transform: none;
}

.events-cap-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.55);
}

@keyframes eventsFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Shared section intro */
.events-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.events-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.events-section-intro .events-section-title {
  display: inline-block;
}

.events-section-intro .events-section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.events-lead-header .events-section-title::after,
.events-space-copy h3::after,
.events-experience-copy .events-section-title::after {
  left: 0;
  transform: none;
}

.events-experience-copy .events-section-title {
  display: inline-block;
}

.events-section-copy {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 560px;
}

.events-section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.events-section-intro .events-section-copy {
  margin: 0 auto;
}

/* Atmosphere mosaic */
.events-atmosphere {
  padding: 5.5rem 0 4rem;
  border-top: 1px solid var(--border-glass);
}

.events-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, minmax(70px, 11vh));
  gap: 0.75rem;
  min-height: 520px;
}

.events-mosaic-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.events-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.events-mosaic-item:hover img {
  transform: scale(1.06);
}

.mosaic-a { grid-column: 1 / 6; grid-row: 1 / 5; }
.mosaic-b { grid-column: 6 / 9; grid-row: 1 / 4; }
.mosaic-c { grid-column: 9 / 13; grid-row: 1 / 3; }
.mosaic-d { grid-column: 9 / 13; grid-row: 3 / 6; }
.mosaic-e { grid-column: 6 / 9; grid-row: 4 / 7; }
.mosaic-f { grid-column: 1 / 4; grid-row: 5 / 7; }
.mosaic-g { grid-column: 4 / 6; grid-row: 5 / 7; }

/* Editorial spaces */
.events-spaces {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--border-glass);
}

.events-space-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin-bottom: 5rem;
}

.events-space-row:last-child {
  margin-bottom: 0;
}

.events-space-row--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.events-space-row--reverse .events-space-visual {
  order: 2;
}

.events-space-row--reverse .events-space-copy {
  order: 1;
}

.events-space-visual {
  position: relative;
  min-height: 380px;
}

.events-space-visual > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.events-space-visual-stack {
  position: absolute;
  width: 42%;
  height: 55%;
  bottom: -1.5rem;
  right: -1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border-radius: 2px;
}

.events-space-row--reverse .events-space-visual-stack {
  right: auto;
  left: -1rem;
}

.events-space-visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-space-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.events-space-copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
  color: #fff;
  margin-bottom: 1rem;
}

.events-space-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
  padding: 0;
}

.events-space-specs li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding-left: 1rem;
  position: relative;
}

.events-space-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-primary);
}

.events-space-copy p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Culinary experience */
.events-experience {
  padding: 5rem 0;
  border-top: 1px solid var(--border-glass);
  background: linear-gradient(180deg, rgba(14, 6, 20, 0.35), transparent);
}

.events-experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.events-experience-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

.events-experience-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 220px 180px;
  gap: 0.85rem;
}

.exp-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.exp-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-shot:hover img {
  transform: scale(1.05);
}

.exp-shot--main {
  grid-row: 1 / 3;
}

.exp-shot--tall {
  grid-column: 2;
  grid-row: 1;
}

.exp-shot--wide {
  grid-column: 2;
  grid-row: 2;
}

/* Occasions */
.events-occasions {
  padding: 4.5rem 0 5rem;
  border-top: 1px solid var(--border-glass);
}

.events-occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.events-occasion-tile {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0610;
  text-align: left;
}

.events-occasion-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.events-occasion-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 1, 6, 0.88) 100%);
  transition: background 0.35s ease;
}

.events-occasion-text {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.events-occasion-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
}

.events-occasion-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.events-occasion-tile:hover img {
  transform: scale(1.07);
}

.events-occasion-tile:hover .events-occasion-veil {
  background: linear-gradient(180deg, transparent 20%, rgba(4, 1, 6, 0.92) 100%);
}

.events-occasion-tile:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* Lead form */
.events-lead {
  padding: 5rem 0;
  border-top: 1px solid var(--border-glass);
}

.events-lead-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1100px;
}

.events-lead-visual {
  position: relative;
  min-height: 420px;
  border-radius: 2px;
  overflow: hidden;
}

.events-lead-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events-lead-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(4, 1, 6, 0.9));
}

.events-lead-visual-caption p:first-child {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.2rem;
}

.events-lead-visual-caption p:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.events-lead-card {
  padding: 2.5rem 2.25rem !important;
}

.events-lead-header {
  text-align: left;
  margin-bottom: 2rem;
}

.events-lead-header .events-section-copy {
  max-width: none;
}

#event-booking-form .form-group label {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  letter-spacing: 0.4px;
}

#event-booking-form .form-input {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  font-size: 1rem;
  padding: 0.9rem 1.05rem;
}

#event-booking-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#event-booking-form .form-input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
}

#event-booking-form select.form-input option {
  background: #222;
  color: #fff;
}

.events-faq-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border-glass);
}

/* Responsive */
@media (max-width: 1024px) {
  .events-mosaic {
    grid-template-rows: repeat(8, minmax(60px, 9vh));
  }

  .mosaic-a { grid-column: 1 / 8; grid-row: 1 / 4; }
  .mosaic-b { grid-column: 8 / 13; grid-row: 1 / 4; }
  .mosaic-c { grid-column: 1 / 5; grid-row: 4 / 6; }
  .mosaic-d { grid-column: 5 / 9; grid-row: 4 / 6; }
  .mosaic-e { grid-column: 9 / 13; grid-row: 4 / 6; }
  .mosaic-f { grid-column: 1 / 7; grid-row: 6 / 9; }
  .mosaic-g { grid-column: 7 / 13; grid-row: 6 / 9; }

  .events-space-row,
  .events-space-row--reverse {
    grid-template-columns: 1fr;
  }

  .events-space-row--reverse .events-space-visual,
  .events-space-row--reverse .events-space-copy {
    order: initial;
  }

  .events-space-visual-stack,
  .events-space-row--reverse .events-space-visual-stack {
    display: none;
  }

  .events-space-visual > img {
    height: 320px;
  }

  .events-experience-grid,
  .events-lead-layout {
    grid-template-columns: 1fr;
  }

  .events-lead-visual {
    min-height: 260px;
    max-height: 300px;
  }

  .events-occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .events-hero {
    min-height: 78vh;
  }

  .events-hero-content {
    padding-top: 6rem;
    text-align: left;
  }

  .events-hero-lede {
    margin-left: 0;
  }

  .events-hero-actions {
    justify-content: flex-start;
  }

  .events-hero-capacity {
    gap: 0.65rem 1rem;
    font-size: 0.72rem;
  }

  .events-mosaic {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    min-height: 0;
  }

  .events-mosaic-item {
    height: 210px;
  }

  .mosaic-b,
  .mosaic-f {
    height: 260px;
  }

  .events-experience-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 150px;
  }

  .exp-shot--main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .exp-shot--tall,
  .exp-shot--wide {
    grid-row: 2;
  }

  .exp-shot--tall { grid-column: 1; }
  .exp-shot--wide { grid-column: 2; }

  .events-occasion-grid {
    grid-template-columns: 1fr;
  }

  .events-occasion-tile {
    height: 200px;
  }

  .events-lead-card {
    padding: 1.75rem 1.25rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .events-hero-img,
  .events-hero-brand,
  .events-hero-title,
  .events-hero-lede,
  .events-hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   HOMEPAGE NARRATIVE FLOW (2026 redesign)
   Soft landing after cinematic sticky hero → editorial chapters → spaces
   ========================================================================== */

.home-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.home-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  padding: 0 1.5rem;
}

.home-section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.home-section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.home-section-head--inset {
  max-width: 1100px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}

/* —— Pulse ribbon (replaces emoji quick-strip) —— */
.home-pulse {
  position: relative;
  z-index: 20;
  margin-top: -4.5rem;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) 0;
}

.home-pulse::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -4rem;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, rgba(4, 1, 6, 0.72));
  pointer-events: none;
  z-index: -1;
}

.home-pulse-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  background:
    linear-gradient(180deg, rgba(8, 3, 12, 0.72) 0%, rgba(6, 2, 8, 0.45) 100%);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.home-pulse-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

a.home-pulse-item:hover .home-pulse-value {
  color: var(--gold-light);
}

.home-pulse-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted-soft);
}

.home-pulse-value {
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  letter-spacing: 0.06em;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.home-pulse-rule {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent 10%,
    rgba(212, 175, 55, 0.28) 50%,
    transparent 90%
  );
}

/* —— Editorial intro —— */
.home-intro {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.5rem, 5vw, 3rem);
}

.home-intro-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.home-intro-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-intro-media:hover img {
  transform: scale(1.04);
}

.home-intro-media-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.home-intro-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 1.35rem;
}

.home-intro-copy p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.home-intro-lede {
  font-family: var(--font-heading);
  font-size: 1.05rem !important;
  color: var(--gold-dark) !important;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem !important;
}

/* —— The Infused Experience (feature triptych) —— */
.home-experience {
  position: relative;
  z-index: 20;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 6.5rem);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(212, 175, 55, 0.05), transparent 55%);
}

.home-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.5rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.home-exp-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(165deg, rgba(12, 5, 18, 0.88) 0%, rgba(6, 2, 8, 0.72) 100%);
  border: 1px solid rgba(212, 175, 55, 0.12);
  overflow: hidden;
  transition: border-color 0.45s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-exp-card:hover {
  border-color: rgba(212, 175, 55, 0.32);
  transform: translateY(-6px);
}

.home-exp-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.home-exp-card:nth-child(2) .home-exp-media {
  height: 250px;
}

.home-exp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  filter: brightness(0.88) saturate(0.94);
}

.home-exp-card:hover .home-exp-media img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.home-exp-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 2, 8, 0.55) 0%, transparent 55%);
  pointer-events: none;
}

.home-exp-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.4rem 1.65rem;
}

.home-exp-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

.home-exp-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.home-exp-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  flex: 1;
}

.home-exp-link {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: letter-spacing 0.35s ease;
}

.home-exp-card:hover .home-exp-link {
  letter-spacing: 0.24em;
}

.home-exp-note {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted-soft);
}

.home-exp-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.home-exp-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  font-size: 0.85rem;
  color: var(--text-on-glass);
}

.home-exp-hours li span:first-child {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-dark);
}

/* —— Guest voices —— */
.home-voices {
  position: relative;
  z-index: 20;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
  background:
    radial-gradient(ellipse 55% 60% at 10% 40%, rgba(120, 40, 90, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 60%, rgba(212, 175, 55, 0.04), transparent 55%);
}

.home-voices-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

.home-voices-head {
  text-align: center;
  margin-bottom: 3rem;
}

.home-voices-rating {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.home-voices-score {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-voices-stars {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
}

.home-voices-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}

.home-voices-more {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.home-voices-more:hover {
  color: var(--gold-light);
  border-bottom-color: rgba(212, 175, 55, 0.4);
}

.home-voices-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
}

.home-voice {
  margin: 0;
  padding: 1.75rem 1.5rem;
  background: rgba(8, 3, 12, 0.55);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.home-voice-avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.home-voice-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.home-voice-meta cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

.home-voice-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted-soft);
}

.home-voice p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* —— Atmosphere filmstrip —— */
.home-grounds {
  position: relative;
  z-index: 20;
  padding: 0 0 clamp(1rem, 3vw, 2rem);
}

.home-grounds-label {
  max-width: 1180px;
  margin: 0 auto 1rem;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted-soft);
}

.home-grounds-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  min-height: min(42vh, 380px);
}

.home-grounds-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 260px;
}

.home-grounds-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  filter: brightness(0.82) saturate(0.92);
}

.home-grounds-frame:hover img {
  transform: scale(1.07);
  filter: brightness(1) saturate(1);
}

.home-grounds-frame figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

/* —— Host your event —— */
.home-host {
  position: relative;
  z-index: 20;
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.5rem, 5vw, 3rem);
}

.home-host-stage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background: rgba(8, 3, 12, 0.7);
}

.home-host-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.35rem;
  min-height: 420px;
  padding: 0.35rem;
  background: rgba(4, 1, 6, 0.5);
}

.home-host-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}

.home-host-visual img:first-child {
  grid-row: 1 / -1;
}

.home-host-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 3.75rem);
  background:
    radial-gradient(ellipse at 85% 15%, rgba(212, 175, 55, 0.07), transparent 50%),
    linear-gradient(160deg, rgba(10, 4, 16, 0.95), rgba(6, 2, 8, 0.92));
}

.home-host-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.home-host-copy > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 38ch;
}

.home-host-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.home-host-secondary {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  width: fit-content;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 0.2rem;
  transition: var(--transition-fast);
}

.home-host-secondary:hover {
  color: var(--gold-light);
  border-bottom-color: rgba(212, 175, 55, 0.55);
}

/* —— Stay with us —— */
.home-stay {
  position: relative;
  z-index: 20;
  padding: 0 clamp(1.5rem, 5vw, 3rem) clamp(4.5rem, 10vw, 7rem);
}

.home-stay-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.home-stay-media {
  position: relative;
  min-height: 320px;
}

.home-stay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
}

.home-stay-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.45rem 0.85rem;
  background: rgba(4, 1, 6, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.28);
  backdrop-filter: blur(10px);
}

.home-stay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4.5vw, 3.25rem);
  background:
    linear-gradient(155deg, rgba(14, 6, 20, 0.96) 0%, rgba(6, 2, 8, 0.94) 100%);
}

.home-stay-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.home-stay-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

/* —— Staggered reveal delays —— */
.home-experience-grid .home-exp-card:nth-child(2) { transition-delay: 0.06s; }
.home-experience-grid .home-exp-card:nth-child(3) { transition-delay: 0.12s; }
.home-voices-rail .home-voice:nth-child(2) { transition-delay: 0.08s; }
.home-voices-rail .home-voice:nth-child(3) { transition-delay: 0.16s; }

@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    .home-exp-card,
    .home-voice,
    .home-grounds-frame {
      animation: revealUp auto linear backwards;
      animation-timeline: view();
      animation-range: entry 5% entry 40%;
    }

    .home-experience-grid .home-exp-card:nth-child(2),
    .home-voices-rail .home-voice:nth-child(2),
    .home-grounds-frame:nth-child(2) {
      animation-range: entry 10% entry 45%;
    }

    .home-experience-grid .home-exp-card:nth-child(3),
    .home-voices-rail .home-voice:nth-child(3),
    .home-grounds-frame:nth-child(3) {
      animation-range: entry 15% entry 50%;
    }

    .home-grounds-frame:nth-child(4) {
      animation-range: entry 20% entry 55%;
    }
  }
}

/* —— Responsive —— */
@media (max-width: 992px) {
  .home-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
  }

  .home-intro-media img {
    min-height: 320px;
    max-height: 400px;
    clip-path: none;
  }

  .home-experience-grid,
  .home-voices-rail {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-exp-card:nth-child(2) .home-exp-media,
  .home-exp-media {
    height: 210px;
  }

  .home-grounds-strip {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }

  .home-grounds-frame {
    min-height: 200px;
  }

  .home-host-stage,
  .home-stay-inner {
    grid-template-columns: 1fr;
  }

  .home-host-visual {
    min-height: 280px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 140px;
  }

  .home-host-visual img:first-child {
    grid-row: 1;
    grid-column: 1 / -1;
  }

  .home-stay-media {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .home-pulse {
    margin-top: -3.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .home-pulse-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0;
  }

  .home-pulse-rule {
    width: auto;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 5%,
      rgba(212, 175, 55, 0.22) 50%,
      transparent 95%
    );
  }

  .home-pulse-item {
    padding: 0.85rem 1rem;
  }

  .home-section-head--inset {
    text-align: center;
  }

  .home-grounds-strip {
    grid-template-columns: 1fr;
  }

  .home-grounds-frame {
    min-height: 220px;
  }

  .home-host-actions {
    flex-direction: column;
  }

  .home-host-actions .btn-gold,
  .home-host-actions .btn-outline,
  .home-stay-copy .btn-gold {
    width: 100%;
    text-align: center;
  }
}
