/* ============================================================
   MamaGhar Entertainment — Unified Optimized Stylesheet
   Merged from design.css + style.css with all improvements
   "Where Nepali music feels like home."
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Brand palette - WCAG AA compliant */
  --crimson: #A11226;
  --crimson-deep: #7a0d1c;
  --indigo: #243B6B;
  --indigo-deep: #182a4f;
  --saffron: #D98A00;
  --marigold: #F4B400;
  --ivory: #F9F7F2;
  --ivory-soft: #F4F0E7;
  --charcoal: #1B1B1B;
  --charcoal-soft: #26211c;
  --copper: #A96B3C;

  /* Extended - improved contrast */
  --gold-light: #C4920F; /* Increased from #e8c878 for better contrast */
  --gold-darker: #D4A017;
  --cream: #fbf9f5;

  /* Semantic */
  --bg-dark: var(--charcoal);
  --bg-dark-2: #120f0c;
  --bg-light: var(--ivory);
  --surface: #ffffff;
  --text-dark: var(--charcoal);
  --text: var(--charcoal);
  --text-muted: #4A4540; /* Darker from #6b6359 for WCAG AA */
  --text-on-dark: #F5F0E8; /* Lighter from #f3ede3 for better contrast */
  --text-muted-dark: rgba(245, 240, 232, 0.85); /* Increased from 0.7 to 0.85 for better contrast */
  --line: rgba(27, 27, 27, 0.10);
  --line-dark: rgba(243, 237, 227, 0.10);

  /* Gradients */
  --grad-sunrise: linear-gradient(135deg, #D98A00 0%, #F4B400 45%, #A11226 100%);
  --grad-dusk: linear-gradient(135deg, #243B6B 0%, #7F0d1c 60%, #A96B3C 120%);
  --grad-primary: linear-gradient(120deg, #A11226 0%, #7F0d1c 100%);
  --grad-gold: linear-gradient(120deg, #F4B400, #D98A00);
  --grad-text: linear-gradient(100deg, #F4B400 0%, #e8c46a 30%, #F9F7F2 60%, #D98A00 100%);

  /* Type stack */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --font-deva: 'Tiro Devanagari Hindi', serif;

  /* Typography scale */
  --font-scale-xs: 0.75rem;
  --font-scale-sm: 0.875rem;
  --font-scale-base: 1rem;
  --font-scale-lg: 1.125rem;
  --font-scale-xl: 1.25rem;
  --font-scale-2xl: 1.5rem;
  --font-scale-3xl: 1.875rem;
  --font-scale-4xl: 2.25rem;

  /* Elevation + radius */
  --shadow-sm: 0 2px 10px rgba(27, 27, 27, 0.06);
  --shadow-md: 0 16px 40px rgba(27, 27, 27, 0.10);
  --shadow-lg: 0 30px 70px rgba(27, 27, 27, 0.16);
  --shadow-gold: 0 12px 40px rgba(244, 180, 0, 0.25);
  --ring: 0 0 0 1px rgba(244, 180, 0, 0.35);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.55s;

  /* Layout */
  --wrap: 1240px;
  --wrap-narrow: 980px;
  --gutter: clamp(1.5rem, 5vw, 3rem);

  /* Unified breakpoint system */
  --bp-mobile: 480px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --bp-wide: 1280px;

  /* Z-index hierarchy */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;
  --z-preloader: 1000;
}

/* ── 2. RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  line-height: 1.65;
  font-size: var(--font-scale-base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea { font: inherit; }

::selection { background: var(--marigold); color: var(--charcoal); }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--saffron), var(--copper)); border-radius: 6px; border: 2px solid var(--bg-dark); }

/* ── 3. UTILITIES ─────────────────────────────────────────── */
.wrap { width: min(calc(100% - 2 * var(--gutter)), var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(calc(100% - 2 * var(--gutter)), var(--narrow, var(--wrap-narrow))); margin-inline: auto; }
.rich-content { line-height: 1.8; }
.rich-content h2, .rich-content h3, .rich-content h4 { margin: 0 0 0.7rem; }
.rich-content p, .rich-content ul, .rich-content ol, .rich-content blockquote { margin: 0 0 1rem; }
.rich-content ul, .rich-content ol { padding-left: 1.4rem; }
.rich-content ul { list-style: disc; }
.rich-content ol { list-style: decimal; }
.rich-content a { color: var(--crimson); text-decoration: underline; }
.live-editor-toolbar { position: fixed; top: 50%; right: 1rem; z-index: 10000; display: flex; flex-direction: column; align-items: stretch; gap: .55rem; width: 170px; padding: .8rem; transform: translateY(-50%); background: #1b1b1b; color: #fff; border: 1px solid rgba(244,180,0,.6); border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,.35); font: 600 .82rem/1.2 var(--font-sans); }
.live-editor-toolbar strong { display: block; padding-bottom: .25rem; text-align: center; }
.live-editor-toolbar button, .live-editor-toolbar a { display: flex; align-items: center; justify-content: center; gap: .35rem; width: 100%; padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; color: #fff; background: rgba(255,255,255,.08); cursor: pointer; text-decoration: none; }
.live-editor-toolbar button:hover, .live-editor-toolbar a:hover { background: rgba(244,180,0,.2); }
.live-editor-toolbar button:disabled { opacity: .4; cursor: not-allowed; }
.live-editor-toolbar .live-save { background: var(--marigold); color: var(--charcoal); border-color: var(--marigold); }
.live-editor-status { color: rgba(255,255,255,.68); }
.live-editor-status.is-error { color: #ff9b9b; }
.live-editor-active [data-live-field], .live-editor-active [data-live-image] { outline: 2px dashed rgba(244,180,0,.8); outline-offset: 4px; cursor: text; }
.live-editor-active [data-live-image] { cursor: pointer; }
.live-editor-active [data-live-field]:focus, .live-editor-active [data-live-field].is-editing { outline-style: solid; background: rgba(244,180,0,.12); }
@media (max-width: 700px) { .live-editor-toolbar { top: auto; right: .7rem; bottom: 5.5rem; width: 150px; transform: none; } .live-editor-status { text-align: center; order: 5; } }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold-darker);
  color: var(--charcoal);
  padding: 8px 16px;
  z-index: var(--z-tooltip);
  transition: top 0.3s var(--ease);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--marigold);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; width: 26px; height: 1px; background: var(--marigold); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-muted); max-width: 56ch; }

.dev { font-family: var(--font-deva); font-weight: 400; }

/* ── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--r-pill);
  font-family: var(--font-sans);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
  will-change: transform;
}
.btn i { transition: transform var(--dur) var(--ease); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
  background: var(--grad-primary); color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg), 0 0 0 4px rgba(161, 18, 38, 0.18); }

.btn-gold {
  background: var(--grad-gold); color: var(--charcoal);
  box-shadow: 0 10px 30px rgba(217, 138, 0, 0.3);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--text-on-dark);
  border: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); transform: translateY(-3px); }

.btn-line {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn-line:hover { border-color: var(--copper); color: var(--copper); transform: translateY(-3px); }

.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.83rem; }
.btn-lg { padding: 1.15rem 2.6rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── 5. HEADER / NAV ──────────────────────────────────────── */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-sticky);
  padding: 0.9rem 0;
  color: var(--text-on-dark);
  mix-blend-mode: normal;
  transition: background var(--dur) var(--ease), padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-header.is-solid {
  background: rgba(18, 15, 12, 0.9);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
  padding: 0.7rem 0;
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
  border-bottom: 1px solid rgba(244, 180, 0, 0.16);
}
body.page-inset .site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-sticky);
  padding: 0.9rem 0;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(18px) saturate(1.05); backdrop-filter: blur(18px) saturate(1.05);
  border-bottom: 1px solid rgba(27, 27, 27, 0.06);
}
body.page-inset .site-header .brand-mark {
  background: rgba(255,255,255,0.92);
  border-color: rgba(27, 27, 27, 0.12);
  color: var(--charcoal);
}
body.page-inset .site-header .brand-name {
  color: var(--charcoal);
}
body.page-inset .site-header .brand-name span {
  color: var(--marigold);
}
body.page-inset .site-header .brand-tag {
  color: var(--text-muted);
}
.site-header .nav-link {
  color: var(--text-muted-dark);
}
.site-header .nav-link::after {
  background: var(--copper);
}
.site-header .nav-link:hover,
.site-header .nav-link.is-active {
  color: var(--ivory);
}
/* page-inset: dark text on the light glass header (over light pages) */
body.page-inset .site-header .nav-link {
  color: var(--text-muted);
}
body.page-inset .site-header .nav-link::after {
  background: var(--marigold);
}
body.page-inset .site-header .nav-link:hover,
body.page-inset .site-header .nav-link.is-active {
  color: var(--charcoal);
}
body.page-inset .site-header .nav-toggle {
  background: rgba(255,255,255,0.94);
  border-color: rgba(27,27,27,0.12);
}
body.page-inset .site-header .nav-toggle span {
  background: var(--charcoal);
}
body.page-inset .site-header.is-solid {
  background: rgba(255,255,255,0.96) !important; /* beats next-level.css dark glass */
  -webkit-backdrop-filter: blur(18px) saturate(1.05); backdrop-filter: blur(18px) saturate(1.05);
  box-shadow: 0 14px 40px rgba(27,27,27,0.12);
  border-bottom: 1px solid rgba(27,27,27,0.08);
}
body.page-inset .site-header.is-solid .brand-tag {
  color: var(--text-muted);
}
body.page-inset .site-header.is-solid .nav-link {
  color: var(--text-muted);
}
body.page-inset .site-header.is-solid .nav-link:hover,
body.page-inset .site-header.is-solid .nav-link.is-active {
  color: var(--charcoal);
}
body.page-inset .site-header .nav-cta {
  box-shadow: 0 10px 25px rgba(27,27,27,0.12);
}
/* logo: keep the standard look on the light glass header */

.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  min-height: 58px;
}

.brand {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 0.35rem 0.5rem 0.35rem 0.2rem;
  border-radius: 999px;
}
.brand-mark {
  width: 46px; height: 46px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 14px;
  position: relative;
  color: var(--ivory);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}
.brand-logo { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
/* Light-glass header pages (Gallery, Contact, About): flip the white logo to black */
body.page-inset .brand-logo { filter: invert(1); }
.brand-name {
  display: inline-flex; align-items: baseline; gap: 0.18rem;
  font-family: var(--font-sans); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; color: var(--ivory);
}
.brand-name span { color: var(--marigold); }
.brand-tag { display: block; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted-dark); }

.nav {
  display: flex; align-items: center; gap: 1.4rem;
}
.nav-link {
  position: relative;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.9rem;
  color: var(--text-muted-dark);
  padding: 0.4rem 0;
  transition: color var(--dur) var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -0.1rem; height: 2px; width: 0;
  background: var(--marigold); border-radius: 2px;
  transition: width var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--ivory); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }

.nav-cta {
  margin-left: 0.25rem;
  padding-inline: 1.2rem;
  box-shadow: 0 10px 25px rgba(161, 18, 38, 0.24);
}

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  align-items: center; justify-content: center;
  position: relative; z-index: 60;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line-dark);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ivory);
  border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease);
  position: absolute;
}
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle.is-active span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: rotate(-45deg); }

.nav-close {
  display: none;
  width: 42px; height: 42px; border-radius: 50%;
  align-items: center; justify-content: center;
  margin-left: auto;
  color: var(--ivory);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-dark);
}

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; z-index: var(--z-tooltip); width: 100%; background: transparent; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--grad-sunrise); }

/* Mobile nav overlay - unified breakpoint */
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px); z-index: var(--z-modal);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 1.2rem;
    padding: 1.2rem 1.2rem 1.6rem; background: rgba(18, 15, 12, 0.98);
    border-left: 1px solid var(--line-dark);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: -30px 0 80px rgba(0,0,0,0.5);
  }
  .nav.is-open { transform: translateX(0); }
  .nav-close { display: inline-flex; }
  .nav .nav-link {
    font-size: 1rem;
    padding: 0.35rem 0;
  }
  .nav .nav-cta { margin-left: 0; width: 100%; justify-content: center; }
  .header-inner { padding-inline: var(--gutter); }

  /* Mobile slide-out always uses dark bg, so force light text for all pages */
  body.page-inset .nav .nav-link {
    color: var(--text-muted-dark);
  }
  body.page-inset .nav .nav-link:hover,
  body.page-inset .nav .nav-link.is-active {
    color: var(--ivory);
  }
  body.page-inset .nav .nav-link::after {
    background: var(--marigold);
  }
  body.page-inset .nav .nav-close {
    color: var(--ivory);
  }
}

