/* ============================================================
   WAND Presents — visual system
   ============================================================ */
:root {
  /* Palette — defaults; overridable via Tweaks */
  --navy-900: #08112C;
  --navy-800: #0B1635;
  --navy-700: #101E45;
  --navy-600: #18295A;
  --navy-500: #1F3370;
  --cream-100: #F5EEDC;
  --cream-200: #EFE6D0;
  --cream-300: #E6DAB8;
  /* matched to the WAND logo's yellow (#F8AB2F) — brighter, warmer gold */
  --gold-400: #FBBF57;
  --gold-500: #F8AB2F;
  --gold-600: #E0921F;
  --ink-900: #15203F;
  --ink-700: #2C3559;
  --ink-500: #5B6388;
  --warm-100: #EAE3D4;
  --warm-200: #C8C2B0;
  --warm-300: #9C9684;

  /* Semantic */
  --bg: var(--navy-800);
  --bg-alt: var(--navy-700);
  --bg-cream: var(--cream-100);
  --card: #FBF7EF; /* warm off-white — unified card surface (brighter than cream, warmer than white) */
  --fg: var(--cream-100);
  --fg-muted: #B9C0D6;
  --fg-ink: var(--ink-900);
  --fg-ink-muted: var(--ink-700);
  --accent: var(--gold-500);
  --accent-bright: var(--gold-400);

  /* Type */
  --f-display: 'Figtree', system-ui, sans-serif;
  --f-script: 'Pinyon Script', 'Allura', cursive;
  --f-logo: 'Cinzel', 'Playfair Display', serif;
  --f-sans: 'Figtree', system-ui, sans-serif;

  /* Spacing */
  --container: 1500px;
  --container-narrow: 1120px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius-card: 10px;
  --radius-btn: 4px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 17.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Reusable atoms ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.eyebrow {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow-ink {
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.h-display {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}
.h-script {
  font-family: var(--f-script);
  color: var(--accent);
  font-weight: 400;
  line-height: 0.9;
  margin: 0;
}

/* ---------- Button ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--navy-900);
  box-shadow: 0 6px 22px -8px rgba(248,171,47,0.55);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(245,238,220,0.25);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-outline-gold {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--navy-900);
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.btn-link:hover { color: var(--accent-bright); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--f-logo);
  color: var(--fg);
  letter-spacing: 0.04em;
  user-select: none;
}
.logo-mark {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-family: var(--f-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--warm-200);
  margin-top: 4px;
  text-align: center;
}
.logo-img {
  display: block;
  width: auto;
  user-select: none;
}
.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 20px;
}
.nav-link {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

/* ---------- Hero ---------- */
.hero-size-note {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  transform: none;
  z-index: 5;
  width: auto;
  max-width: none;
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.7);
  border: none;
  border-radius: 5px;
  padding: 4px 9px;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: right;
  box-shadow: none;
}
.hero {
  position: relative;
  min-height: 560px;
  /* exact match to the image's pure-black background (#000000) — no seam */
  background: #000000;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  /* subtle near-black bottom vignette to ground the image */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.85) 100%);
}
.hero-performers {
  position: absolute;
  top: 0; bottom: 0;
  /* right edge lines up with the content column (not the browser edge),
     so it sits beside the text with matching near-black space to its right */
  right: max(24px, calc((100% - var(--container)) / 2));
  height: 100%;
  width: auto;
  aspect-ratio: 1 / 1;         /* square slot — matches a square image exactly */
  object-fit: cover;           /* square-in-square = full fill, no crop, no shrink */
  object-position: center;
  z-index: 0;
  pointer-events: none;
}
.hero-veil-r {
  /* melt the image's dark edges into the near-black hero */
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0) 78%, rgba(0,0,0,0.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 130px;
}
.hero-eyebrow { margin-bottom: 18px; }
.hero-title {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.0;
  color: var(--fg);
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.005em;
  margin: 0;
}
.hero-title .script {
  display: block;
  font-family: var(--f-script);
  color: var(--accent);
  font-size: clamp(52px, 11vw, 130px);
  line-height: 0.95;
  margin: 4px 0 6px;
  font-weight: 400;
  overflow-wrap: normal;
}
.hero-sub {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--fg);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 6px 0 0;
}
.hero-copy {
  margin-top: 28px;
  max-width: 560px;
  font-size: clamp(20px, 1.55vw, 23px);
  color: var(--fg);
  line-height: 1.55;
}
.hero-copy .place { color: var(--accent); font-weight: 600; }
.hero-cta { margin-top: 36px; }

/* ---------- Hero motion: A) load reveal  B) slow zoom  C) gold sparkles ---------- */
/* B — collage fades in once, then drifts in a very slow, endless zoom. */
.hero-performers {
  opacity: 0;
  transform-origin: 70% 45%;
  animation:
    heroImgIn 1.4s cubic-bezier(.2,.7,.2,1) .1s forwards,
    heroZoom 7s ease-out 1.2s forwards;
  will-change: opacity, transform;
}
@keyframes heroImgIn { from { opacity: 0; } to { opacity: 1; } }
/* One-time zoom-in that settles and holds (no breathing loop). */
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.12) translateX(-1%); } }