/* ── 6. HERO SECTION ─────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: var(--text-on-dark);
  overflow: hidden;
  background: var(--bg-dark);
}
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media img, .hero-media video, .hero-media .fill {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.08);
}
.hero-bg-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.8s ease-in-out, transform 8s ease-out;
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.hero-bg-slide.active {
  opacity: 1; transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 15% 20%, rgba(243,180,0,0.18) 0%, transparent 50%),
    radial-gradient(120% 100% at 90% 90%, rgba(169,107,60,0.28) 0%, transparent 55%),
    linear-gradient(180deg, rgba(18,15,12,0.55) 0%, rgba(18,15,12,0.35) 40%, rgba(18,15,12,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(calc(100% - 2 * var(--gutter)), 1240px);
  padding: 7.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.8fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.hero-copy { max-width: 760px; }
.hero-kicker {
  margin: 0 0 1.35rem;
  color: rgba(249,247,242,0.68);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-kicker::before {
  content: ''; display: inline-block; width: 2.6rem; height: 1px;
  margin: 0 0.75rem 0.25rem 0;
  background: var(--marigold);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.1rem; border-radius: var(--r-pill);
  background: rgba(244,180,0,0.12); border: 1px solid rgba(244,180,0,0.35);
  color: var(--gold-light); font-weight: 600; font-size: 0.85rem;
  margin-bottom: 1.6rem;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  color: var(--text-on-dark);
  max-width: 10ch;
  font-size: clamp(3.8rem, 7.2vw, 7.5rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
}
.hero-title .emphasis {
  display: block;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  margin: 2rem 0 2.6rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  color: rgba(249,247,242,0.74);
  max-width: 48ch;
  line-height: 1.75;
}
.hero-sub .dev { color: var(--gold-light); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 1.7rem;
  padding-top: 1.4rem; border-top: 1px solid rgba(244,180,0,0.24);
  color: var(--text-muted-dark); font-size: 0.9rem;
}
.hero-meta div { min-width: 70px; }
.hero-meta span { display: block; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(249,247,242,0.52); }
.hero-meta b { display: block; margin-top: 0.18rem; color: var(--ivory); font-size: 1.35rem; font-family: var(--font-display); }
.hero-meta small { display: block; margin-top: 0.12rem; color: var(--gold-light); font-size: 0.76rem; }

.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; z-index: 2;
  background: linear-gradient(transparent, var(--bg-light));
  pointer-events: none;
}
.hero--dark::after { background: linear-gradient(transparent, var(--bg-dark-2)); }

/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 3rem; left: 50%; z-index: 3;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 2px solid var(--line-dark); border-radius: 14px;
}
.scroll-cue::after {
  content: ''; position: absolute; top: 8px; left: 50%; width: 4px; height: 8px;
  transform: translateX(-50%);
  border-radius: 4px; background: var(--marigold);
  animation: scrollCue 1.8s var(--ease) infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* ── 7. SECTION SHELL ────────────────────────────────────── */
.section { position: relative; padding: clamp(4rem, 7vw, 6rem) 0; }
.section--light { background: var(--bg-light); }
.section--surface { background: #fff; }
.section--dark { background: var(--bg-dark-2); color: var(--text-on-dark); }
.section--dark .section-sub { color: var(--text-muted-dark); }

.section-head { max-width: 780px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 1.1rem; }
.section--dark h2, .section--dark h3 { color: var(--text-on-dark); }
.section--dark .eyebrow { color: var(--gold-light); }
.section-head .head-sub { font-size: 1.05rem; color: var(--text-muted); max-width: 56ch; }
.section-head.center .head-sub { margin-inline: auto; }
.section--dark .head-sub { color: var(--text-muted-dark); }

/* Keep the homepage sponsor band tighter than the standard section rhythm. */
#sponsors { padding: clamp(2rem, 4vw, 3rem) 0; }

.head-row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.head-row .section-head { margin-bottom: 0; }
@media (max-width: 768px) { .head-row { flex-direction: column; align-items: flex-start; } }

/* ── 8. CARD GRIDS ───────────────────────────────────────── */
.card-grid { display: grid; gap: 1.8rem; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Unified responsive breakpoints for grids */
@media (max-width: 1024px) { 
  .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } 
}
@media (max-width: 768px) { 
  .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; } 
}

/* ── 9. EVENT CARDS ──────────────────────────────────────── */
.event-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  border: 1px solid var(--line);
}
.event-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.event-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.event-card:hover .event-media img { transform: scale(1.08); }
.event-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,15,12,0) 45%, rgba(18,15,12,0.72) 100%);
}
.event-tag {
  position: absolute; top: 1.1rem; left: 1.1rem; z-index: 2;
  padding: 0.4rem 0.9rem; border-radius: var(--r-pill);
  background: rgba(18,15,12,0.55); color: var(--gold-light);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.event-tag--gold { background: var(--grad-gold); color: var(--charcoal); }

.countdown {
  display: flex; gap: 0.5rem; position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2;
}
.countdown div {
  min-width: 54px; text-align: center;
  padding: 0.55rem 0.4rem;
  background: rgba(18,15,12,0.5); border: 1px solid var(--line-dark);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.countdown b { display: block; font-family: var(--font-sans); font-size: 1.35rem; color: var(--ivory); line-height: 1; }
.countdown span { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted-dark); }

.event-body { padding: 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex-grow: 1; }
.event-body h3 { font-size: 1.45rem; }
.event-body p { color: var(--text-muted); font-size: 0.96rem; flex-grow: 1; }
.event-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.4rem; color: var(--copper); font-size: 0.84rem; font-weight: 600; }
.event-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.event-meta i { color: var(--saffron); }
.event-card .btn { align-self: flex-start; }

/* ── 11. FEATURE CARDS ────────────────────────────────────── */
.feature-grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  position: relative;
  padding: 2.4rem 2.3rem;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-sunrise); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(244,180,0,0.14), rgba(161,18,38,0.1));
  color: var(--crimson);
  margin-bottom: 1.4rem;
}
.feature-card h3 { margin-bottom: 0.8rem; font-size: 1.4rem; }
.feature-card p { color: var(--text-muted); font-size: 0.96rem; }
.feature-num {
  position: absolute; top: 1.6rem; right: 1.9rem;
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px rgba(161,18,38,0.25);
  opacity: 0.6;
}

/* ── 12. VALUE / PROCESS CARDS ────────────────────────────── */
.value-card {
  padding: 2.3rem; border-radius: var(--r-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.value-card:hover { border-color: rgba(244,180,0,0.4); background: rgba(244,180,0,0.04); transform: translateY(-4px); }
.value-card .dev { display: block; color: var(--gold-light); font-size: 1.3rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.8rem; color: var(--text-on-dark); }
.value-card p { color: var(--text-muted-dark); font-size: 0.95rem; }

.step-item { position: relative; padding-left: 4.5rem; }
.step-item::before {
  content: ''; position: absolute; left: 0; top: 0.4rem; width: 3px; height: 100%;
  background: linear-gradient(var(--marigold), var(--crimson)); border-radius: 3px; opacity: 0.35;
}
.step-num { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--marigold); }
.step-item h3 { margin: 0.5rem 0; }

/* ── 13. STATS ────────────────────────────────────────────── */
.stats { display: grid; gap: 1.6rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat span { display: block; margin-top: 0.4rem; font-size: 0.9rem; color: var(--text-muted-dark); }

/* ── 14. TESTIMONIALS ─────────────────────────────────────── */
.tes-grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) { .tes-grid { grid-template-columns: 1fr; } }
.tes-card {
  padding: 2.3rem; border-radius: var(--r-lg);
  background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.tes-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tes-stars { color: var(--marigold); display: flex; gap: 0.2rem; }
.tes-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--text); }
.tes-card footer { display: flex; align-items: center; gap: 0.9rem; }
.tes-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-sunrise); display: grid; place-items: center; color: #fff; font-weight: 700; }
.tes-card footer b { display: block; font-family: var(--font-sans); font-size: 0.95rem; }
.tes-card footer span { font-size: 0.8rem; color: var(--text-muted); }

/* ── 15. FESTIVAL EXPERIENCE ──────────────────────────────── */
.fest-grid { display: grid; gap: 1.3rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .fest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fest-grid { grid-template-columns: 1fr; } }

.fest-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: flex-end;
  color: var(--text-on-dark);
  min-height: 300px;
}
.fest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.fest-card:hover img { transform: scale(1.08); }
.fest-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(18,15,12,0.85), transparent 55%); }
.fest-card >div { position: relative; z-index: 2; padding: 1.8rem; }
.fest-card .dev { display: block; color: var(--gold-light); font-size: 1.4rem; margin-bottom: 0.5rem; }
.fest-card h3 { color: var(--ivory); font-size: 1.5rem; }
.fest-card p { color: var(--text-muted-dark); font-size: 0.9rem; margin-top: 0.4rem; }

/* ── 16. GALLERY (Instagram-style) ───────────────────────── */
.gallery-fullscreen {
  padding: 0;
  min-height: 100vh;
  background: var(--bg-light);
}

.gallery-profile {
  display: flex; align-items: center; gap: 2rem;
  padding: 2rem 0 1.5rem; border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .gallery-profile { flex-direction: column; text-align: center; gap: 1.5rem; }
}

.gallery-profile-avatar {
  flex: 0 0 auto;
}
.avatar-gradient {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F4B400, #A11226, #243B6B);
  padding: 3px;
}
.avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 4px solid var(--bg-light);
  overflow: hidden;
  background: var(--bg-dark);
}
.avatar-inner img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 769px) {
  .avatar-gradient { width: 140px; height: 140px; }
}

.gallery-profile-info { flex: 1; }
.profile-header {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.profile-username {
  font-family: var(--font-sans); font-size: 1.4rem; font-weight: 700;
  color: var(--text); margin: 0;
}
.profile-verified {
  color: #3B82F6; font-size: 1.2rem;
}
.profile-stats {
  display: flex; gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.95rem; color: var(--text-muted);
}
.profile-stats strong { color: var(--text); font-weight: 700; }
@media (max-width: 768px) {
  .profile-stats { justify-content: center; }
}

.profile-bio {
  max-width: 400px;
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.6;
}
.bio-bold { font-weight: 700; color: var(--text); margin-bottom: 0.2rem; }
.bio-contact { margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
@media (max-width: 768px) {
  .profile-bio { margin: 0 auto; }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 2px; }
}

.gallery-grid-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-dark);
}
.gallery-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--ease);
}
.gallery-grid-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.gallery-grid-item:hover .gallery-overlay { opacity: 1; }

.gallery-stats {
  display: flex; gap: 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.stat-item { display: flex; align-items: center; gap: 0.4rem; }

.gallery-load-more {
  display: flex; justify-content: center;
  padding: 2rem 0;
}
.btn-instagram {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #F4B400, #A11226, #243B6B);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 4px 20px rgba(161, 18, 38, 0.3);
}
.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(161, 18, 38, 0.4);
}

/* Advanced Lightbox */
.lightbox-advanced {
  position: fixed; inset: 0; z-index: var(--z-popover);
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.lightbox-advanced.is-open { opacity: 1; visibility: visible; }

.lightbox-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff; display: grid; place-items: center;
  transition: background 0.2s var(--ease);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff; display: grid; place-items: center;
  transition: background 0.2s var(--ease);
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-content {
  display: flex;
  max-width: 90vw; max-height: 90vh;
  background: var(--bg-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .lightbox-content { flex-direction: column; max-width: 95vw; }
}

.lightbox-media {
  flex: 1;
  min-width: 0;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}
.lightbox-media img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
}
@media (max-width: 768px) {
  .lightbox-media img { max-height: none; }
}

.lightbox-sidebar {
  width: 380px;
  display: flex; flex-direction: column;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .lightbox-sidebar { width: 100%; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); }
}

.lightbox-header {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; background: var(--bg-dark);
}
.lightbox-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lightbox-username {
  font-weight: 700; font-size: 0.9rem;
  color: #fff; flex: 1;
}
.lightbox-close-small {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff; display: grid; place-items: center;
  transition: background 0.2s var(--ease);
}
.lightbox-close-small:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox-caption {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .lightbox-caption { max-height: 30vh; }
}

.lightbox-footer {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}
.lightbox-stats {
  display: flex; gap: 1.5rem;
  margin-bottom: 0.8rem;
}
.lightbox-stat {
  display: flex; align-items: center; gap: 0.4rem;
  color: #fff; font-weight: 700; font-size: 0.9rem;
}
.lightbox-view-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  transition: background 0.2s var(--ease);
}
.lightbox-view-btn:hover { background: rgba(59, 130, 246, 0.3); }

/* ── 17. SPONSORS (scrolling cards) ───────────────────────── */
.sponsor-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 0.25rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.sponsor-marquee-track {
  display: flex; width: max-content;
  animation: sponsorMarquee 48s linear infinite;
  will-change: transform;
}
.sponsor-marquee:hover .sponsor-marquee-track { animation-play-state: paused; }
.sponsor-marquee-group {
  display: flex; align-items: stretch; gap: 1.5rem;
  padding-right: 1.5rem;
}
.sponsor-card {
  display: flex; flex-direction: column;
  width: 300px; flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.sponsor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(244, 180, 0, 0.45); }
.sponsor-card-banner {
  position: relative; aspect-ratio: 16 / 7;
  overflow: hidden;
  background: linear-gradient(120deg, var(--ivory), var(--cream));
  display: flex; align-items: center; justify-content: center;
}
.sponsor-card-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,15,12,0) 55%, rgba(18,15,12,0.5) 100%);
  pointer-events: none;
}
.sponsor-card-banner img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.sponsor-card:hover .sponsor-card-banner img { transform: scale(1.05); }
.sponsor-card-banner .sponsor-card-banner-logo {
  object-fit: contain; padding: 1.25rem;
  filter: grayscale(1) contrast(1.05);
  transition: filter var(--dur) var(--ease), transform 1.1s var(--ease);
}
.sponsor-card:hover .sponsor-card-banner-logo { filter: none; transform: scale(1.05); }
.sponsor-card-banner-star { font-size: 2rem; color: var(--marigold); }
.sponsor-card-banner-star i { filter: drop-shadow(0 4px 14px rgba(217, 138, 0, 0.35)); }
.sponsor-card-body {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.sponsor-card-logo {
  width: 52px; height: 52px; object-fit: contain;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 0.35rem; background: #fff;
  flex: 0 0 auto;
}
.sponsor-card-logo--star { display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--marigold); }
.sponsor-card-meta { min-width: 0; }
.sponsor-card-meta h3 { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.15; margin: 0; color: var(--charcoal); }
.sponsor-card-tier {
  display: inline-block; margin-top: 0.3rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--saffron);
}
@keyframes sponsorMarquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .sponsor-marquee-track { animation: none; }
  .sponsor-marquee { overflow-x: auto; }
}
@media (max-width: 640px) {
  .sponsor-marquee-group { gap: 1rem; padding-right: 1rem; }
  .sponsor-card { width: 240px; }
  .sponsor-card-logo { width: 46px; height: 46px; }
}

/* ── 18. CTA PANEL ────────────────────────────────────────── */
.cta-panel {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(80% 120% at 10% 0%, rgba(244,180,0,0.22), transparent 50%),
    radial-gradient(80% 120% at 95% 100%, rgba(161,18,38,0.4), transparent 55%),
    linear-gradient(135deg, #243B6B, #1B1B1B);
  color: var(--text-on-dark);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2.5rem;
}
.cta-panel h2 { color: var(--ivory); margin-bottom: 1rem; max-width: 24ch; }
.cta-panel p { color: var(--text-muted-dark); max-width: 48ch; }
.cta-panel::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="none"%3E%3Cg stroke="%23F4B400" stroke-width="0.5" opacity="0.4"%3E%3Ccircle cx="100" cy="100" r="30"/%3E%3Ccircle cx="100" cy="100" r="60"/%3E%3Ccircle cx="100" cy="100" r="90"/%3E%3Cpath d="M100 5v45M100 150v45M5 100h45M150 100h45M30 30l22 22M148 148l22 22M170 30l-22 22M52 148l-22 22"/%3E%3C/g%3E%3C/svg%3E');
  background-size: 320px; opacity: 0.12; pointer-events: none;
}
#cta .wrap { width: 100%; max-width: none; }
#cta .cta-panel {
  border-radius: 0; border-left: 0; border-right: 0;
  padding-inline: max(var(--gutter), calc((100% - var(--wrap)) / 2));
}
#cta { padding-bottom: 0; }

/* ── 19. PAGE BANNER ─────────────────────────────────────── */
.page-banner {
  padding: clamp(2rem, 4vw, 3rem) 0 1.4rem;
  background: linear-gradient(180deg, rgba(244, 240, 231, 0.96) 0%, rgba(249, 247, 242, 1) 100%);
  border-bottom: 1px solid rgba(169, 107, 60, 0.12);
  box-shadow: inset 0 -1px 0 rgba(27, 27, 27, 0.04);
  position: relative;
  z-index: 1;
}
.page-banner .wrap {
  display: grid;
  gap: 0.9rem;
}
body.page-inset .page-banner {
  padding-top: clamp(2.8rem, 4vw, 4rem);
  background: var(--ivory-soft);
}
.page-banner .eyebrow {
  margin-bottom: 0.4rem;
  color: var(--copper);
}
.page-banner h1 {
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.02;
  max-width: 14ch;
}
.page-banner p.lead {
  max-width: 56ch;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .page-banner {
    padding: 1.8rem 0 1.2rem;
  }
  .page-banner h1 {
    font-size: clamp(2rem, 6vw, 2.65rem);
  }
}

/* ── 20. CONTACT LAYOUT ─────────────────────────━━━━━━━━ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: start;
}
.form-inline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .form-inline-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 21. FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--bg-dark-2); color: var(--text-muted-dark); padding: 2rem 0 2.5rem; }
.site-footer .wrap { width: 100%; max-width: none; padding-inline: var(--gutter); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.5fr 1fr 1.5fr 1fr; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory); margin-bottom: 1.2rem; }
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a:not(.brand-link) { transition: color var(--dur) var(--ease), padding var(--dur) var(--ease); }
.footer-col a:hover { color: var(--marigold); }
.footer-about p { margin-top: 1.2rem; font-size: 0.95rem; max-width: 34ch; }
.footer-contact li { display: flex; gap: 0.7rem; align-items: center; font-size: 0.92rem; }
.footer-contact svg { color: var(--marigold); flex: 0 0 auto; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line-dark);
  transition: all var(--dur) var(--ease);
}
.footer-social a:hover { background: var(--grad-gold); color: var(--charcoal); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.85rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ── 22. FORMS ──────────────────────────────────────────── */
.form-grid { display: grid; gap: 1.2rem; }
.form-group { display: grid; gap: 0.5rem; }
.form-group label { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 0.95rem 1.1rem;
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: var(--ring);
}

/* Form validation styles */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--crimson);
  background: rgba(161, 18, 38, 0.05);
}
.required {
  color: var(--crimson);
  font-weight: bold;
}
.error-message {
  color: var(--crimson);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}
.form-group input:invalid:not(:placeholder-shown) + .error-message,
.form-group textarea:invalid:not(:placeholder-shown) + .error-message {
  display: block;
}
.form-alert {
  padding: 1rem 1.2rem; border-radius: var(--r-sm);
  margin-bottom: 1.4rem; font-size: 0.95rem; font-weight: 600;
}
.form-alert.success { background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.3); color: #15803d; }
.form-alert.warning { background: rgba(245,158,11,0.14); border: 1px solid rgba(245,158,11,0.3); color: #b45309; }

/* ── 23. FAQ ──────────────────────────────────────────────── */
.faq { border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; background: #fff; margin-bottom: 0.9rem; }
.faq summary {
  padding: 1.3rem 1.5rem; cursor: pointer;
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
  list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon { color: var(--copper); font-size: 1.2rem; transition: transform var(--dur) var(--ease); flex: 0 0 auto; }
.faq[open] summary .icon { transform: rotate(45deg); }
.faq .faq-body { padding: 0 1.5rem 1.4rem; color: var(--text-muted); font-size: 0.96rem; }

/* ── 24. GSAP REVEAL HELPERS ───────────────────────────────── */
[data-reveal] { opacity: 0; will-change: transform, opacity; backface-visibility: hidden; }
html.no-js [data-reveal], .no-js [data-reveal] { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ── 25. PRELOADER (rotating mandala) ─────────────────────── */
#brand-preloader {
  position: fixed; inset: 0; z-index: var(--z-preloader);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
  background: var(--bg-dark-2); color: var(--gold-light);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
#brand-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mandala {
  width: 92px; height: 92px; border-radius: 50%;
  position: relative;
  border: 1px solid rgba(244,180,0,0.3);
  animation: spin 2.6s linear infinite;
}
.loader-mandala::before, .loader-mandala::after {
  content: ''; position: absolute; inset: 9px;
  border-radius: 50%; border: 1px dashed rgba(244,180,0,0.5);
  animation: spin 4.2s linear infinite reverse;
}
.loader-mandala::after { inset: 24px; border-style: solid; border-color: rgba(244,180,0,0.6); animation: spin 1.6s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
#brand-preloader span { font-family: var(--font-deva); font-size: 1.25rem; letter-spacing: 0.18em; }
.loader-mandala {
  width: 110px; height: 110px; border-radius: 50%;
  position: relative;
  border: 1px solid rgba(244,180,0,0.3);
  display: grid; place-items: center;
  animation: spin 2.6s linear infinite;
}
.loader-mark {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: inset 0 10px 20px rgba(0,0,0,0.08);
}
.loader-mark img {
  width: 40px; height: 40px; object-fit: contain;
}
.loader-mandala::before, .loader-mandala::after {
  content: ''; position: absolute; inset: 12px;
  border-radius: 50%; border: 1px dashed rgba(244,180,0,0.5);
  animation: spin 4.2s linear infinite reverse;
}
.loader-mandala::after { inset: 28px; border-style: solid; border-color: rgba(244,180,0,0.6); animation: spin 1.6s linear infinite; }
.loader-status {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  color: var(--text-muted-dark); letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: -0.5rem;
}

/* ── 26. FLOATING MUSIC CONTROLLER ───────────────────────── */
/* ── 26. FLOATING MUSIC CONTROLLER ───────────────────────── */
.bg-music-player {
  position: fixed; left: 1.6rem; bottom: 1.6rem; z-index: var(--z-fixed);
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0.75rem 0.4rem 0.45rem;
  background: rgba(18, 15, 12, 0.92);
  border: 1px solid rgba(244, 180, 0, 0.32);
  border-radius: var(--r-pill);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55), 0 0 15px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4);
  color: var(--text-on-dark);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}
.bg-music-player:hover {
  border-color: rgba(244, 180, 0, 0.65);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65), 0 0 22px rgba(244, 180, 0, 0.2);
}

/* Primary Play/Pause button */
.music-toggle-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-gold); color: var(--charcoal);
  display: grid; place-items: center; font-size: 0.88rem;
  box-shadow: var(--shadow-gold);
  flex: 0 0 auto;
  border: none; cursor: pointer;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.22s var(--ease);
}
.music-toggle-btn:hover { transform: scale(1.08); filter: brightness(1.12); }
.music-toggle-btn:active { transform: scale(0.95); }

/* Track Info */
.music-info {
  display: flex; flex-direction: column; gap: 0.12rem;
  min-width: 90px; max-width: 140px; cursor: pointer;
}
.music-title-wrap { display: flex; align-items: center; gap: 0.4rem; }
.music-status-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #6b6359;
  flex: 0 0 auto; transition: background 0.3s var(--ease);
}
.bg-music-player.is-playing .music-status-dot {
  background: #22c55e; box-shadow: 0 0 8px #22c55e; animation: pulseDot 2s infinite;
}
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.music-track-name {
  font-family: var(--font-sans); font-size: 0.76rem; font-weight: 700;
  color: var(--gold-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.music-eq-bars { display: flex; align-items: flex-end; gap: 3px; height: 12px; }
.music-eq-bars span {
  width: 2.5px; height: 3px; background: var(--marigold); border-radius: 2px;
  transition: height 0.3s var(--ease);
}
.bg-music-player.is-playing .music-eq-bars span:nth-child(1) { animation: eqBounce 0.8s ease-in-out infinite alternate; }
.bg-music-player.is-playing .music-eq-bars span:nth-child(2) { animation: eqBounce 1.1s ease-in-out infinite alternate 0.2s; }
.bg-music-player.is-playing .music-eq-bars span:nth-child(3) { animation: eqBounce 0.7s ease-in-out infinite alternate 0.4s; }
.bg-music-player.is-playing .music-eq-bars span:nth-child(4) { animation: eqBounce 0.95s ease-in-out infinite alternate 0.1s; }
@keyframes eqBounce { 0% { height: 3px; } 100% { height: 12px; } }

/* Controls extra */
.music-controls-extra {
  display: flex; align-items: center; gap: 0.35rem;
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: 0.5rem;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

/* Step / Navigation Buttons */
.music-step-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: transparent; border: none;
  display: grid; place-items: center;
  color: var(--text-muted-dark); font-size: 0.78rem;
  cursor: pointer; position: relative;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}
.music-step-btn:hover {
  color: var(--gold-light);
  background: rgba(244, 180, 0, 0.12);
  transform: scale(1.1);
}
.music-step-btn:active { transform: scale(0.92); }

/* Timeline Wrap */
.music-timeline-wrap {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0 0.2rem;
}
.music-time-label {
  font-family: var(--font-sans); font-size: 0.7rem; font-variant-numeric: tabular-nums;
  color: var(--text-muted-dark); min-width: 26px; text-align: center;
}
.music-slider-container {
  position: relative; display: flex; align-items: center;
}

/* Custom Seek Slider */
.music-seek-slider {
  -webkit-appearance: none; appearance: none;
  width: 90px; height: 14px; background: transparent;
  cursor: pointer; margin: 0; outline: none; z-index: 2;
}
.music-seek-slider::-webkit-slider-runnable-track {
  height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s;
}
.music-seek-slider:hover::-webkit-slider-runnable-track {
  background: rgba(255, 255, 255, 0.3);
}
.music-seek-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 6px rgba(244, 180, 0, 0.6);
  margin-top: -4px;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.music-seek-slider:hover::-webkit-slider-thumb,
.music-seek-slider:active::-webkit-slider-thumb {
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(244, 180, 0, 0.9);
}
.music-seek-slider::-moz-range-track {
  height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.music-seek-slider::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 50%; border: none;
  background: var(--gold-light);
  box-shadow: 0 0 6px rgba(244, 180, 0, 0.6);
  cursor: pointer;
}

/* Glowing Seek Progress Fill */
.music-seek-progress {
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 4px; border-radius: 2px;
  background: var(--grad-gold);
  pointer-events: none; z-index: 1;
  width: 0%; max-width: 100%;
}

/* Volume Group */
.music-volume-group {
  display: flex; align-items: center; gap: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 0.35rem; margin-left: 0.15rem;
}
.music-mute-btn {
  width: 26px; height: 26px; border-radius: 50%;
  background: transparent; border: none;
  display: grid; place-items: center;
  color: var(--text-muted-dark); font-size: 0.78rem;
  cursor: pointer; transition: color 0.2s, transform 0.2s;
}
.music-mute-btn:hover { color: var(--gold-light); transform: scale(1.1); }
.music-volume-slider {
  -webkit-appearance: none; appearance: none;
  width: 44px; height: 14px; background: transparent;
  cursor: pointer; margin: 0; outline: none;
}
.music-volume-slider::-webkit-slider-runnable-track {
  height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.2);
}
.music-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-light); margin-top: -3px;
  box-shadow: 0 0 4px rgba(244, 180, 0, 0.6); cursor: pointer;
}
.music-volume-slider::-moz-range-track {
  height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.2);
}
.music-volume-slider::-moz-range-thumb {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: var(--gold-light); cursor: pointer;
}

/* Minimize & Expand Buttons */
.music-min-btn {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08); border: none;
  display: grid; place-items: center;
  color: var(--text-muted-dark); font-size: 0.7rem;
  cursor: pointer; margin-left: 0.2rem;
  transition: all 0.2s var(--ease);
}
.music-min-btn:hover {
  color: var(--gold-light); background: rgba(244, 180, 0, 0.2); transform: scale(1.1);
}
.music-expand-pill-btn {
  display: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(244, 180, 0, 0.15); border: 1px solid rgba(244, 180, 0, 0.3);
  place-items: center; color: var(--gold-light); font-size: 0.7rem;
  cursor: pointer; margin-left: 0.3rem;
  transition: all 0.2s var(--ease);
}
.music-expand-pill-btn:hover {
  background: rgba(244, 180, 0, 0.35); transform: scale(1.15);
}