/* A — headline, sub, copy and button rise + fade in, staggered. */
.hero-title .hero-line,
.hero-title .script,
.hero-sub,
.hero-copy,
.hero-cta {
  opacity: 0;
  animation: heroRise .9s cubic-bezier(.2,.7,.2,1) both;
}
.hero-title .hero-line { display: block; animation-delay: .15s; }
.hero-title .script     { animation-delay: .34s; }
.hero-sub               { animation-delay: .50s; }
.hero-copy              { animation-delay: .64s; }
.hero-cta               { animation-delay: .78s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* C — gold sparkles twinkle and float over the collage. */
.hero-sparkles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.spark {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fff2d0 0%, #ffc63c 26%, #d1911f 56%, rgba(209,145,31,0) 78%);
  box-shadow: 0 0 10px 2px rgba(235,175,55,.9), 0 0 26px 7px rgba(205,140,35,.42);
  opacity: 0;
  animation-name: sparkTwinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  will-change: opacity, transform;
}
@keyframes sparkTwinkle {
  0%, 100% { opacity: 0; transform: translateY(3px) scale(.35); }
  50%      { opacity: 1; transform: translateY(-11px) scale(1.2); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-performers,
  .hero-title .hero-line, .hero-title .script,
  .hero-sub, .hero-copy, .hero-cta,
  .spark { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Value strip ---------- */
.values {
  background: var(--bg-cream);
  color: var(--fg-ink);
  padding: 68px 0 74px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.value {
  background: #fff;
  border-radius: 20px;
  padding: 38px 26px 34px;
  transition: transform 0.22s ease;
}
.value:hover {
  transform: translateY(-7px);
}
.value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.value-title {
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 11px;
  line-height: 1.3;
}
.value-desc {
  font-size: 16px;
  color: var(--fg-ink-muted);
  line-height: 1.55;
  max-width: 230px;
  margin: 0 auto;
}

/* ---------- Who we are ---------- */
.who {
  background: radial-gradient(400px 400px at 13% 20%, rgba(248,171,47,0.12), transparent 68%), radial-gradient(460px 460px at 85% 9%, rgba(150,110,240,0.16), transparent 66%), radial-gradient(360px 360px at 66% 90%, rgba(220,90,160,0.12), transparent 68%), radial-gradient(320px 320px at 37% 56%, rgba(90,150,240,0.09), transparent 70%), linear-gradient(180deg, #15131e 0%, #110f19 50%, #0e0c14 100%);
  color: var(--bg-cream);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.who .eyebrow-ink { color: rgba(245,238,220,0.8); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.who h2 {
  font-family: var(--f-display);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  margin: 14px 0 22px;
  color: #F6F0E2;
}
.who p {
  font-size: 17px;
  color: rgba(240,234,220,0.78);
  line-height: 1.75;
  max-width: 470px;
}
.who-sig {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--accent);
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.25;
  margin-top: 32px;
}
.polaroids {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.who-feature {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 440px;
  background: var(--navy-700);
  box-shadow: 0 26px 60px -22px rgba(20,30,60,0.4), 0 6px 16px -8px rgba(20,30,60,0.28);
}
.polaroid {
  background: #fff;
  padding: 10px 10px 14px;
  border-radius: 4px;
  box-shadow: 0 18px 40px -14px rgba(20,30,60,0.35), 0 4px 10px -4px rgba(20,30,60,0.25);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.polaroid:nth-child(1) { transform: rotate(-2.5deg) translateY(8px); }
.polaroid:nth-child(2) { transform: rotate(2.5deg); }
.polaroid:nth-child(3) { transform: rotate(2deg); }
.polaroid:nth-child(4) { transform: rotate(-3deg) translateY(-4px); }
.polaroid:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 26px 50px -16px rgba(20,30,60,0.45);
  z-index: 2;
}
.polaroid-img {
  aspect-ratio: 4/3;
  border-radius: 2px;
  overflow: hidden;
  background: var(--navy-700);
}
.sparkle {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--gold-500);
  pointer-events: none;
}

/* ---------- Events ---------- */
.events {
  background: var(--bg);
  padding: 88px 0 96px;
}
.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.events-header h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  margin: 12px 0 6px;
  color: var(--fg);
}
.events-header .sub {
  color: var(--fg-muted);
  font-size: 17px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.event-card {
  background: var(--card);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--fg-ink);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  cursor: pointer;
  container-type: inline-size;
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.55);
}
.event-poster {
  position: relative;
  padding: 14px 14px 0;
  background: var(--card);
}
/* Squircle media frame — iOS-style continuous-corner superellipse, square 1:1 */
.event-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-700);
  border-radius: 23%; /* fallback for no-mask browsers */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M200,0 C77.6,0 36.8,0 16.6,20.2 C0,37 0,77.6 0,200 C0,322.4 0,363.2 20.2,383.4 C37,400 77.6,400 200,400 C322.4,400 363.2,400 383.4,379.8 C400,363 400,322.4 400,200 C400,77.6 400,36.8 379.8,16.6 C363,0 322.4,0 200,0 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M200,0 C77.6,0 36.8,0 16.6,20.2 C0,37 0,77.6 0,200 C0,322.4 0,363.2 20.2,383.4 C37,400 77.6,400 200,400 C322.4,400 363.2,400 383.4,379.8 C400,363 400,322.4 400,200 C400,77.6 400,36.8 379.8,16.6 C363,0 322.4,0 200,0 Z'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.event-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--accent);
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(0,0,0,0.5);
}
.event-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hover cue on the poster so it's obvious the card opens a details page */
.event-hover {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8,17,44,0.5);
  opacity: 0;
  transition: opacity .22s ease;
  pointer-events: none;
}
.event-card:hover .event-hover,
.event-card:focus-visible .event-hover { opacity: 1; }
.event-hover-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--navy-900);
  font-family: var(--f-sans);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 12px 22px;
  border-radius: 8px;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.6);
  transform: translateY(8px);
  transition: transform .22s ease;
}
.event-card:hover .event-hover-label { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .event-hover, .event-hover-label { transition: none; }
  .event-hover-label { transform: none; }
  .show-poster-frame::after { animation: none; }
}