/* Minimized Mode */
.bg-music-player.is-minimized {
  padding: 0.35rem 0.55rem 0.35rem 0.38rem;
  gap: 0.45rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border-color: rgba(244, 180, 0, 0.45);
}
.bg-music-player.is-minimized .music-controls-extra {
  display: none !important;
}
.bg-music-player.is-minimized .music-expand-pill-btn {
  display: grid !important;
}
.bg-music-player.is-minimized .music-info {
  max-width: 100px;
}

@media (max-width: 768px) {
  .music-seek-slider { width: 70px; }
  .music-volume-group { display: none; }
}

@media (max-width: 480px) {
  .bg-music-player {
    left: 0.8rem; bottom: 0.8rem;
    padding: 0.35rem 0.55rem 0.35rem 0.38rem;
    max-width: calc(100vw - 1.6rem);
  }
  .music-controls-extra { gap: 0.2rem; padding-left: 0.35rem; }
  .music-step-btn.music-prev-btn,
  .music-step-btn.music-next-btn { display: none; }
  .music-seek-slider { width: 55px; }
  .music-track-name { max-width: 85px; }
  .music-time-label { font-size: 0.65rem; min-width: 22px; }
}

/* ── 27. BACK TO TOP ───────────────────────────────────────── */
.back-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: var(--z-fixed);
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--grad-gold); color: var(--charcoal);
  box-shadow: var(--shadow-gold);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all var(--dur) var(--ease);
}
.back-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-4px); }

/* ── 29. MAGAZINE FEATURE ROW ─────────────────────────────── */
.feature-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .feature-row { grid-template-columns: 1fr; gap: 2rem; } }
.feature-visual { position: relative; }
.feature-visual img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.feature-visual .dev { position: absolute; bottom: 1.2rem; left: 1.5rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.feature-copy h2 { margin-bottom: 0.6rem; }
.feature-copy p { color: var(--text-muted); margin-top: 1rem; line-height: 1.85; }

/* ── 30. LIGHTBOX ─────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-popover);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: rgba(10,8,6,0.92);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-frame { max-width: min(92vw, 1100px); max-height: 86vh; margin: 0 auto; text-align: center; }
.lightbox-frame img { max-width: 100%; max-height: 74vh; margin-inline: auto; border-radius: var(--r-md); box-shadow: var(--shadow-lg); }
.lightbox-frame figcaption { margin-top: 1.1rem; color: var(--text-on-dark); font-family: var(--font-display); font-size: 1.2rem; }
.lightbox-close {
  position: absolute; top: 1.6rem; right: 1.6rem; z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lightbox-close:hover { background: var(--crimson); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: grid; place-items: center; font-size: 1.1rem;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lightbox-nav:hover { background: var(--marigold); color: var(--charcoal); }
.lightbox-prev { left: 1.6rem; }
.lightbox-next { right: 1.6rem; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
@media (max-width: 480px) {
  .lightbox-prev { left: 0.8rem; } .lightbox-next { right: 0.8rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}

/* ── 31. ACCESSIBILITY / FOCUS STATES ───────────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(244, 180, 0, 0.45);
  outline-offset: 3px;
}

/* ── 32. MODAL (Tickets ) ───────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: var(--z-modal);
  display: grid; place-items: center; padding: 1.5rem;
  background: rgba(10,8,6,0.72);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden; transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }
.modal-card {
  width: min(100%, 560px); background: var(--bg-light);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2.6rem; position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.98); transition: transform var(--dur) var(--ease);
}
.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(161,18,38,0.08); color: var(--crimson);
  display: grid; place-items: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.modal-close:hover { background: var(--crimson); color: #fff; transform: rotate(90deg); }
body.modal-open { overflow: hidden; }

.pass-result {
  border: 1px dashed var(--copper); border-radius: var(--r-md);
  padding: 1.5rem; margin-top: 1.5rem; text-align: center;
  background: linear-gradient(135deg, rgba(244,180,0,0.06), rgba(161,18,38,0.06));
}
.pass-result .ticket-code {
  font-size: 1.3rem; font-weight: 800; font-family: var(--font-display);
  color: var(--crimson); letter-spacing: 0.05em;
}
.pass-result svg { margin-inline: auto; margin-bottom: 0.8rem; color: var(--charcoal); }

/* Booking / premium reusable */
.booking-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.5rem; box-shadow: var(--shadow-sm);
}
.contact-list { display: grid; gap: 1.2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item .icon {
  width: 48px; height: 48px; flex: 0 0 auto; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(217,138,0,0.14), rgba(161,18,38,0.1));
  color: var(--crimson);
}
.contact-item b { display: block; font-family: var(--font-sans); }
.contact-item span, .contact-item a { color: var(--text-muted); font-size: 0.93rem; }
.contact-item a:hover { color: var(--copper); }

.map-shell { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 420px; }
.map-shell iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9); }

/* Honeypot anti-spam field — invisible to humans, bait for bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ── 33. LIVE EVENT BANNER ─────────────────────────────────── */
.live-banner { position: relative; z-index: 40; background: linear-gradient(90deg, #7a0d1c, #A11226); color: #fff; font-size: .85rem; }
.live-banner-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: .65rem 0; }
.live-pill { display: inline-flex; align-items: center; gap: .45rem; background: #fff; color: #A11226; font-weight: 800; font-size: .7rem; letter-spacing: .08em; padding: .22rem .6rem; border-radius: 999px; text-transform: uppercase; }
.live-pill i { font-size: .5rem; color: #e11d2e; }
.live-info { display: flex; gap: 1rem; align-items: baseline; flex-wrap: wrap; min-width: 0; }
.live-info b { font-weight: 700; }
.live-now { color: #ffe9b0; }
.live-link { margin-left: auto; color: #fff; text-decoration: none; font-weight: 700; display: inline-flex; gap: .4rem; align-items: center; white-space: nowrap; }
.live-link:hover { color: #ffd966; }

/* ── 34. NEWSLETTER (footer) ───────────────────────────────── */
.news-flash { background: rgba(217,138,0,0.12); border: 1px solid rgba(217,138,0,0.35); color: var(--saffron); border-radius: 12px; padding: .7rem 1rem; margin-top: 1.6rem; font-size: .88rem; }
.footer-news p { margin: 0 0 .8rem; font-size: .85rem; color: var(--text-muted); }
.news-form { display: flex; gap: .5rem; }
.news-form input[type="email"] { flex: 1; min-width: 0; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18); color: #fff; border-radius: 10px; padding: .65rem .85rem; font-size: .88rem; }
.news-form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.news-form button { background: var(--saffron); color: #1B1B1B; border: 0; border-radius: 10px; width: 42px; cursor: pointer; font-size: .95rem; transition: transform .15s ease; }
.news-form button:hover { transform: translateX(3px); }
.news-note { font-size: .75rem !important; color: rgba(255,255,255,0.4) !important; margin-top: .55rem !important; }

/* ── 35. FOOTER SPONSORS STRIP ─────────────────────────────── */
.footer-sponsors { 
  margin-bottom: 1.5rem; 
  padding-bottom: 1.5rem; 
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-sponsors-label { 
  font-size: .7rem; 
  text-transform: uppercase; 
  letter-spacing: .1em; 
  color: rgba(255,255,255,0.4); 
  font-weight: 700; 
  margin-bottom: 1rem;
  display: block;
}
.footer-sponsors .sponsor-marquee {
  padding: 0.5rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
@media (max-width: 640px) {
  .footer-sponsors .sponsor-marquee-group { gap: 1rem; padding-right: 1rem; }
  .footer-sponsors .sponsor-card { width: 240px; }
  .footer-sponsors .sponsor-card-logo { width: 46px; height: 46px; }
}
.footer-sponsors .sponsor-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.footer-sponsors .sponsor-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(244, 180, 0, 0.3);
}
.footer-sponsors .sponsor-card-banner {
  background: linear-gradient(120deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
}
.footer-sponsors .sponsor-card-body {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-sponsors .sponsor-card-meta h3 {
  color: rgba(255,255,255,0.9);
}
.footer-sponsors .sponsor-card-tier {
  color: rgba(244, 180, 0, 0.8);
}
.footer-sponsors .sponsor-card-logo {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.footer-sponsors .sponsor-card-logo--star {
  color: rgba(244, 180, 0, 0.8);
}
.footer-sponsors .sponsor-card-banner-star {
  color: rgba(244, 180, 0, 0.8);
}
.footer-sponsors .sponsor-card-banner-star i {
  filter: drop-shadow(0 4px 14px rgba(217, 138, 0, 0.35));
}

/* ── 36. PUBLIC BOOKING / PASS PAGES ───────────────────────── */
.price-box { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.2rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: .3rem 0; color: var(--text-muted); }
.price-row.total { border-top: 1px solid var(--line); margin-top: .35rem; padding-top: .75rem; font-size: 1.05rem; color: var(--ink); }
.price-row.total b { font-size: 1.5rem; color: var(--crimson); font-family: var(--font-display); }
.pass-card { background: linear-gradient(135deg, #1B1B1B, #2c2120); color: #fff; border-radius: 22px; padding: 1.4rem; border: 1px solid rgba(232,200,120,0.35); box-shadow: 0 24px 60px rgba(0,0,0,0.35); max-width: 640px; margin: 0 auto; }
.pass-top { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: #e8c878; }
.pass-live { background: #e8c878; color: #1B1B1B; font-weight: 800; border-radius: 6px; padding: .15rem .5rem; }
.pass-body { display: flex; gap: 1.4rem; align-items: center; padding: 1.3rem 0 1.1rem; flex-wrap: wrap; }
.pass-detail { flex: 1; min-width: 220px; }
.pass-detail .eyebrow { font-size: .72rem; }
.pass-detail h3 { margin: .3rem 0 .6rem; font-size: 1.5rem; }
.pass-detail p { margin: .2rem 0; color: rgba(255,255,255,0.75); font-size: .9rem; display: flex; gap: .55rem; align-items: center; }
.pass-detail p i { color: #e8c878; width: 1rem; text-align: center; }
.pass-code { display: flex; justify-content: space-between; align-items: center; background: rgba(255,255,255,0.06); border: 1px dashed rgba(255,255,255,0.25); border-radius: 12px; padding: .75rem 1rem; }
.pass-code span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.5); }
.pass-code b { font-family: ui-monospace, "Cascadia Code", Consolas, monospace; font-size: 1.05rem; letter-spacing: .05em; color: #fff; }
.pass-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; font-size: .9rem; color: rgba(255,255,255,0.75); }
.pass-foot b { font-size: 1.3rem; color: #e8c878; }
.pass-promo { font-size: .78rem; color: #9fd3a7; }
/* ── 37. EVENTS — EVENTS PAGE ─────────────────────────────── */
.events-hero {
  position: relative;
  min-height: 76svh;
  display: flex; align-items: center;
  color: var(--text-on-dark);
  overflow: hidden;
  background: var(--bg-dark);
  padding: 8rem 0 5.5rem;
}
.events-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}
.events-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 18% 12%, rgba(244,180,0,0.18) 0%, transparent 48%),
    radial-gradient(110% 100% at 82% 72%, rgba(17,94,124,0.38) 0%, transparent 55%),
    linear-gradient(90deg, rgba(12,11,10,0.9) 0%, rgba(12,11,10,0.7) 44%, rgba(12,11,10,0.82) 100%);
}
.events-hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 420px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  width: min(1200px, calc(100% - 2 * var(--gutter)));
}
.events-hero-copy {
  max-width: 760px;
  padding-top: 1.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.events-hero .hero-title {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 12ch;
  letter-spacing: -0.05em;
  margin: 0;
}
.events-hero .hero-sub {
  max-width: 42ch;
  margin: 1.5rem 0 2rem;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}
.events-hero .hero-meta {
  margin-top: 1.4rem;
  max-width: 500px;
}
.events-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 130px; z-index: 2;
  background: linear-gradient(transparent, var(--bg-dark-2));
  pointer-events: none;
}

.events-hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  min-height: 420px;
  padding-right: 0.5rem;
}
.events-hero-date-stack {
  display: flex; flex-direction: column; align-items: flex-end;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-display);
  line-height: 0.82;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: right;
}
.events-hero-date-stack span:first-child {
  font-size: clamp(2.4rem, 4vw, 5.2rem);
  color: rgba(255,255,255,0.9);
}
.events-hero-date-stack span:last-child {
  font-size: clamp(2rem, 3.2vw, 4.1rem);
  color: rgba(255,255,255,0.72);
  margin-top: 0.5rem;
}
.events-hero-nextcard {
  width: min(100%, 360px);
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}
.events-hero-nextcard__eyebrow {
  display: block; color: var(--gold-light); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}
.events-hero-nextcard h2 {
  margin: 0.8rem 0 0.5rem; color: var(--ivory); font-size: clamp(1.6rem, 2vw, 2.5rem); line-height: 1.08;
}
.events-hero-nextcard p {
  margin: 0 0 1rem; color: rgba(255,255,255,0.8); font-size: 0.95rem;
}

@media (max-width: 900px) {
  .events-hero { min-height: auto; padding-top: 7.5rem; }
  .events-hero-content {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .events-hero-copy { max-width: 100%; }
  .events-hero-aside {
    align-items: flex-start; min-height: auto; padding-right: 0; margin-top: 1rem;
  }
  .events-hero-date-stack {
    align-items: flex-start; text-align: left;
  }
  .events-hero-nextcard {
    width: min(100%, 520px);
  }
}

@media (max-width: 560px) {
  .events-hero {
    padding-bottom: 3.5rem;
  }
  .events-hero .hero-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }
  .events-hero .hero-sub {
    margin-bottom: 1.5rem;
  }
  .events-hero-nextcard {
    width: 100%;
  }
}

/* Event ticker */
.event-ticker {
  background: var(--bg-dark-2);
  border-top: 1px solid rgba(244,180,0,0.22);
  border-bottom: 1px solid rgba(244,180,0,0.22);
  overflow: hidden;
}
.event-ticker-track {
  display: flex; width: max-content;
  animation: eventTick 38s linear infinite;
}
.event-ticker-group {
  display: flex; align-items: center; gap: 3.5rem;
  padding-right: 3.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.event-ticker-group span { display: inline-flex; align-items: center; }
.event-ticker-group span::before {
  content: '\f6a9'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.62rem; color: var(--marigold); margin-right: 1rem;
}
@keyframes eventTick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .event-ticker-track { animation: none; }
  .event-ticker { overflow-x: auto; }
}

/* Enhanced event cards */
.event-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.event-card:hover::before { transform: scaleX(1); }
.event-card:hover { border-color: rgba(244,180,0,0.45); }

.event-tag { display: inline-flex; align-items: center; gap: 0.4rem; }

.event-date-chip {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 2;
  display: grid; place-items: center; text-align: center;
  min-width: 52px; padding: 0.45rem 0.5rem;
  background: rgba(18,15,12,0.55); border: 1px solid var(--line-dark);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.event-date-chip b { display: block; font-family: var(--font-display); font-size: 1.25rem; line-height: 1; color: var(--marigold); }
.event-date-chip span { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted-dark); }

.event-status {
  position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2;
  padding: 0.4rem 0.9rem; border-radius: var(--r-pill);
  background: rgba(18,15,12,0.55); border: 1px solid var(--line-dark);
  color: var(--text-muted-dark); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}

.event-card--past .event-media img { filter: grayscale(0.7) brightness(0.85); }
.event-card--past .event-tag,
.event-card--past .event-date-chip { opacity: 0.75; }
.event-card--past .event-body { opacity: 0.88; }

.event-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 0.6rem;
}
.event-cta .btn { align-self: auto; }
.event-price { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.event-price b { font-family: var(--font-display); font-size: 1.35rem; color: var(--crimson); }

/* Event Gallery Preview */
.event-gallery {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-subtle);
}
.event-gallery-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.event-gallery-grid img {
  width: 100%;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}
.gallery-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  height: 60px;
}

/* Empty state */
.events-empty {
  text-align: center; padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  border: 1px dashed var(--line); border-radius: var(--r-xl); background: #fff;
}
.events-empty i { font-size: 2.4rem; color: var(--copper); margin-bottom: 1rem; }
.events-empty h3 { margin-bottom: 0.6rem; }
.events-empty p { color: var(--text-muted); max-width: 44ch; margin: 0 auto 1.6rem; }

@media print {
  .site-header, .site-footer, .live-banner, .back-top, .bg-music-player, .btn { display: none !important; }
}

/* ============================================================
  Gold Standard page styles
   ============================================================ */

.eyebrow--light { color: var(--gold-light); }
.btn-line--light { border-color: rgba(243, 237, 227, 0.35); color: var(--text-on-dark); }
.btn-line--light:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* Gold banner */
body.page-inset .page-banner--gold {
  background:
    radial-gradient(70% 120% at 85% 0%, rgba(244, 180, 0, 0.18), transparent 55%),
    radial-gradient(80% 120% at 0% 100%, rgba(161, 18, 38, 0.35), transparent 60%),
    linear-gradient(135deg, #120f0c 0%, #26211c 100%);
  border-bottom: 1px solid rgba(244, 180, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(244, 180, 0, 0.08);
}
.page-banner--gold .eyebrow { color: var(--gold-light); }
.page-banner--gold h1 { color: var(--text-on-dark); max-width: 12ch; }
.page-banner--gold h1 em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.page-banner--gold p.lead { color: var(--text-muted-dark); max-width: 58ch; }

.banner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: end;
}
@media (max-width: 900px) {
  .banner-grid { grid-template-columns: 1fr; align-items: start; }
}
.banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }

/* Gold stats */
.gold-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(244, 180, 0, 0.22);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  overflow: hidden;
}
.gold-stats > div {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid rgba(244, 180, 0, 0.14);
  border-right: 1px solid rgba(244, 180, 0, 0.14);
}
.gold-stats > div:nth-child(even) { border-right: 0; }
.gold-stats > div:nth-last-child(-n + 2) { border-bottom: 0; }
.gold-stats dt {
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700; line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 0.35rem;
}
.gold-stats dd {
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted-dark);
}

/* Gold feature */
.gold-feature {
  background:
    radial-gradient(70% 90% at 0% 10%, rgba(244, 180, 0, 0.14), transparent 55%),
    radial-gradient(60% 80% at 100% 90%, rgba(161, 18, 38, 0.28), transparent 60%),
    var(--bg-dark-2);
}
.gold-feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .gold-feature-row { grid-template-columns: 1fr; }
}
.gold-feature-visual { position: relative; }
.gold-feature-frame {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.gold-feature-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(160deg, rgba(244, 180, 0, 0.85), rgba(244, 180, 0, 0) 35%, rgba(244, 180, 0, 0) 65%, rgba(244, 180, 0, 0.5));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.gold-feature-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.gold-feature-index {
  position: absolute; top: -1.4rem; left: -1.2rem; z-index: 3;
  font-family: var(--font-display); font-size: 7rem; font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 180, 0, 0.5);
  pointer-events: none;
}
.gold-feature-deva {
  position: absolute; bottom: 1.4rem; left: 1.6rem; z-index: 3;
  font-family: var(--font-deva); font-size: 2rem; color: var(--ivory);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}
.gold-feature-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--text-on-dark);
  margin-bottom: 0.9rem; line-height: 1.05;
}
.gold-genre-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.1rem; border-radius: var(--r-pill);
  background: var(--grad-gold); color: var(--charcoal);
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-gold);
}
.gold-feature-story {
  color: var(--text-muted-dark);
  font-size: 1.06rem; line-height: 1.9;
  max-width: 52ch;
}
.gold-feature-quote {
  font-family: var(--font-deva);
  font-size: 1.5rem; line-height: 1.6; color: var(--gold-light);
  border-left: 2px solid var(--marigold);
  padding-left: 1.2rem; margin: 1.4rem 0 0;
}
.gold-feature-links { display: flex; gap: 0.7rem; margin-top: 1.7rem; }
.gold-feature-links a {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(244, 180, 0, 0.35);
  color: var(--gold-light); font-size: 1rem;
  transition: all var(--dur) var(--ease);
}
.gold-feature-links a:hover {
  background: var(--marigold); color: var(--charcoal);
  border-color: var(--marigold);
  transform: translateY(-3px); box-shadow: var(--shadow-gold);
}
.gold-feature-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Gold CTA */
.cta-panel--gold {
  background:
    radial-gradient(90% 130% at 0% 0%, rgba(244, 180, 0, 0.3), transparent 55%),
    radial-gradient(70% 120% at 100% 100%, rgba(161, 18, 38, 0.45), transparent 60%),
    linear-gradient(135deg, #26211c 0%, #120f0c 100%);
  border: 1px solid rgba(244, 180, 0, 0.22);
}
.cta-panel--gold::before { opacity: 0.18; }
.cta-copy { flex: 1; min-width: min(100%, 40ch); }
.cta-contacts { display: flex; flex-wrap: wrap; gap: 0.7rem 1.8rem; margin-top: 1.6rem; }
.cta-contacts a {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--gold-light); font-size: 0.9rem; font-weight: 600;
  transition: color var(--dur) var(--ease);
}
.cta-contacts a i { color: var(--marigold); }
.cta-contacts a:hover { color: var(--ivory); }

/* ============================================================
   ABOUT PAGE — Gold Standard
   ============================================================ */

/* Hero emblem (rotating mandala) */
.about-hero-grid { align-items: center; }
.about-emblem {
  position: relative;
  width: min(340px, 62vw);
  aspect-ratio: 1;
  justify-self: end;
  display: grid; place-items: center;
}
.about-emblem::before,
.about-emblem::after {
  content: ''; position: absolute; border-radius: 50%;
}
.about-emblem::before {
  inset: 0;
  border: 1px solid rgba(244, 180, 0, 0.32);
  background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="none"%3E%3Cg stroke="%23F4B400" stroke-width="0.5" opacity="0.55"%3E%3Ccircle cx="100" cy="100" r="30"/%3E%3Ccircle cx="100" cy="100" r="60"/%3E%3Ccircle cx="100" cy="100" r="90"/%3E%3Cpath d="M100 5v45M100 150v45M5 100h45M150 100h45M30 30l22 22M148 148l22 22M170 30l-22 22M52 148l-22 22"/%3E%3C/g%3E%3C/svg%3E');
  background-size: 100%;
  animation: about-spin 46s linear infinite;
}
.about-emblem::after {
  inset: 16%;
  border: 1px dashed rgba(244, 180, 0, 0.4);
}
.about-emblem-word {
  position: relative; z-index: 1;
  font-family: var(--font-deva);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--marigold);
  text-shadow: 0 0 32px rgba(244, 180, 0, 0.35);
}
@keyframes about-spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 900px) {
  .about-emblem { justify-self: center; margin-top: 0.5rem; }
}

/* Origin split */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
}

/* ── EVENT DETAIL PAGE ────────────────────────────────────── */
.event-detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}
.event-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}
.event-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-on-dark);
}
.event-hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.event-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}
.event-hero-meta i {
  color: var(--gold-light);
}

.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  margin-top: 3rem;
}
@media (max-width: 1024px) {
  .event-detail-grid {
    grid-template-columns: 1fr;
  }
}

.event-detail-main > div {
  margin-bottom: 3rem;
}
.event-detail-main h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.event-detail-main h2 i {
  color: var(--crimson);
  margin-right: 0.5rem;
}

/* GALLERY STYLES */
.event-gallery-section {
  animation: fadeIn 0.6s ease;
}
.gallery-hint {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  gap: 0.5rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: white;
  font-size: 2rem;
}
.gallery-overlay span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--surface-alt);
  border-radius: var(--r-md);
  color: var(--muted);
  font-size: 0.85rem;
}
.gallery-info i {
  color: var(--crimson);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.lightbox-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.lightbox-image-wrapper {
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-wrapper img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.lightbox-image-wrapper img.zoomed {
  transform: scale(1.5);
  cursor: zoom-out;
}

.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
}

/* Navigation buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  padding: 1.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 20;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

/* Controls bar */
.lightbox-controls {
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.lightbox-counter {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  min-width: 80px;
}

.lightbox-counter span:last-child {
  color: rgba(255,255,255,0.5);
}

.lightbox-actions {
  display: flex;
  gap: 0.5rem;
}

.lightbox-action {
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-action:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.05);
}

.lightbox-action.active {
  background: var(--crimson);
}

/* Thumbnails */
.lightbox-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  max-width: 400px;
  padding: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.lightbox-thumbnails::-webkit-scrollbar {
  height: 4px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.lightbox-thumb {
  background: transparent;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.lightbox-thumb:hover {
  opacity: 1;
  transform: scale(1.05);
}

.lightbox-thumb.active {
  border-color: var(--crimson);
  opacity: 1;
}

.lightbox-thumb img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .lightbox-content {
    padding: 1rem;
  }
  
  .lightbox-nav {
    padding: 0.8rem;
  }
  
  .lightbox-prev {
    left: 0.5rem;
  }
  
  .lightbox-next {
    right: 0.5rem;
  }
  
  .lightbox-close {
    top: 1rem;
    right: 1rem;
    padding: 0.8rem;
  }
  
  .lightbox-controls {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .lightbox-thumbnails {
    max-width: 100%;
    order: -1;
  }
  
  .lightbox-thumb img {
    width: 50px;
    height: 35px;
  }
}

/* VIDEO SECTION */
.event-video-section {
  animation: fadeIn 0.6s ease;
}
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--r-md);
  overflow: hidden;
}
.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  border: none;
}

/* DESCRIPTION SECTION */
.event-description-section {
  animation: fadeIn 0.6s ease;
}
.event-description-section p {
  line-height: 1.8;
  color: var(--ink);
}

/* SIDEBAR */
.event-detail-sidebar {
  position: sticky;
  top: 2rem;
  height: fit-content;
}
.event-detail-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.event-detail-card h3 {
  margin: 0 0 1.5rem 0;
  color: var(--ink);
}
.event-info-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.event-info-list > div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}
.event-info-list i {
  color: var(--crimson);
  width: 1.2rem;
  text-align: center;
}
.event-price-display {
  text-align: center;
  padding: 1.5rem;
  background: var(--ok-bg);
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
}
.event-price-display span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.event-price-display strong {
  font-size: 2rem;
  color: var(--ok);
}
.event-past-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--warn-bg);
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  color: var(--warn);
  font-weight: 600;
}

/* TICKET TIERS */
.ticket-tier-list {
  display: grid;
  gap: 0.75rem;
}
.ticket-tier-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--surface-alt);
  border-radius: var(--r-md);
}
.ticket-tier-item div {
  flex: 1;
}
.ticket-tier-item strong {
  display: block;
  color: var(--ink);
}
.ticket-tier-item span {
  font-size: 0.85rem;
  color: var(--muted);
}
.ticket-tier-item > strong {
  color: var(--crimson);
  font-size: 1.2rem;
}

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