/* ---------- Event detail as its own PAGE ---------- */
.event-page { padding: 0 0 72px; background: var(--bg); min-height: 60vh; }
.event-page-inner { max-width: none; padding: 0; }
.event-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--f-sans);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 2px;
  margin: 22px 0 14px clamp(20px, 4vw, 48px);
}
.event-back:hover { color: var(--accent-bright); }
.event-page .detail-modal--page {
  position: static;
  width: 100%;
  max-width: 100%;
  max-height: none;
  background: var(--cream-100);
  color: var(--fg-ink);
  border-radius: 0;
  box-shadow: none;
}
.event-page .detail-modal--page .detail-scroll { max-height: none; overflow: visible; }
/* Full-bleed hero: large poster + roomy info so it reads as a page, not a modal */
.event-page .detail-modal--page .detail-hero { grid-template-columns: minmax(420px, 640px) 1fr; }
.event-page .detail-modal--page .detail-info { padding: 60px clamp(32px, 5vw, 96px); }
.event-page .detail-modal--page .detail-title { font-size: clamp(38px, 4.4vw, 60px); }
.event-page .detail-modal--page .detail-section { padding: 40px clamp(32px, 5vw, 96px); }
.event-page .detail-modal--page .detail-body { max-width: 900px; font-size: 18px; }

/* ===== Beautiful show page (ShowDetailPage) ===== */
.show-page { background: var(--bg); }
.show-hero { position: relative; overflow: hidden; background: var(--bg); padding: 24px 0 clamp(46px, 6vw, 80px); isolation: isolate; }
.show-hero-bg {
  position: absolute; inset: -80px; z-index: 0;
  background-size: cover; background-position: center;
  filter: blur(40px) saturate(1.55);
  opacity: 0.85;
  transform: scale(1.2);
}
.show-hero-veil {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(95px 95px at 9% 26%, rgba(248,171,47,0.15), transparent 68%),
    radial-gradient(150px 150px at 22% 76%, rgba(196,120,224,0.12), transparent 70%),
    radial-gradient(70px 70px at 39% 13%, rgba(255,255,255,0.09), transparent 70%),
    radial-gradient(130px 130px at 61% 84%, rgba(248,171,47,0.11), transparent 70%),
    radial-gradient(85px 85px at 77% 19%, rgba(150,130,245,0.13), transparent 70%),
    radial-gradient(60px 60px at 93% 57%, rgba(248,171,47,0.14), transparent 70%),
    radial-gradient(115px 115px at 50% 45%, rgba(255,255,255,0.05), transparent 72%),
    radial-gradient(55px 55px at 15% 52%, rgba(255,255,255,0.07), transparent 70%),
    radial-gradient(1300px 620px at 82% -14%, rgba(248,171,47,0.24), transparent 62%),
    linear-gradient(180deg, rgba(8,17,44,0.5) 0%, rgba(8,17,44,0.66) 52%, rgba(8,17,44,0.94) 100%);
}
.show-hero > .container { position: relative; z-index: 1; }
.show-hero .event-back { margin: 6px 0 26px clamp(0px, 1vw, 4px); }
.show-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(0, 520px);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  justify-content: center;
}
.show-poster-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: var(--navy-700);
  box-shadow: 0 44px 90px -34px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.05);
}
.show-poster { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Poster shimmer — a soft band of light sweeps across every show poster.
   Visible but unhurried: ~1.3s sweep, then rests a few seconds. */
.show-poster-frame::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,0.42) 45%, rgba(255,255,255,0.13) 52%, transparent 64%);
  transform: translateX(-140%);
  animation: posterSheen 8s ease-in-out 1s infinite;
}
@keyframes posterSheen { 0% { transform: translateX(-140%); } 16%, 100% { transform: translateX(140%); } }
.show-hero-info { min-width: 0; }
.show-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-sans);
  font-size: 13px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 16px;
}
.show-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 800; line-height: 1.04;
  color: var(--bg-cream);
  margin: 0 0 16px;
  text-wrap: balance;
}
.show-tagline { font-size: clamp(17px, 1.6vw, 20px); color: rgba(245,238,220,0.72); font-style: italic; margin: 0 0 26px; }
.show-meta { display: flex; flex-direction: column; gap: 24px; margin: 8px 0 38px; }
.show-meta-item { display: flex; align-items: center; gap: 20px; color: var(--bg-cream); }
.show-cal {
  display: flex; flex-direction: column; min-width: 92px; border-radius: 15px; overflow: hidden;
  background: #fff; box-shadow: 0 14px 30px -14px rgba(0,0,0,0.6); flex: 0 0 auto;
}
.show-cal-m { background: var(--accent); color: var(--navy-900); font-family: var(--f-sans); font-size: 16px; font-weight: 800; letter-spacing: 0.1em; text-align: center; padding: 6px 0 4px; }
.show-cal-d { color: var(--navy-900); font-family: var(--f-sans); font-size: 44px; font-weight: 800; font-variant-numeric: tabular-nums; text-align: center; padding: 8px 0 10px; line-height: 1; }
.show-meta-when { display: flex; flex-direction: column; gap: 5px; }
.show-meta-dow { font-family: var(--f-display); font-size: 33px; font-weight: 700; line-height: 1.05; }
.show-meta-time { display: inline-flex; align-items: center; gap: 9px; font-size: 22px; font-weight: 600; color: rgba(245,238,220,0.9); }
.show-meta-time svg { color: var(--accent); width: 21px; height: 21px; }
.show-meta-venue { font-size: 22px; font-weight: 600; align-items: flex-start; }
.show-meta-venue svg { color: var(--accent); flex: 0 0 auto; margin-top: 3px; }
.show-meta-venue-lines { display: flex; flex-direction: column; gap: 3px; }
.show-meta-venue-name { font-size: 22px; font-weight: 700; line-height: 1.15; }
.show-meta-venue-addr { font-size: 16px; font-weight: 500; color: rgba(245,238,220,0.68); line-height: 1.3; }
.show-tickets {
  display: inline-flex; align-items: center; gap: 11px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: var(--navy-900);
  font-family: var(--f-sans); font-size: 17px; font-weight: 800; letter-spacing: 0.03em;
  padding: 16px 32px; border-radius: 11px;
  box-shadow: 0 18px 40px -14px rgba(248,171,47,0.55);
  transition: transform .15s ease, filter .15s ease;
}
.show-tickets:hover { transform: translateY(-2px); filter: brightness(1.05); }