.about-copy h2 { margin-bottom: 1.2rem; }
.about-copy p { color: var(--text-muted); margin-top: 1rem; line-height: 1.85; max-width: 54ch; }
.about-signature {
  display: inline-block; margin-top: 1.6rem;
  font-family: var(--font-deva); font-size: 2rem; color: var(--copper);
  border-bottom: 2px solid var(--marigold); padding-bottom: 0.3rem;
}
.about-visual { position: relative; }
.about-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 4.6;
  box-shadow: var(--shadow-lg);
}
.about-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(160deg, rgba(244, 180, 0, 0.85), rgba(244, 180, 0, 0) 35%, rgba(244, 180, 0, 0) 65%, rgba(244, 180, 0, 0.5));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.about-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 15, 12, 0.55), transparent 45%);
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-frame-caption {
  position: absolute; left: 1.4rem; bottom: 1.3rem; z-index: 3;
  color: var(--ivory); font-family: var(--font-display); font-size: 1.05rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}

/* Manifesto band */
.about-manifesto { text-align: center; overflow: hidden; }
.about-manifesto::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(244, 180, 0, 0.12), transparent 60%),
    radial-gradient(50% 70% at 50% 100%, rgba(161, 18, 38, 0.22), transparent 60%);
}
.about-manifesto-inner { position: relative; }
.about-manifesto-mark {
  display: block;
  font-family: var(--font-deva);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 180, 0, 0.28);
  margin-bottom: 1.2rem;
}
.about-manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.15; color: var(--text-on-dark);
  margin-bottom: 1.4rem;
}
.about-manifesto blockquote em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.about-manifesto figcaption {
  color: var(--text-muted-dark);
  letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.78rem; font-weight: 600;
}

/* Gold value cards (dark) */
.about-value {
  position: relative; padding: 2.4rem; border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.about-value:hover {
  border-color: rgba(244, 180, 0, 0.45);
  background: rgba(244, 180, 0, 0.05);
  transform: translateY(-6px);
}
.about-value-num {
  position: absolute; top: 1rem; right: 1.3rem;
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 800; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 180, 0, 0.3);
}
.about-value .dev { display: block; color: var(--gold-light); font-size: 1.35rem; margin-bottom: 1rem; }
.about-value h3 { margin-bottom: 0.8rem; color: var(--text-on-dark); }
.about-value p { color: var(--text-muted-dark); font-size: 0.95rem; }

/* Process steps (light) */
.about-step {
  position: relative; padding: 2.2rem 2.2rem 2.4rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.about-step::before {
  content: ''; position: absolute; top: 0; left: 2.2rem; right: 2.2rem; height: 3px;
  background: var(--grad-gold); border-radius: 0 0 3px 3px;
}
.about-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 180, 0, 0.45);
}
.about-step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad-gold); color: var(--charcoal);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  box-shadow: var(--shadow-gold);
  margin-bottom: 1.2rem;
}
.about-step h3 { margin-bottom: 0.7rem; }
.about-step p { color: var(--text-muted); font-size: 0.95rem; }

/* Gold stat tiles */
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.about-stat {
  padding: 1.8rem 1.4rem; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.about-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 180, 0, 0.45);
}
.about-stat b {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.about-stat span { display: block; margin-top: 0.35rem; font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE — Gold Standard
   ============================================================ */

/* Gold booking cards */
.booking-card--gold {
  position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.booking-card--gold::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
}
.booking-card--gold:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(244, 180, 0, 0.45);
}
.contact-list { gap: 1.3rem; }
.contact-item .icon {
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.16), rgba(217, 138, 0, 0.08));
  color: var(--saffron);
  border: 1px solid rgba(244, 180, 0, 0.3);
  transition: all var(--dur) var(--ease);
}
.contact-item:hover .icon {
  background: var(--grad-gold); color: var(--charcoal);
  transform: translateY(-3px); box-shadow: var(--shadow-gold);
}
.contact-item b { color: var(--charcoal); margin-bottom: 0.15rem; }
.contact-item a, .contact-item span { color: var(--text-muted); font-size: 0.93rem; line-height: 1.5; }
.contact-item a:hover { color: var(--saffron); }
.contact-card-foot {
  margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.contact-card-foot .footer-social { margin-top: 0; margin-left: auto; }
@media (max-width: 480px) {
  .contact-card-foot .footer-social { margin-left: 0; }
}

/* Gold map */
.map-shell--gold {
  position: relative;
  border: 1px solid rgba(244, 180, 0, 0.35);
  box-shadow: var(--shadow-md);
}
.map-shell--gold iframe { filter: saturate(0.95); }
.map-address {
  position: absolute; left: 1.4rem; bottom: 1.4rem; z-index: 2;
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.9rem 1.2rem;
  background: rgba(18, 15, 12, 0.88);
  -webkit-backdrop-filter: blur(12px) saturate(1.3); backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(244, 180, 0, 0.35);
  border-radius: var(--r-md);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-md);
}
.map-address > i { color: var(--marigold); font-size: 1.1rem; }
.map-address b { display: block; font-size: 0.88rem; color: var(--ivory); }
.map-address span { display: block; font-size: 0.8rem; color: var(--text-muted-dark); }

/* Gold FAQ */
.faq { transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.faq[open] { border-color: rgba(244, 180, 0, 0.45); box-shadow: var(--shadow-sm); }
.faq summary {
  padding-left: 2rem;
  position: relative;
}
.faq summary::before {
  content: ''; position: absolute; left: 0.85rem; top: 1.55rem; bottom: 1.55rem;
  width: 2px; border-radius: 2px;
  background: var(--grad-gold);
  opacity: 0.5;
}
.faq[open] summary::before { opacity: 1; }
.faq summary .icon {
  color: var(--saffron);
  width: 30px; height: 30px; flex: 0 0 auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.12);
  font-size: 0.9rem;
}
.faq[open] summary .icon { background: var(--grad-gold); color: var(--charcoal); transform: rotate(45deg); }

/* ============================================================
   EARLY BIRD & WAITING LIST — Gold Standard
   ============================================================ */

/* Event card badges */
.event-tag--early { background: var(--grad-gold); color: var(--charcoal); }
.event-tag--waiting { background: rgba(244, 180, 0, 0.12); color: var(--marigold); border: 1px solid rgba(244, 180, 0, 0.45); }
.event-tag--soldout { background: rgba(18, 15, 12, 0.68); color: var(--text-muted-dark); border: 1px solid var(--line-dark); }

.event-price--early b { color: var(--marigold); }
.event-early {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--marigold);
}
.event-early i { color: var(--saffron); }

/* Booking-page Early Bird panel */
.early-bird-panel {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem;
  margin-bottom: 1.6rem; padding: 1.15rem 1.35rem;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.12), rgba(217, 138, 0, 0.05));
  border: 1px solid rgba(244, 180, 0, 0.4); border-radius: var(--r-lg);
}
.early-bird-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
}
.early-bird-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 0.95rem; border-radius: var(--r-pill);
  background: var(--grad-gold); color: var(--charcoal);
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}
.early-bird-panel .early-note { flex: 1 1 220px; min-width: 0; font-size: 0.9rem; color: var(--text-muted); }
.early-bird-panel .countdown {
  position: static; display: flex; gap: 0.6rem; margin-left: auto;
}
.early-bird-panel .countdown div {
  min-width: 54px; text-align: center; padding: 0.5rem 0.4rem;
  background: rgba(18, 15, 12, 0.55); border: 1px solid rgba(244, 180, 0, 0.3);
  border-radius: 10px;
}
.early-bird-panel .countdown b { font-family: var(--font-display); font-size: 1.2rem; color: var(--marigold); }
.early-bird-panel .countdown span { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted-dark); }
@media (max-width: 640px) {
  .early-bird-panel .countdown { margin-left: 0; }
}

/* Waiting list panel (booking page) */
.waiting-panel {
  position: relative; overflow: hidden;
  margin-top: 2.6rem; padding: clamp(1.6rem, 4vw, 2.4rem);
  background: #120f0c; color: var(--text-on-dark);
  border: 1px solid rgba(244, 180, 0, 0.35); border-radius: var(--r-xl);
}
.waiting-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-gold);
}
.waiting-panel h3 { color: var(--ivory); margin-bottom: 0.5rem; }
.waiting-panel > p { color: var(--text-muted-dark); max-width: 56ch; }
.waiting-panel .form-alert {
  background: rgba(244, 180, 0, 0.1); border: 1px solid rgba(244, 180, 0, 0.35); color: var(--marigold);
}
.waiting-form { margin-top: 1.6rem; }
.waiting-panel .form-group label { color: var(--ivory); }
.waiting-panel .form-group input,
.waiting-panel .form-group select,
.waiting-panel .form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ivory);
}
.waiting-panel .form-group input::placeholder,
.waiting-panel .form-group textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.waiting-panel .form-group input:focus,
.waiting-panel .form-group select:focus,
.waiting-panel .form-group textarea:focus { border-color: var(--marigold); outline: none; }