.show-body { background: radial-gradient(400px 400px at 13% 20%, rgba(248,171,47,0.12), transparent 68%), radial-gradient(460px 460px at 85% 9%, rgba(150,110,240,0.16), transparent 66%), radial-gradient(360px 360px at 66% 90%, rgba(220,90,160,0.12), transparent 68%), radial-gradient(320px 320px at 37% 56%, rgba(90,150,240,0.09), transparent 70%), linear-gradient(180deg, #15131e 0%, #110f19 50%, #0e0c14 100%); color: var(--bg-cream); padding: clamp(48px, 6vw, 76px) 0 clamp(56px, 7vw, 88px); }
.show-body-inner { max-width: var(--container); }
.show-section { margin-bottom: clamp(38px, 4vw, 58px); }
.show-section h2 { font-family: var(--f-display); font-size: clamp(28px, 2.8vw, 38px); font-weight: 700; color: #F6F0E2; margin: 0 0 18px; }
.show-section p { font-size: clamp(18px, 1.5vw, 20px); line-height: 1.72; color: rgba(240,234,220,0.78); margin: 0; max-width: 1040px; }
.show-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.show-about--novideo { grid-template-columns: 1fr; max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; }
.show-about--novideo .show-section p, .show-about--novideo p { max-width: none; margin-left: auto; margin-right: auto; }
.show-about-copy h2 { margin-top: 0; }
.show-video, .show-video-ph {
  position: relative; border-radius: 18px; overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 34px 70px -30px rgba(20,30,60,0.55), 0 0 0 1px rgba(20,30,60,0.06);
}
.show-video--landscape { aspect-ratio: 16 / 9; }
.show-video--portrait { aspect-ratio: 9 / 16; max-width: 340px; margin-left: auto; margin-right: auto; width: 100%; }
.show-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Two or more videos: lay out in a centered row that wraps; each keeps its shape. */
.show-videos { display: flex; flex-wrap: wrap; gap: 22px; align-items: flex-start; justify-content: center; }
.show-videos .show-video { flex: 0 1 auto; }
.show-videos .show-video--landscape { flex: 1 1 460px; max-width: 760px; }
.show-videos .show-video--portrait { flex: 0 1 300px; max-width: 320px; }
.show-video-ph { background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.show-video-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,18,40,0.35), rgba(11,18,40,0.62)); }
.show-play {
  position: relative; z-index: 1;
  width: 84px; height: 84px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: var(--navy-900);
  box-shadow: 0 16px 34px -10px rgba(0,0,0,0.6);
  padding-left: 4px;
}
.show-video-cap {
  position: absolute; z-index: 1; bottom: 18px; left: 0; right: 0; text-align: center;
  font-family: var(--f-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,238,220,0.9);
}
.show-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; align-items: stretch; }
.show-review {
  background: var(--card); border-radius: 16px; border-top: 4px solid var(--accent);
  padding: 32px 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.show-review::after {
  content: '\201D';
  position: absolute; top: 2px; right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px; line-height: 1; color: var(--accent); opacity: 0.16; pointer-events: none;
}
.show-review .stars { color: var(--accent); letter-spacing: 3px; font-size: 18px; }
.show-review p { font-size: 17px; line-height: 1.6; color: var(--ink-700); margin: 0; font-style: italic; flex: 1; }
.show-review-author { font-size: 14.5px; font-weight: 800; color: var(--ink-900); margin-top: auto; }
.show-cta { background: var(--bg); padding: clamp(30px, 4vw, 52px) 0; }
.show-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  color: var(--bg-cream);
}
.show-cta-title { font-family: var(--f-display); font-size: clamp(20px, 2.2vw, 27px); font-weight: 700; }
.show-cta-sub { font-size: 15px; color: rgba(245,238,220,0.72); margin-top: 5px; }
@media (max-width: 860px) {
  .show-hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .show-poster-frame { max-width: 460px; }
  .show-about { grid-template-columns: 1fr; gap: 26px; text-align: left; }
  .show-about .show-video, .show-about .show-video-ph { order: -1; }
}
@media (max-width: 820px) {
  .detail-modal--page .detail-hero { grid-template-columns: 1fr; }
  .detail-modal--page .detail-info { padding: 30px 26px; }
  .detail-modal--page .detail-title { font-size: 34px; }
  .detail-modal--page .detail-section { padding: 24px 26px; }
}
.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.skill-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
}
.skill-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
}
/* Body top row: skill chip (left) + availability pill (right) — kept OFF the face */
.event-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  min-height: 20px;
}
.avail-pill {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(20,30,60,0.08);
  color: var(--ink-700);
}
.avail-pill.few-left { background: #E66B4A; color: #fff; }
.avail-pill.selling-fast { background: var(--accent); color: var(--navy-900); }
.event-datetime {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 16px;
}
/* Calendar mini-block: colored month bar over a big day number */
.cal-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 82px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(20,30,60,0.12);
  background: #fff;
  box-shadow: 0 6px 16px -10px rgba(20,30,60,0.4);
  flex: 0 0 auto;
}
.cal-month {
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--gold-500);
  text-align: center;
  padding: 5px 8px 4px;
  line-height: 1;
}
.cal-day {
  font-family: var(--f-sans);
  font-size: 37px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ink-900);
  text-align: center;
  line-height: 1;
  padding: 9px 10px 10px;
}
.cal-when {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
}
.cal-dow {
  font-family: var(--f-display);
  font-size: clamp(21px, 8.4cqi, 32px);
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.05;
  white-space: nowrap;
}
.cal-time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 21px;
  font-weight: 700;
  color: var(--ink-700);
  white-space: nowrap;
}
.cal-time svg { color: var(--gold-600); flex: 0 0 auto; }
.event-body {
  padding: 22px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.event-title {
  font-family: var(--f-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink-900);
  margin: 0 0 10px;
}
.event-venue {
  font-size: 19px;
  color: var(--ink-700);
  line-height: 1.4;
  margin: 0 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.event-venue svg { color: var(--gold-600); flex: 0 0 auto; margin-top: 2px; }
.event-cta {
  margin-top: auto;
  width: 100%;
  background: var(--accent);
  color: var(--navy-900);
  padding: 17px 14px;
  border-radius: 6px;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  transition: background .15s ease;
}
.event-cta:hover { background: var(--accent-bright); }
.events-footer {
  text-align: center;
  color: var(--fg-muted);
  font-size: 14px;
  margin-top: 30px;
}

/* ---------- Venues band ---------- */
.venues-band {
  position: relative;
  background: var(--navy-700);
  isolation: isolate;
  overflow: hidden;
}
.venues-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.venues-band-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,22,53,0.95) 0%, rgba(11,22,53,0.7) 45%, rgba(11,22,53,0.55) 100%);
}
.venues-band-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.venues-band h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--fg);
}
.venues-band p {
  color: var(--fg-muted);
  font-size: 17px;
  max-width: 440px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.venue-marks {
  display: flex;
  gap: 56px;
  justify-content: center;
  align-items: center;
  color: var(--fg);
}
.venue-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg);
}
.venue-mark .ico { color: var(--fg); margin-bottom: 16px; }
.venue-mark .sub { display: block; font-family: var(--f-sans); font-size: 9px; font-weight: 600; letter-spacing: 0.4em; color: var(--warm-200); margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: radial-gradient(400px 400px at 13% 20%, rgba(248,171,47,0.12), transparent 68%), radial-gradient(460px 460px at 85% 9%, rgba(150,110,240,0.16), transparent 66%), radial-gradient(360px 360px at 66% 90%, rgba(220,90,160,0.12), transparent 68%), radial-gradient(320px 320px at 37% 56%, rgba(90,150,240,0.09), transparent 70%), linear-gradient(180deg, #15131e 0%, #110f19 50%, #0e0c14 100%);
  color: var(--bg-cream);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 0.65fr repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testimonials-intro .eyebrow-ink { display: block; margin-bottom: 18px; color: rgba(245,238,220,0.85); }
.testimonials-intro .script {
  font-family: var(--f-script);
  color: var(--gold-500);
  font-size: 64px;
  line-height: 0.9;
}
.testimonial {
  background: var(--card);
  border-radius: 16px;
  border-top: 4px solid var(--accent);
  padding: 30px 28px 26px;
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink-700);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.testimonial::after {
  content: '\201D';
  position: absolute;
  top: 2px;
  right: 20px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.16;
  pointer-events: none;
}
.stars {
  color: var(--gold-500);
  font-size: 17px;
  letter-spacing: 3px;
}
.testimonial-quote { font-style: italic; flex: 1; }
.testimonial-author {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: 0.04em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: var(--fg);
  padding: 68px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 30px;
}
.footer-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg);
  margin: 0 0 18px;
}
.footer p, .footer a, .footer li {
  color: var(--fg-muted);
  font-size: 15px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a:hover { color: var(--accent); }
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter input {
  background: transparent;
  border: 1px solid rgba(245,238,220,0.25);
  color: var(--fg);
  padding: 12px 14px;
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease;
}
.newsletter input:focus { border-color: var(--accent); }
.newsletter button { align-self: flex-start; }
.footer-center {
  text-align: center;
}
.footer-center .logo-wrap { margin: 0 auto 14px; }
.footer-tag {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 18px;
}
.socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245,238,220,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.social:hover { border-color: var(--accent); color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  color: var(--warm-300);
  font-size: 12px;
}

/* ---------- Page (non-home) ---------- */
.page {
  padding: 80px 0 96px;
  min-height: 60vh;
}
.page-hero {
  background:
    radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1.7px) -8px -8px / 38px 38px,
    radial-gradient(rgba(248,171,47,0.12) 1px, transparent 1.5px) 15px 21px / 54px 54px,
    radial-gradient(1100px 520px at 50% -30%, rgba(248,171,47,0.20), transparent 60%),
    #0a0a0d;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 62px 0 56px;
  text-align: center;
}
.page-hero h1.ph-inline .script { display: inline; margin: 0 0 0 0.22em; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
}
.page-hero .script {
  font-family: var(--f-script);
  color: var(--accent);
  font-size: clamp(56px, 7vw, 92px);
  display: block;
  margin-top: -6px;
}

/* ---------- Event Detail Modal ---------- */
.detail-modal {
  background: var(--cream-100);
  color: var(--fg-ink);
  border-radius: 14px;
  max-width: 920px;
  width: 100%;
  max-height: 92vh;
  position: relative;
  overflow: hidden;
  animation: pop .25s ease;
}
.detail-scroll {
  max-height: 92vh;
  overflow-y: auto;
}
.detail-hero {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
}
.detail-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--navy-700);
  overflow: hidden;
}
.detail-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.detail-info {
  padding: 38px 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0 0 8px;
}
.detail-tagline {
  font-size: 16px;
  color: var(--ink-700);
  font-style: italic;
  margin: 0 0 20px;
}
.detail-when {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin: 6px 0 26px;
}
.cal-block-lg { min-width: 76px; }
.cal-block-lg .cal-month { font-size: 14px; padding: 6px 10px 5px; }
.cal-block-lg .cal-day { font-size: 42px; padding: 8px 10px 10px; }
.detail-when .cal-when { gap: 7px; }
.detail-when .cal-dow { font-size: 22px; }
.detail-when .cal-time { font-size: 16px; }
.detail-venue {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
}
.detail-venue svg { color: var(--gold-600); flex: 0 0 auto; }
.detail-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.detail-section {
  padding: 26px 40px;
  border-top: 1px solid rgba(20,30,60,0.1);
}
.detail-h {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 14px;
}
.detail-body {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-700);
  margin: 0;
  max-width: 720px;
}
.detail-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy-800);
}
.detail-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.detail-video-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px dashed rgba(20,30,60,0.2);
  background: linear-gradient(135deg, #16223f, #0d1730);
}
.play-badge {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
}
.detail-video-note {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,238,220,0.6);
}
.detail-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.detail-review {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 26px -16px rgba(20,30,60,0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-review p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-700);
  font-style: italic;
  margin: 0;
}
.detail-review-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-900);
}
.detail-tickets { background: rgba(20,30,60,0.03); }
.detail-checkout {
  padding: 30px 40px 36px;
  max-width: 620px;
  margin: 0 auto;
}
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  margin-bottom: 16px;
  background: none;
  border: none;
  cursor: pointer;
}
.detail-back:hover { color: var(--gold-600); }