/* ── Dedicated Event Waiting List Section ──────────────────────── */
.waiting-section {
  background: radial-gradient(circle at 50% 0%, #201815 0%, #0d0b0a 100%);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(244, 180, 0, 0.2);
  border-bottom: 1px solid rgba(244, 180, 0, 0.2);
}

.waiting-card {
  position: relative;
  background: rgba(18, 14, 12, 0.85);
  border: 1px solid rgba(244, 180, 0, 0.3);
  border-radius: var(--r-xl, 20px);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  overflow: hidden;
}

.waiting-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #A11226, #F4B400, #d98a00, #A11226);
  background-size: 200% 100%;
  animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.waiting-card-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.waiting-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 180, 0, 0.15);
  border: 1px solid rgba(244, 180, 0, 0.4);
  color: var(--marigold, #F4B400);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 8px #25D366;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.waiting-card-header h2 {
  color: var(--ivory, #FAF6EE);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 0.6rem;
}

.waiting-sub {
  color: var(--text-muted-dark, #b5a99a);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.waiting-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.waiting-perk-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.waiting-perk-item:hover {
  background: rgba(244, 180, 0, 0.06);
  border-color: rgba(244, 180, 0, 0.25);
  transform: translateY(-2px);
}

.perk-icon {
  width: 38px; height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(244,180,0,0.2), rgba(161,18,38,0.2));
  border: 1px solid rgba(244, 180, 0, 0.3);
  color: var(--marigold, #F4B400);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

.perk-text {
  display: flex; flex-direction: column;
}

.perk-text strong {
  color: var(--ivory, #FAF6EE);
  font-size: 0.88rem;
  font-weight: 700;
}

.perk-text span {
  color: var(--muted, #8a7f6d);
  font-size: 0.75rem;
}

/* Tabs */
.waiting-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.35);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.8rem;
}

.waiting-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted, #9e9182);
  padding: 10px 16px;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}

.waiting-tab-btn:hover {
  color: var(--ivory, #FAF6EE);
}

.waiting-tab-btn.active {
  background: var(--marigold, #F4B400);
  color: #1B1B1B;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(244, 180, 0, 0.3);
}

/* Form Styles inside Card */
.waiting-card .form-group label {
  color: var(--ivory, #FAF6EE);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.waiting-card .form-group input,
.waiting-card .form-group select,
.waiting-card .form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--ivory, #FAF6EE);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.waiting-card .form-group input:focus,
.waiting-card .form-group select:focus,
.waiting-card .form-group textarea:focus {
  border-color: var(--marigold, #F4B400);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.waiting-privacy-note {
  font-size: 0.8rem;
  color: var(--muted, #8a7f6d);
  text-align: center;
  margin: 0.8rem 0 0;
}

/* Success State */
.waiting-success-state {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(244, 180, 0, 0.04);
  border: 1px solid rgba(244, 180, 0, 0.35);
  border-radius: 16px;
  animation: fadeInScale 0.35s ease-out;
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

.success-icon-wrap {
  width: 60px; height: 60px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25D366;
  color: #25D366;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
}

.queue-badge-highlight {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(244, 180, 0, 0.2), rgba(161, 18, 38, 0.2));
  border: 1px solid var(--marigold);
  border-radius: 12px;
  padding: 8px 24px;
  margin-bottom: 1rem;
}

.queue-badge-highlight span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.queue-badge-highlight strong {
  font-size: 1.6rem;
  color: var(--marigold);
  font-weight: 800;
}

.waiting-success-state h3 {
  color: var(--ivory);
  font-size: 1.4rem;
  margin: 0.4rem 0;
}

.waiting-success-state p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HOME PAGE — Gold Standard
   ============================================================ */

/* Hero next-event bar */
.hero-next {
  position: relative;
  display: grid; grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 0; padding: clamp(1.4rem, 3vw, 2.1rem);
  background: rgba(18, 15, 12, 0.62);
  border: 1px solid rgba(244, 180, 0, 0.4);
  border-radius: 2px;
  -webkit-backdrop-filter: blur(16px) saturate(1.25); backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
  width: 100%;
  max-width: 420px;
  justify-self: end;
}
.hero-next::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold); border-radius: 2px 2px 0 0;
}
.hero-next-mark {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grad-gold); color: var(--charcoal);
  font-size: 1.1rem; box-shadow: var(--shadow-gold);
}
.hero-next-topline { display: flex; justify-content: space-between; color: var(--gold-light); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.hero-next-info { min-width: 0; }
.hero-next-eyebrow {
  display: block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 0.3rem;
}
.hero-next-info b { display: block; max-width: 16ch; font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 0.98; color: var(--ivory); }
.hero-next-meta { display: block; margin-top: 0.35rem; font-size: 0.82rem; color: var(--text-muted-dark); }
.hero-next-meta i { color: var(--marigold); }
.hero-next-count .countdown {
  position: static;
  display: flex; gap: 0.55rem;
}
.hero-next-count .countdown div {
  min-width: 52px; text-align: center; padding: 0.5rem 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 180, 0, 0.28);
  border-radius: 10px;
}
.hero-next-count .countdown b { color: var(--marigold); font-family: var(--font-display); font-size: 1.25rem; }
.hero-next-count .countdown span { font-size: 0.56rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted-dark); }
.hero-next-cta { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 0.75rem; }
.hero-next-price { font-size: 0.78rem; color: var(--text-muted-dark); }
.hero-next-price b { font-family: var(--font-display); font-size: 1.5rem; color: var(--marigold); line-height: 1; }
@media (max-width: 760px) {
  .hero-next-cta { align-items: flex-start; width: 100%; flex-direction: column; }
}

/* ============================================================
   MOBILE FIXES — small-screen polish (all pages)
   ============================================================ */

/* Nav drawer: allow internal scroll on short / landscape screens */
.nav { overflow-y: auto; }

/* Contact items: long emails / phones / addresses must wrap, never overflow */
.contact-item > div { min-width: 0; }
.contact-item a, .contact-item span { overflow-wrap: anywhere; }

@media (max-width: 640px) {
  /* Mobile hero: keep the first screen focused on the headline and action. */
  .hero { min-height: auto; }
  .hero-bg-slide,
  .hero-bg-slide.active { transform: scale(1); background-position: 50% center; object-position: 50% center; }
  .hero-content { display: block; padding: 6.2rem 0 3.2rem; }
  .hero-copy { max-width: none; }
  .hero-badge { max-width: 100%; margin-bottom: 1.2rem; padding: 0.45rem 0.8rem; font-size: 0.72rem; }
  .hero-kicker { margin-bottom: 1rem; font-size: 0.58rem; letter-spacing: 0.14em; white-space: nowrap; }
  .hero-kicker::before { width: 1.7rem; margin-right: 0.5rem; }
  #hero .hero-title { max-width: 9ch; font-size: clamp(2.85rem, 14vw, 4.35rem); line-height: 0.9; }
  .hero-sub { margin: 1.35rem 0 1.7rem; font-size: 0.96rem; line-height: 1.55; }
  .hero-actions { gap: 0.7rem; }
  .hero-actions .btn { width: 100%; min-height: 3.35rem; }
  .hero-next { margin-top: 2.4rem; padding: 1.2rem; gap: 0.85rem; max-width: none; justify-self: stretch; }
  .hero-next-topline { font-size: 0.59rem; }
  .hero-next-mark { width: 40px; height: 40px; font-size: 0.9rem; }
  .hero-next-info b { font-size: 1.8rem; }
  .hero-next-meta { font-size: 0.75rem; line-height: 1.45; }
  .hero-next-count .countdown { gap: 0.35rem; width: 100%; }
  .hero-next-count .countdown div { flex: 1 1 0; min-width: 0; padding: 0.45rem 0.15rem; }
  .hero-next-count .countdown b { font-size: 1.05rem; }
  .hero-next-cta .btn { width: 100%; justify-content: center; }
  .scroll-cue { display: none; }

  /* Keep the featured event row compact and three-up on phones. */
  .card-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.45rem; align-items: stretch; }
  .card-grid.cols-3 .event-tag { display: none; }
  .card-grid.cols-3 .event-card--upcoming .event-date-chip { display: none; }
  .card-grid.cols-3 .event-media { aspect-ratio: 0.9; }
  .card-grid.cols-3 .event-body { min-height: 0; padding: 0.7rem 0.55rem 0.65rem; gap: 0.4rem; }
  .card-grid.cols-3 .event-body .eyebrow { font-size: 0.48rem; letter-spacing: 0.08em; }
  .card-grid.cols-3 .event-body h3 { font-size: 0.78rem; line-height: 1.08; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .card-grid.cols-3 .event-body p { display: none; }
  .card-grid.cols-3 .event-meta { display: block; margin-top: auto; font-size: 0.56rem; line-height: 1.3; }
  .card-grid.cols-3 .event-meta span { display: flex; gap: 0.2rem; margin-top: 0.2rem; }
  .card-grid.cols-3 .event-meta span:nth-child(2) { display: none; }
  .card-grid.cols-3 .event-meta span i { font-size: 0.5rem; }
  .card-grid.cols-3 .event-cta { display: block; padding-top: 0.25rem; }
  .card-grid.cols-3 .event-price { display: block; font-size: 0.55rem; line-height: 1.1; }
  .card-grid.cols-3 .event-price b { font-size: 0.7rem; }
  .card-grid.cols-3 .event-cta .btn { display: grid; place-items: center; width: 100%; min-width: 0; min-height: 1.9rem; padding: 0.35rem; font-size: 0; line-height: 1; }
  .card-grid.cols-3 .event-cta .btn i { display: inline-block; font-size: 0.7rem; }
  .card-grid.cols-3 .countdown { left: 0.25rem; right: 0.25rem; bottom: 0.25rem; gap: 0.12rem; }
  .card-grid.cols-3 .countdown div { min-width: 0; flex: 1; padding: 0.25rem 0.1rem; border-radius: 5px; }
  .card-grid.cols-3 .countdown b { font-size: 0.65rem; }
  .card-grid.cols-3 .countdown span { font-size: 0.35rem; letter-spacing: 0.04em; }

  /* Legibility: bump the smallest labels on phones */
  .eyebrow { font-size: 0.76rem; }
  .event-tag { font-size: 0.78rem; }
  .event-meta { font-size: 0.88rem; }
  .event-price { font-size: 0.88rem; }
  .brand-tag { font-size: 0.72rem; }
  .countdown span { font-size: 0.66rem; }
  .early-bird-panel .countdown span { font-size: 0.64rem; }
  .hero-next-eyebrow { font-size: 0.72rem; }
  .hero-next-meta { font-size: 0.84rem; }
  .hero-next-count .countdown span { font-size: 0.66rem; }
}

@media (max-width: 480px) {
  /* Hero CTA buttons: stack full-width so they never crowd */
  .hero-actions .btn { width: 100%; }
  /* Drawer: keep close / links clear of the iOS home indicator */
  .nav { padding-bottom: calc(1.6rem + env(safe-area-inset-bottom)); }
}

@media (max-width: 360px) {
  /* Countdown cells: flex instead of forcing min-width so nothing overflows */
  .hero-next-count .countdown { width: 100%; }
  .hero-next-count .countdown div { flex: 1 1 auto; min-width: 0; }
  .early-bird-panel .countdown { flex-wrap: wrap; width: 100%; }
  .early-bird-panel .countdown div { flex: 1 1 calc(25% - 0.45rem); min-width: 0; }
}

/* ============================================================
   MOBILE BOTTOM NAV + FULL-SCREEN MENU
   Sticky top header is removed on phones; navigation moves to
   a fixed bottom bar with a full-screen menu overlay (matches
   the Wedding Pokhara mobile pattern).
   ============================================================ */
.mob-nav, .mob-menu { display: none; }

@media (max-width: 768px) {
  /* No sticky top header on mobile — replaced by the bottom nav */
  .site-header { display: none; }

  /* Bottom nav bar */
  .mob-nav {
    display: flex; align-items: stretch; justify-content: space-around; gap: 0.2rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-fixed);
    padding: 0.3rem 0.35rem calc(0.3rem + env(safe-area-inset-bottom));
    background: rgba(18, 15, 12, 0.96);
    border-top: 1px solid rgba(244, 180, 0, 0.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3);
  }
  .mob-nav-item {
    flex: 1 1 0; min-width: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.22rem;
    padding: 0.4rem 0.1rem;
    color: var(--text-muted-dark); font-size: 0.58rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    border-radius: 12px;
  }
  .mob-nav-item i { font-size: 1.05rem; color: currentColor; }
  .mob-nav-item.is-active { color: var(--marigold); }
  .mob-nav-item:active { background: rgba(244, 180, 0, 0.08); }

  .mob-nav-toggle {
    flex: 0 0 auto; align-self: flex-start;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.12rem;
    width: 56px; height: 56px; margin: -1.6rem 0.3rem 0;
    border-radius: 50%;
    background: var(--grad-gold); color: var(--charcoal);
    border: 3px solid #161310;
    box-shadow: var(--shadow-gold);
  }
  .mob-nav-toggle img { width: 24px; height: 24px; object-fit: contain; border-radius: 5px; }
  .mob-nav-toggle span { font-size: 0.48rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

  /* Full-screen menu overlay */
  .mob-menu {
    position: fixed; inset: 0; z-index: var(--z-popover);
    display: grid; place-items: center; text-align: center;
    padding: 2.5rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom));
    background: linear-gradient(165deg, rgba(18, 15, 12, 0.98) 0%, rgba(38, 33, 28, 0.99) 100%);
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: scale(1.05);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  }
  .mob-menu.is-open { opacity: 1; visibility: visible; transform: scale(1); }
  .mob-menu-bg {
    position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none;
  }
  .mob-menu-bg img {
    width: min(70vw, 300px); opacity: 0.14; filter: grayscale(1); mix-blend-mode: screen;
  }
  .mob-menu-close {
    position: absolute; top: calc(0.9rem + env(safe-area-inset-top)); right: 0.9rem;
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(244, 180, 0, 0.3);
    color: var(--ivory); font-size: 1.1rem;
  }
  .mob-menu-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
  .mob-menu-logo { width: 74px; height: 74px; object-fit: contain; margin-bottom: 1.6rem; border-radius: 18px; }
  .mob-menu-links { display: flex; flex-direction: column; gap: 0.85rem; }
  .mob-menu-link {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2rem, 7.5vw, 2.5rem); line-height: 1.1;
    color: var(--text-on-dark); text-transform: uppercase; letter-spacing: 0.02em;
  }
  .mob-menu-link:hover { color: var(--gold-light); }
  .mob-menu-link.is-active {
    background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
  }
  .mob-menu-cta { margin-top: 1.7rem; }
  .mob-menu-tagline { margin-top: 1.15rem; font-family: var(--font-deva); font-size: 1rem; color: var(--gold-light); letter-spacing: 0.06em; }

  /* Hero: no fixed header above, so restore breathing room at the top */
  .hero-content { padding: 3rem 0 5rem; }

  /* Keep the music controller at the top on phones, clear of notches and nav. */
  .scroll-cue { bottom: calc(6.2rem + env(safe-area-inset-bottom)); }
  .bg-music-player {
    top: calc(0.75rem + env(safe-area-inset-top));
    right: 1rem;
    bottom: auto;
    left: auto;
    padding: 0.38rem 0.7rem 0.38rem 0.45rem;
    transform: scale(0.92);
    transform-origin: top right;
  }
  .back-top { bottom: calc(5.4rem + env(safe-area-inset-bottom)); right: 1rem; }

  /* Footer clearance so the bar never covers content */
  .site-footer { padding-bottom: calc(5rem + env(safe-area-inset-bottom)); }
}

/* ============================================================
   MODAL STYLES
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(18, 15, 12, 0.92);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  backdrop-filter: blur(12px) saturate(1.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.modal-overlay[style*="flex"] {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(15, 23, 42, 0.99) 100%);
  border: 1px solid rgba(244, 180, 0, 0.3);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(244, 180, 0, 0.1);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s var(--ease);
}

.modal-overlay[style*="flex"] .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 180, 0, 0.3);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  z-index: 10;
}

.modal-close:hover {
  background: rgba(244, 180, 0, 0.2);
  border-color: var(--marigold);
  transform: rotate(90deg);
}

.modal-content {
  padding: 2rem;
}

.waiting-modal .modal-content {
  padding: 0;
}

.waiting-modal .waiting-card {
  margin: 0;
  border-radius: var(--r-lg);
}

@media (max-width: 768px) {
  .modal-overlay {
    padding: 1rem;
  }

  .modal-container {
    max-height: 95vh;
  }

  .modal-content {
    padding: 1.5rem;
  }
}

/* ── EVENTS LISTING REDESIGN ─────────────────────────────── */
.events-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(27, 27, 27, 0.1);
}
.events-section-heading .eyebrow { margin-bottom: 0.65rem; }
.events-section-heading h2 {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.events-section-heading p {
  max-width: 52ch;
  margin-top: 0.65rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.events-section-count {
  flex: 0 0 auto;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(161, 18, 38, 0.18);
  border-radius: var(--r-pill);
  color: var(--crimson);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-card {
  border-color: rgba(27, 27, 27, 0.12);
  box-shadow: 0 12px 32px rgba(27, 27, 27, 0.08);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(27, 27, 27, 0.14);
}
.event-card--next {
  grid-column: span 2;
  border-color: rgba(161, 18, 38, 0.32);
  box-shadow: 0 18px 44px rgba(161, 18, 38, 0.13);
}
.event-card--next .event-media { aspect-ratio: 16 / 7; }
.event-card--next .event-body { padding: 2rem; }
.event-card--next .event-body h3 { font-size: clamp(1.7rem, 2.8vw, 2.35rem); }
.event-card--next::after {
  content: 'Next live event';
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  padding: 0.42rem 0.7rem;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 5px 14px rgba(217, 138, 0, 0.25);
}
.event-card--past {
  background: #fcfbf8;
  box-shadow: 0 8px 22px rgba(27, 27, 27, 0.05);
}
.event-card--past .event-body { opacity: 1; }
.event-card--past .event-media img { filter: grayscale(0.45) brightness(0.9); }
.event-body { min-height: 286px; }
.event-cta { margin-top: auto; padding-top: 1.1rem; }
.event-cta .btn { min-width: 148px; }

@media (max-width: 1024px) {
  .event-card--next { grid-column: span 1; }
}
@media (max-width: 640px) {
  .events-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  .events-section-count { align-self: flex-start; }
  .event-card--next .event-body { padding: 1.5rem; }
  .event-body { min-height: 0; }
}

/* Event calendar mobile layout: one readable card per row. */
@media (max-width: 768px) {
  #eventGrid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  #eventGrid .event-card {
    min-width: 0;
    border-radius: 1.1rem;
  }

  #eventGrid .event-media {
    aspect-ratio: 16 / 9;
  }

  #eventGrid .event-body {
    min-height: 0;
    padding: 1rem 1.1rem 1.1rem;
    gap: .65rem;
  }

  #eventGrid .event-body .eyebrow {
    font-size: .68rem;
    letter-spacing: .1em;
  }

  #eventGrid .event-body h3 {
    font-size: 1.45rem;
    line-height: 1.05;
  }

  #eventGrid .event-body p {
    display: block;
    font-size: .82rem;
    line-height: 1.5;
  }

  #eventGrid .event-meta {
    display: grid;
    gap: .35rem;
    font-size: .76rem;
    line-height: 1.35;
  }

  #eventGrid .event-meta span {
    display: block;
  }

  #eventGrid .event-cta {
    align-items: center;
    margin-top: .2rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(27, 27, 27, .1);
  }

  #eventGrid .event-cta .btn {
    min-height: 2.8rem;
    padding: .65rem 1rem;
    font-size: .78rem;
  }

  #eventGrid .event-price {
    font-size: .72rem;
  }

  #eventGrid .event-price b {
    font-size: 1.15rem;
  }
}