@media (max-width: 720px) {
  .detail-hero { grid-template-columns: 1fr; }
  .detail-photo { aspect-ratio: 16 / 10; }
  .detail-info { padding: 26px 24px; }
  .detail-section { padding: 22px 24px; }
  .detail-reviews { grid-template-columns: 1fr; }
  .detail-checkout { padding: 24px; }
}

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,17,44,0.72);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
.modal {
  background: var(--cream-100);
  color: var(--fg-ink);
  border-radius: 12px;
  max-width: 880px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  position: relative;
  animation: pop .25s ease;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  color: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal-poster { background: var(--navy-700); min-height: 380px; }
.modal-body { padding: 36px 36px 32px; }
.modal-body h3 {
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 600;
  margin: 14px 0 10px;
  line-height: 1.1;
}
.modal-body .row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-700);
  margin: 6px 0;
}
.modal-body .row svg { color: var(--gold-600); flex: 0 0 auto; }
.modal-body p { color: var(--ink-700); line-height: 1.65; font-size: 14.5px; }
.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(20,30,60,0.12);
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
}
.tier-row .price { font-family: var(--f-display); font-weight: 600; color: var(--ink-900); font-size: 18px; }
.tier-row .availability { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.avail-good { color: #1F8A5B; }
.avail-fast { color: var(--gold-600); }
.avail-few { color: #C84B26; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 28px 0 36px;
  padding: 18px 20px;
  background: var(--navy-700);
  border-radius: 8px;
  border: 1px solid rgba(248,171,47,0.16);
}
.filter-chip {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(245,238,220,0.18);
  color: var(--fg);
  transition: all .15s ease;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active {
  background: var(--accent);
  color: var(--navy-900);
  border-color: var(--accent);
}
.filter-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-200);
  margin-right: 8px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery-tile {
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-700);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-tile.tall { aspect-ratio: 3/4; grid-row: span 2; }
.gallery-tile.wide { aspect-ratio: 16/9; }
.gallery-tile.s4 { grid-column: span 4; }
.gallery-tile.s6 { grid-column: span 6; }
.gallery-tile.s3 { grid-column: span 3; }
.gallery-tile.s8 { grid-column: span 8; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(245,238,220,0.12);
  padding: 18px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--fg);
  padding: 6px 0;
}
.faq-q .plus {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, margin .3s ease;
}
.faq-item.open .faq-a { max-height: 360px; margin-top: 10px; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 40px 0;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 40px 0;
  border-top: 1px solid rgba(245,238,220,0.1);
  border-bottom: 1px solid rgba(245,238,220,0.1);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
  margin-bottom: 6px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  background: var(--navy-700);
  border: 1px solid rgba(245,238,220,0.16);
  color: var(--fg);
  padding: 12px 14px;
  border-radius: 5px;
  font: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
.contact-info {
  background: var(--navy-700);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid rgba(248,171,47,0.16);
}
.contact-info h3 { font-family: var(--f-display); font-size: 22px; margin: 0 0 18px; }
.contact-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,238,220,0.08);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ico { color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.contact-row .lbl { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-200); margin-bottom: 2px; }
.contact-row .val { font-size: 14px; color: var(--fg); }

/* ---------- Venues page ---------- */
.venue-card {
  background: var(--navy-700);
  border: 1px solid rgba(248,171,47,0.18);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  margin-bottom: 24px;
}
.venue-card-body { padding: 34px 36px; }
.venue-card-body .eyebrow { font-size: 14px; }
.venue-card h3 { font-family: var(--f-display); font-size: 34px; margin: 8px 0 10px; }
.venue-card .meta { font-size: 15.5px; color: var(--fg-muted); letter-spacing: 0.04em; }
.venue-card p { color: var(--fg-muted); line-height: 1.72; font-size: 17px; margin: 16px 0 22px; }
.venue-amenities {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin: 18px 0 26px;
}
.amenity {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 7px 13px;
  border: 1px solid rgba(245,238,220,0.18);
  border-radius: 999px;
  color: var(--fg-muted);
}
.venue-map { min-height: 300px; position: relative; }

/* ---------- Tweakable: page scale, button & photo shape ---------- */
.app-shell { zoom: var(--app-zoom, 1); }

body[data-btn-shape="square"] .btn,
body[data-btn-shape="square"] .event-cta { border-radius: 2px; }
body[data-btn-shape="rounded"] .btn,
body[data-btn-shape="rounded"] .event-cta { border-radius: 8px; }
body[data-btn-shape="pill"] .btn,
body[data-btn-shape="pill"] .event-cta { border-radius: 999px; }

body[data-photo-shape="circle"] .event-media {
  -webkit-mask: none; mask: none; border-radius: 50%;
}
body[data-photo-shape="rounded"] .event-media {
  -webkit-mask: none; mask: none; border-radius: var(--radius-card);
}
/* Default shape when no attribute is set = square w/ rounded corners */

/* ---------- Custom font dropdown (Tweaks) ---------- */
.fontdd-wrap { padding: 2px 12px 10px; position: relative; }
.fontdd-label { font-size: 11px; font-weight: 700; opacity: 0.7; margin-bottom: 6px; }
.fontdd-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  color: inherit;
}
.fontdd-list {
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fbfaf7;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  max-height: 280px;
  overflow-y: auto;
  padding: 4px;
}
.fontdd-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding: 9px 11px;
  border-radius: 7px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #29261b;
  text-align: left;
}
.fontdd-item:hover { background: rgba(0,0,0,0.05); }
.fontdd-item.sel { background: rgba(0,0,0,0.08); }
.fontdd-item .fd-display { font-size: 18px; line-height: 1.1; }
.fontdd-item .fd-sans { font-size: 11px; opacity: 0.6; }