/* Single-event ticket flow on phones. Desktop booking layout is unchanged. */
@media (max-width: 768px) {
  body.page-inset:has(#booking) { background: var(--ivory); padding-bottom: 4.6rem; }
  body.page-inset:has(#booking) .page-banner {
    padding: 2rem 0 1.6rem;
    background: linear-gradient(145deg, #241313 0%, #551323 58%, #8d4c27 120%);
    border: 0;
    color: var(--text-on-dark);
  }
  body.page-inset:has(#booking) .page-banner .wrap { gap: .65rem; }
  body.page-inset:has(#booking) .page-banner .eyebrow { margin-bottom: .2rem; color: #f4c76a; font-size: .62rem; }
  body.page-inset:has(#booking) .page-banner h1 { max-width: 12ch; color: #fff8ed; font-size: clamp(2.35rem, 11vw, 3.4rem); line-height: .95; }
  body.page-inset:has(#booking) .page-banner p.lead { max-width: 34rem; color: rgba(255, 248, 237, .78); font-size: .8rem; line-height: 1.45; }
  body.page-inset:has(#booking) #booking { padding: 1.25rem 0 2rem; background: #f4efe7; }
  body.page-inset:has(#booking) #booking > .wrap { width: 100%; padding: 0 1rem; }
  body.page-inset:has(#booking) .booking-card { padding: 1rem; border: 1px solid rgba(169, 107, 60, .2); border-radius: 1.1rem; box-shadow: 0 16px 34px rgba(27, 27, 27, .1); }
  body.page-inset:has(#booking) .booking-card > .eyebrow { max-width: 100%; margin-bottom: .45rem; overflow: hidden; font-size: .62rem; text-overflow: ellipsis; white-space: nowrap; }
  body.page-inset:has(#booking) .booking-card > h2 { margin-bottom: 1rem !important; font-size: 1.8rem; }
  body.page-inset:has(#booking) .early-bird-panel { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: center; margin-bottom: 1rem; padding: .85rem; border-radius: .8rem; }
  body.page-inset:has(#booking) .early-bird-panel .early-note { font-size: .7rem; line-height: 1.35; }
  body.page-inset:has(#booking) .early-bird-panel .countdown { grid-column: 1 / -1; gap: .35rem; width: 100%; margin: 0; }
  body.page-inset:has(#booking) .early-bird-panel .countdown div { flex: 1 1 0; min-width: 0; padding: .42rem .2rem; }
  body.page-inset:has(#booking) #bookingForm { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .85rem; }
  body.page-inset:has(#booking) #bookingForm .form-group { min-width: 0; }
  body.page-inset:has(#booking) #bookingForm .form-group label { margin-bottom: .38rem; font-size: .72rem; }
  body.page-inset:has(#booking) #bookingForm .form-group input,
  body.page-inset:has(#booking) #bookingForm .form-group select { width: 100%; min-height: 3rem; padding: .7rem .75rem; border-radius: .65rem; font-size: .82rem; }
  body.page-inset:has(#booking) #bookingForm .form-alert { padding: .75rem; font-size: .72rem; line-height: 1.4; }
  body.page-inset:has(#booking) #bookingForm .form-group > div[style*="display:flex"] { gap: .45rem !important; }
  body.page-inset:has(#booking) #bookingForm .form-group > div[style*="display:flex"] .btn { min-width: 4.5rem; padding-inline: .65rem; font-size: .72rem; }
  body.page-inset:has(#booking) #bookingForm .price-box { padding: .85rem; border-radius: .8rem; background: #fffdfa; }
  body.page-inset:has(#booking) #bookingForm .price-row { font-size: .78rem; }
  body.page-inset:has(#booking) #bookingForm .price-row.total { margin-top: .45rem; padding-top: .65rem; font-size: .9rem; }
  body.page-inset:has(#booking) #bookingForm .price-row.total b { font-size: 1.55rem; }
  body.page-inset:has(#booking) #bookingForm > .btn { min-height: 3.35rem; border-radius: .75rem; font-size: .82rem; }
  body.page-inset:has(#booking) #bookingForm > p { grid-column: 1 / -1; font-size: .68rem !important; line-height: 1.4; }
  body.page-inset:has(#booking) .waiting-panel { margin-top: 1rem; padding: 1rem; border-radius: 1rem; }
  body.page-inset:has(#booking) .waiting-panel h3 { font-size: 1.5rem; line-height: 1.05; }
  body.page-inset:has(#booking) .waiting-panel > p { font-size: .76rem; line-height: 1.5; }
  body.page-inset:has(#booking) .waiting-panel .waiting-form { grid-template-columns: 1fr; gap: .8rem; }
  body.page-inset:has(#booking) .waiting-panel .waiting-form .form-group { grid-column: 1; }
  body.page-inset:has(#booking) .waiting-panel .waiting-form input,
  body.page-inset:has(#booking) .waiting-panel .waiting-form select,
  body.page-inset:has(#booking) .waiting-panel .waiting-form textarea { min-height: 3rem; border-radius: .65rem; font-size: .82rem; }
  body.page-inset:has(#booking) .waiting-panel .waiting-form .btn { width: 100%; min-height: 3.2rem; border-radius: .75rem; font-size: .8rem; }
}

/* One-event ticket picker on phones. */
@media (max-width: 768px) {
  body.tickets-picker-page { background: #f4efe7; padding-bottom: 4.6rem; }
  body.tickets-picker-page .page-banner {
    padding: 2.1rem 0 1.8rem;
    background: linear-gradient(145deg, #241313 0%, #551323 58%, #8d4c27 120%);
    border: 0;
  }
  body.tickets-picker-page .page-banner .wrap { gap: .65rem; }
  body.tickets-picker-page .page-banner .eyebrow { margin-bottom: .2rem; color: #f4c76a; font-size: .62rem; }
  body.tickets-picker-page .page-banner h1 { max-width: 11ch; color: #fff8ed; font-size: clamp(2.45rem, 12vw, 3.55rem); line-height: .92; }
  body.tickets-picker-page .page-banner p.lead { color: rgba(255, 248, 237, .78); font-size: .85rem; }
  body.tickets-picker-page #events { padding: 1.25rem 0 2rem; background: #f4efe7; }
  body.tickets-picker-page #events > .wrap { width: 100%; padding: 0 1rem; }
  body.tickets-picker-page #events .card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  body.tickets-picker-page #events .event-card {
    min-width: 0;
    border-radius: 1.2rem;
    border: 1px solid rgba(169, 107, 60, .24);
    box-shadow: 0 16px 36px rgba(27, 27, 27, .11);
  }
  body.tickets-picker-page #events .event-media { aspect-ratio: 16 / 9; }
  body.tickets-picker-page #events .event-body { min-height: 0; padding: 1.15rem; gap: .65rem; }
  body.tickets-picker-page #events .event-body .eyebrow { margin-bottom: .15rem; font-size: .68rem; }
  body.tickets-picker-page #events .event-body h3 { font-size: 1.65rem; line-height: 1; }
  body.tickets-picker-page #events .event-meta { display: grid; gap: .38rem; margin-top: .25rem; font-size: .78rem; line-height: 1.35; }
  body.tickets-picker-page #events .event-meta span { display: block; }
  body.tickets-picker-page #events .event-body > p { margin: .1rem 0 !important; font-size: .82rem; }
  body.tickets-picker-page #events .event-body > .btn { width: 100%; min-height: 3.2rem; margin-top: .35rem; border-radius: .8rem; font-size: .84rem; }
}

/* Waiting-list modal as a phone-friendly bottom sheet. */
@media (max-width: 768px) {
  #globalWaitingListModal {
    align-items: flex-end;
    padding: .75rem;
  }

  #globalWaitingListModal .modal-container {
    width: 100%;
    max-width: none;
    max-height: calc(100dvh - 1.5rem);
    margin: 0;
    border-radius: 1.25rem;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  #globalWaitingListModal .modal-close {
    top: .7rem;
    right: .7rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: .9rem;
  }

  #globalWaitingListModal .waiting-card {
    padding: 1rem;
    border-radius: 1.25rem;
  }

  #globalWaitingListModal .waiting-card-header {
    margin: 0 2.8rem .65rem 0;
    text-align: left;
  }

  #globalWaitingListModal .waiting-badge-pill {
    margin-bottom: .6rem;
    padding: .35rem .6rem;
    font-size: .58rem;
  }

  #globalWaitingListModal .waiting-card-header h2 {
    font-size: 1.6rem;
    line-height: 1;
  }

  #globalWaitingListModal .waiting-sub,
  #globalWaitingListModal .waiting-modal-event {
    font-size: .76rem;
    line-height: 1.4;
  }

  #globalWaitingListModal .waiting-modal-event {
    color: var(--marigold);
    font-weight: 700;
  }

  #globalWaitingListModal .waiting-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
    margin-top: 0;
  }

  #globalWaitingListModal .waiting-form .form-group,
  #globalWaitingListModal .waiting-form .form-alert {
    min-width: 0;
  }

  #globalWaitingListModal .waiting-form .form-group { grid-column: auto; }

  #globalWaitingListModal .waiting-form .form-group label {
    margin-bottom: .35rem;
    font-size: .7rem;
  }

  #globalWaitingListModal .waiting-form input,
  #globalWaitingListModal .waiting-form select,
  #globalWaitingListModal .waiting-form textarea {
    width: 100%;
    min-height: 3rem;
    padding: .7rem .75rem;
    border-radius: .65rem;
    font-size: .82rem;
  }

  #globalWaitingListModal .waiting-form textarea { min-height: 3.6rem; }

  #globalWaitingListModal .waiting-form select {
    color-scheme: dark;
    background-color: #211d1e;
    color: #fff8ed;
  }

  #globalWaitingListModal .waiting-form select option {
    background: #211d1e;
    color: #fff8ed;
  }

  #globalWaitingListModal .waiting-form input::placeholder,
  #globalWaitingListModal .waiting-form textarea::placeholder {
    color: rgba(255, 248, 237, .58);
    opacity: 1;
  }

  #globalWaitingListModal .waiting-form input:focus,
  #globalWaitingListModal .waiting-form select:focus,
  #globalWaitingListModal .waiting-form textarea:focus {
    border-color: var(--marigold);
    background-color: #292526;
    outline: 2px solid rgba(244, 180, 0, .18);
    outline-offset: 0;
  }

  #globalWaitingListModal .waiting-form .btn {
    width: 100%;
    min-height: 3.25rem;
    margin-top: .15rem;
    border-radius: .75rem;
    font-size: .8rem;
  }

  #globalWaitingListModal .waiting-success-state h3 {
    font-size: 1.55rem;
  }
}

/* Desktop waiting-list modal shares the mobile visual language, with more room. */
@media (min-width: 769px) {
  #globalWaitingListModal .modal-container { max-width: 640px; max-height: 88vh; background: #120e0c; border-color: rgba(244, 180, 0, .35); border-radius: 1.35rem; }
  #globalWaitingListModal .waiting-card { padding: 2rem 2.2rem; border-radius: 1.35rem; }
  #globalWaitingListModal .waiting-card-header { margin: 0 3rem 1.25rem 0; text-align: left; }
  #globalWaitingListModal .waiting-card-header h2 { font-size: 2.25rem; line-height: 1; }
  #globalWaitingListModal .waiting-sub, #globalWaitingListModal .waiting-modal-event { font-size: .9rem; line-height: 1.45; }
  #globalWaitingListModal .waiting-modal-event { color: var(--marigold); font-weight: 700; }
  #globalWaitingListModal .waiting-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; margin-top: 0; }
  #globalWaitingListModal .waiting-form .form-group { min-width: 0; }
  #globalWaitingListModal .waiting-form .form-group label { margin-bottom: .4rem; font-size: .78rem; }
  #globalWaitingListModal .waiting-form input, #globalWaitingListModal .waiting-form select, #globalWaitingListModal .waiting-form textarea { width: 100%; min-height: 3.1rem; padding: .75rem .85rem; border-radius: .7rem; font-size: .88rem; }
  #globalWaitingListModal .waiting-form textarea { min-height: 5rem; }
  #globalWaitingListModal .waiting-form select { color-scheme: dark; background-color: #211d1e; color: #fff8ed; }
  #globalWaitingListModal .waiting-form select option { background: #211d1e; color: #fff8ed; }
  #globalWaitingListModal .waiting-form .btn { width: 100%; min-height: 3.35rem; margin-top: .15rem; border-radius: .8rem; font-size: .86rem; }
  #globalWaitingListModal .waiting-form > .btn { grid-column: 1 / -1; }
}