/* ---------- Sparkles deco ---------- */
.deco-sparkle {
  position: absolute;
  color: var(--accent);
  opacity: 0.95;
  pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-intro { grid-column: 1 / -1; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero { display: flex; flex-direction: column; }
  .hero-inner { padding-top: 64px; padding-bottom: 24px; order: 1; }
  .hero-performers {
    position: static; order: 2;
    width: 100%; height: auto; max-width: none;
    object-fit: contain; object-position: center;
    -webkit-mask-image: none; mask-image: none;
    margin-top: 6px;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value { border-right: none; }
  .who-grid, .venues-band-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .events-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal { grid-template-columns: 1fr; }
  .venue-card { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-tile.s4, .gallery-tile.s6, .gallery-tile.s3, .gallery-tile.s8 { grid-column: span 6; }
}
@media (max-width: 520px) {
  .events-grid, .footer-grid, .values-grid { grid-template-columns: 1fr; }
  .gallery-tile.s4, .gallery-tile.s6, .gallery-tile.s3, .gallery-tile.s8 { grid-column: span 12; }
}

/* ---------- VIP Newsletter — shared form, /newsletter page, entry popup ---------- */
.nl-form { display: flex; flex-direction: column; }
.nl-label { font-family: var(--f-sans); font-weight: 700; font-size: 14px; color: var(--fg); margin: 14px 0 6px; }
.nl-req { color: #f0917a; }
.nl-input {
  width: 100%; font-family: var(--f-sans); font-size: 16px; color: #17202e;
  background: #fff; border: 1px solid #d7dbe3; border-radius: 10px;
  padding: 13px 15px; outline: none; transition: border-color .15s, box-shadow .15s;
}
.nl-input::placeholder { color: #9aa3b2; }
.nl-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230,178,74,.25); }
.nl-consent { display: flex; gap: 10px; align-items: flex-start; margin: 18px 0 4px; font-family: var(--f-sans); font-size: 13.5px; line-height: 1.5; color: var(--fg); }
.nl-consent input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--accent); cursor: pointer; }
.nl-consent a { color: var(--accent); }
.nl-err { color: #ff9583; font-size: 13.5px; margin: 12px 0 0; font-family: var(--f-sans); }
.nl-submit { margin-top: 20px; align-self: flex-start; }
.nl-success { text-align: center; padding: 20px 6px; }
.nl-success-check { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #17202e; font-size: 30px; line-height: 56px; margin: 0 auto 14px; font-weight: 700; }
.nl-success-title { font-family: var(--f-sans); font-weight: 700; font-size: 20px; color: var(--fg); }
.nl-success-sub { font-family: var(--f-sans); font-size: 14.5px; color: #b8c0cc; margin-top: 6px; line-height: 1.5; }

.nl-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(4,6,10,.80); display: flex; align-items: center; justify-content: center; padding: 20px; animation: nlFade .25s ease; }
@keyframes nlFade { from { opacity: 0; } to { opacity: 1; } }
.nl-modal {
  position: relative; width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto;
  background: #0b0f17; border: 1px solid rgba(230,178,74,.55); border-radius: 18px;
  padding: 30px 30px 34px; box-shadow: 0 30px 90px -20px rgba(0,0,0,.8);
  animation: nlPop .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes nlPop { from { transform: translateY(14px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.nl-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.06); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; }
.nl-close:hover { background: rgba(255,255,255,.14); }
.nl-modal-logo { text-align: center; margin-bottom: 14px; }
.nl-modal-title { font-family: var(--f-display); font-weight: 600; font-size: 26px; color: var(--fg); text-align: center; margin: 4px 0 6px; }
.nl-modal-sub { font-family: var(--f-sans); font-size: 14.5px; color: #b8c0cc; text-align: center; margin: 0 0 6px; line-height: 1.5; }

.nl-page { min-height: calc(100vh - 90px); background: radial-gradient(120% 80% at 50% 0%, #16233e 0%, var(--bg) 60%); display: flex; align-items: center; justify-content: center; padding: 48px 20px 72px; }
.nl-page-inner { width: 100%; max-width: 560px; text-align: center; }
.nl-page-logo { margin-bottom: 20px; display: flex; justify-content: center; }
.nl-eyebrow { font-family: var(--f-sans); font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); font-size: 13px; }
.nl-h1 { font-family: var(--f-display); font-weight: 600; font-size: clamp(34px, 6vw, 52px); color: var(--fg); margin: 10px 0 8px; line-height: 1.05; }
.nl-lead { font-family: var(--f-sans); font-size: 17px; color: #c3cad6; line-height: 1.55; margin: 0 auto 26px; max-width: 460px; }
.nl-card { background: #0b0f17; border: 1px solid rgba(230,178,74,.3); border-radius: 18px; padding: 26px 26px 30px; text-align: left; }

@media (max-width: 520px) {
  .nl-modal { padding: 26px 20px 28px; border-radius: 16px; }
  .nl-card { padding: 22px 18px 26px; }
  .nl-submit { align-self: stretch; }
}
