/* ============================================================
   RING OF SPIES — A Musical Revolution
   Premium Broadway Marketing Site — Stylesheet
   ============================================================ */

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #07070b;
  --dark:        #0e0e16;
  --navy:        #0d1b3e;
  --navy-mid:    #162447;
  --gold:        #c9a84c;
  --gold-light:  #e8c86d;
  --gold-dim:    #7a6228;
  --cream:       #f0ead8;
  --white:       #ffffff;
  --text-light:  #c4c0b8;
  --text-muted:  #7a7870;

  --font-display: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --font-serif:   'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --pad-section:  clamp(5rem, 11vw, 9rem);
  --container:    1300px;
  --gutter:       clamp(1.5rem, 5vw, 4rem);
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --trans:        0.65s var(--ease);
  --trans-fast:   0.28s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
em  { font-style: italic; }

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

.section { padding: var(--pad-section) 0; }

.label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.25rem;
}

.section-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 660px;
  line-height: 1.85;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.body-copy {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.35rem;
}

.gold-link {
  color: var(--gold);
  transition: color var(--trans-fast);
}
.gold-link:hover { color: var(--gold-light); }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--trans-fast), border-color var(--trans-fast),
              color var(--trans-fast), transform var(--trans-fast),
              box-shadow var(--trans-fast);
  position: relative;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.15rem 2.9rem;
  font-size: 0.85rem;
}

/* Glowing gold CTA — used on the hero Buy Tickets button */
.btn--glow {
  box-shadow:
    0 6px 32px rgba(201,168,76,0.45),
    0 0 0 0 rgba(201,168,76,0.55);
  animation: btnGlowPulse 2.8s 3.5s ease-out infinite;
}
.btn--glow:hover {
  animation: none;
  transform: translateY(-3px) scale(1.028);
  box-shadow:
    0 14px 48px rgba(201,168,76,0.70),
    0  0  28px rgba(201,168,76,0.22),
    0 0 0 0 rgba(201,168,76,0);
}

/* ---- Scroll Reveal ---------------------------------------- */
.rv, .rv-up, .rv-right {
  opacity: 0;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0s);
}
.rv-up    { transform: translateY(44px); }
.rv-right { transform: translateX(48px); }

.in.rv       { opacity: 1; }
.in.rv-up    { opacity: 1; transform: translateY(0); }
.in.rv-right { opacity: 1; transform: translateX(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.4rem 0;
  transition: background var(--trans-fast), backdrop-filter var(--trans-fast),
              padding var(--trans-fast), border-color var(--trans-fast);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(7, 7, 11, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 0.8rem 0;
  border-color: rgba(201,168,76,0.15);
}

.nav__wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0.55rem 0.8rem;
  transition: color var(--trans-fast);
}
.nav__link:hover { color: var(--gold); }

.nav__link--tickets {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.55rem 1.3rem;
  margin-left: 0.6rem;
  transition: background var(--trans-fast);
}
.nav__link--tickets:hover { background: var(--gold-light); }

.nav__link--donate {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.5rem 1.2rem;
  margin-left: 0.4rem;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.nav__link--donate:hover { background: var(--gold); color: var(--black) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Cinematic reveal: bg-wrap fades up from black as the page loads */
  animation: heroCurtain 1.6s ease forwards;
}

/* Poster image — renders instantly as a fallback while the video buffers,
   and remains visible on reduced-motion or when autoplay is blocked. */
.hero__poster {
  position: absolute;
  inset: 0;
  background: url('images/PHOTO-2026-03-06-18-44-25.jpg') center 30% / cover no-repeat;
}

/* Background video */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Fade the video in on top of the poster for a smooth reveal */
  opacity: 0;
  animation:
    heroVideoFadeIn 2s 0.2s ease forwards,
    heroZoom 28s 0.2s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    animation: heroVideoFadeIn 0.8s ease forwards; /* still fade in, no zoom */
  }
}

/* Smoke / particle canvas — sits above video, below vignette */
.hero__smoke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Canvas is intentionally transparent — JS paints into it */
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    /* top edge — slight dark cap */
    linear-gradient(to bottom,
      rgba(7,7,11,0.42) 0%,
      rgba(7,7,11,0.12) 18%,
      rgba(7,7,11,0.52) 52%,
      rgba(7,7,11,0.88) 80%,
      rgba(7,7,11,1.00) 100%),
    /* lateral edges — cinematic widescreen darkness */
    linear-gradient(to right,
      rgba(7,7,11,0.55) 0%,
      transparent 22%,
      transparent 78%,
      rgba(7,7,11,0.55) 100%),
    /* centre glow — keeps the subject bright */
    radial-gradient(ellipse 65% 60% at 50% 38%, transparent 0%, rgba(7,7,11,0.42) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 0 var(--gutter);
  /* GPU layer — JS writes transform + opacity on every RAF tick */
  will-change: transform, opacity;
}

/* Hero typography — animated on load */
.hero__pre {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  color: var(--cream);
  opacity: 0;
  animation: heroFadeDown 1s 1.4s var(--ease) forwards;
  margin-top: 0.6rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 9vw, 6.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--white);
  /* Base shadow keeps text crisp; gold halos pulse via titleGlow */
  text-shadow:
    0 4px 70px rgba(0,0,0,0.8),
    0 0  55px rgba(201,168,76,0.18),
    0 0 110px rgba(201,168,76,0.08);
  opacity: 0;
  animation:
    heroFadeUp  1.3s 0.4s var(--ease) forwards,
    titleGlow   5s   3.2s  ease-in-out  infinite alternate;
  margin: 0 0 0.4rem;
}

.hero__title-qualifier {
  display: block;
  font-family: 'Pinyon Script', cursive;
  font-size: 0.46em;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 0.08em;
  color: var(--gold-light);
}

.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.45rem);
  color: var(--gold-light);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: heroFadeUp 1s 1.3s var(--ease) forwards;
}

.hero__divider {
  width: 76px;
  height: 1px;
  background: var(--gold);
  margin: 1.6rem auto;
  opacity: 0;
  animation: heroFadeIn 1s 1.65s forwards;
}

.hero__tag {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--cream);
  opacity: 0;
  animation: heroFadeUp 1s 1.8s var(--ease) forwards;
  margin-bottom: 0.7rem;
}

.hero__premiere {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: heroFadeUp 1s 2s var(--ease) forwards;
  margin-bottom: 2.6rem;
}

.hero__ctas {
  display: flex;
  gap: 1.1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 1s 2.25s var(--ease) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 1s 3s forwards;
}
.hero__scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   STORY
   ============================================================ */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.story__img-wrap {
  position: relative;
}
.story__img-wrap::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 55%; height: 55%;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.story__img-wrap::after {
  content: '';
  position: absolute;
  bottom: -14px; left: -14px;
  width: 35%; height: 35%;
  border-bottom: 2px solid var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
  z-index: 0;
  pointer-events: none;
}

.story__img {
  position: relative;
  z-index: 1;
  height: clamp(340px, 45vw, 540px);
  border-radius: 1px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.65);
}

.story__img-cap {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

/* ============================================================
   GALLERY STRIP (infinite scroll)
   ============================================================ */
.gallery {
  overflow: hidden;
  background: var(--dark);
  padding: 6px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.gallery__track {
  display: flex;
  gap: 6px;
  width: max-content;
  animation: gallerySpin 55s linear infinite;
}
.gallery:hover .gallery__track { animation-play-state: paused; }

.gallery__item {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 500px);
  height: clamp(170px, 22vw, 300px);
  overflow: hidden;
  cursor: zoom-in;
}
.gallery__item img {
  transition: transform 0.6s var(--ease), filter 0.45s ease;
  filter: brightness(0.7) saturate(0.8);
}
.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

/* ============================================================
   PREMIERE
   ============================================================ */
.premiere {
  position: relative;
  text-align: center;
  padding: var(--pad-section) 0;
  overflow: hidden;
}
.premiere__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 15%;
  filter: blur(3px) brightness(0.22);
  transform: scale(1.05);
}
.premiere__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7,7,11,0.88)   0%,
    rgba(13,27,62,0.62) 50%,
    rgba(7,7,11,0.92)  100%
  );
}
.premiere__body {
  position: relative;
  z-index: 1;
}
.premiere__intro {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}
.premiere__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
}
.premiere__card {
  border: 1px solid rgba(201,168,76,0.22);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(10px);
  padding: 2.25rem 1.75rem;
  transition: border-color 0.35s, background 0.35s, transform 0.35s;
}
.premiere__card:hover {
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.07);
  transform: translateY(-4px);
}
.premiere__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.premiere__card h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.premiere__card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   AMERICA 250
   ============================================================ */
.a250 {
  position: relative;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.18);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  overflow: hidden;
}

/* Faint patriotic stripe layer — flag fabric at very low opacity */
.a250::before {
  content: '';
  position: absolute;
  inset: -12%;          /* oversize so edge gaps never show during drift */
  background: repeating-linear-gradient(
    174deg,             /* very slight diagonal — feels like cloth, not wallpaper */
    rgba(178, 34, 52, 0.055)   0px,
    rgba(178, 34, 52, 0.055)   42px,
    rgba(220, 208, 168, 0.018) 42px,
    rgba(220, 208, 168, 0.018) 84px
  );
  animation: a250FlagDrift 22s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Slow gold light sweep — once every ~26s with a long natural pause */
.a250::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -42%;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.065) 42%,
    rgba(201, 168, 76, 0.065) 58%,
    transparent 100%
  );
  animation: a250Sheen 26s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Ensure content layers sit above the atmospheric effects */
.a250__inner,
.ticker-wrap { position: relative; z-index: 1; }

.a250__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-top:    var(--pad-section);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  padding-left:  var(--gutter);
  padding-right: var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.a250__flag {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.a250__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.a250__body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.85;
}

.a250__seal {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: rgba(201,168,76,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
}
.a250__seal span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.5;
}
.a250__seal-num {
  font-size: 3.2rem !important;
  letter-spacing: -0.02em !important;
  color: var(--white) !important;
  font-weight: 700;
  line-height: 1 !important;
}

/* Ticker tape */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 0.7rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerSpin 22s linear infinite;
}
.ticker-track span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  padding-right: 0;
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience { background: var(--black); }
.audience .section-title,
.audience .label { text-align: center; }
.audience .gold-rule { margin: 0 auto 2.25rem; }

.audience__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.audience__card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 2rem;
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
  position: relative;
  overflow: hidden;
}
.audience__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.audience__card:hover {
  background: rgba(201,168,76,0.055);
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-6px);
}
.audience__card:hover::after { transform: scaleX(1); }

.audience__icon {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 1.35rem;
}
.audience__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.audience__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.audience__more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--trans-fast);
}
.audience__more:hover { color: var(--gold-light); }

/* ============================================================
   TRAILER / MEDIA PREVIEW
   ============================================================ */
.trailer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.trailer__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}
.trailer__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2.25rem;
  line-height: 1.65;
}
.trailer__poster {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 44px 88px rgba(0,0,0,0.72);
  aspect-ratio: 16 / 9;
}
.trailer__poster-img {
  transition: transform 0.6s var(--ease), filter 0.4s ease;
  filter: brightness(0.65) saturate(0.75);
}
.trailer__poster:hover .trailer__poster-img {
  transform: scale(1.04);
  filter: brightness(0.88) saturate(1);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  transition: transform 0.3s var(--ease);
  filter: drop-shadow(0 4px 24px rgba(201,168,76,0.45));
}
.trailer__poster:hover .play-btn { transform: translate(-50%, -50%) scale(1.12); }
.play-btn svg { width: 100%; height: 100%; }

/* Video Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.modal__box {
  position: relative;
  z-index: 1;
  width: min(92vw, 1040px);
}
.modal__close {
  position: absolute;
  top: -2.6rem; right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.modal__close:hover { opacity: 1; }
.modal__frame {
  aspect-ratio: 16 / 9;
  background: #000;
}
.modal__frame iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   GROUP TICKETS
   ============================================================ */
.tickets { background: var(--black); }
.tickets .section-title,
.tickets .label { text-align: center; }
.tickets .gold-rule { margin: 0 auto 2.25rem; }

.tickets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.ticket-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.35s, background 0.35s;
}
.ticket-card--featured {
  border-color: var(--gold);
  background: rgba(13,27,62,0.7);
  transform: scale(1.03);
}
.ticket-card__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 1.3rem;
  white-space: nowrap;
}
.ticket-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin: 1.5rem 0 0.4rem;
}
.ticket-card__seats {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.ticket-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}
.ticket-card li {
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.5rem 0 0.5rem 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.ticket-card li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 50%; transform: translateY(-50%);
  font-size: 0.6rem;
  color: var(--gold);
}
.tickets__note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   TICKETS CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: var(--pad-section) 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.14) saturate(0.4);
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(7,7,11,0.7) 0%,
    rgba(13,27,62,0.55) 50%,
    rgba(7,7,11,0.75) 100%
  );
}
.cta-banner__content {
  position: relative;
  z-index: 1;
}
.cta-banner__date {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.9rem 0 2.8rem;
}
.cta-banner__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SPONSORSHIP
   ============================================================ */
.sponsor { background: var(--dark); }
.sponsor__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}
.sponsor__tiers {
  margin-top: 2.25rem;
  border: 1px solid rgba(201,168,76,0.2);
}
.sponsor__tier {
  padding: 1.35rem 1.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s;
}
.sponsor__tier:last-child { border-bottom: none; }
.sponsor__tier:hover { background: rgba(201,168,76,0.05); }
.sponsor__tier-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.sponsor__tier p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.sponsor__img-wrap {
  position: relative;
}
.sponsor__img-wrap::before {
  content: '';
  position: absolute;
  bottom: -14px; right: -14px;
  width: 55%; height: 55%;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.sponsor__img {
  position: relative;
  z-index: 1;
  height: clamp(320px, 40vw, 500px);
  border-radius: 1px;
  box-shadow: 0 40px 88px rgba(0,0,0,0.65);
}

/* ============================================================
   EMAIL SIGNUP
   ============================================================ */
.signup {
  background: var(--navy);
  padding: var(--pad-section) 0;
  border-top: 1px solid rgba(201,168,76,0.14);
}
.signup__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: center;
}
.signup__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--white);
  margin-bottom: 1.15rem;
}
.signup__body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
}
.signup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.signup__fields .btn { grid-column: 1 / -1; width: 100%; }
.signup__input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.9rem 1.25rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.signup__input::placeholder { color: rgba(255,255,255,0.38); }
.signup__input:focus { border-color: var(--gold); }
.signup__select {
  grid-column: 1 / -1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M0 0l5 7 5-7z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  cursor: pointer;
}
.signup__select option { background: var(--navy); }
.signup__legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.85rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 4.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.25fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
  margin-bottom: 1.1rem;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.footer h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.35rem;
}
.footer__nav { list-style: none; }
.footer__nav li { margin-bottom: 0.6rem; }
.footer__nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.22s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__contact-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.footer__email {
  display: inline-block;
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
  transition: color 0.22s;
}
.footer__email:hover { color: var(--gold-light); }

.footer__social { display: flex; gap: 0.8rem; }
.footer__social a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.footer__social a svg { width: 17px; height: 17px; }
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.09);
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 1.6rem 0;
}
.footer__bar p {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Cinematic page-load: black curtain lifts and scene gently focuses in */
@keyframes heroCurtain {
  0%   { opacity: 0; transform: scale(1.025); }
  100% { opacity: 1; transform: scale(1.000); }
}

/* Video fades in over the poster image once it starts playing */
@keyframes heroVideoFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Breathing gold glow on the main title — starts after the fade-in lands */
@keyframes titleGlow {
  from {
    text-shadow:
      0 4px 70px rgba(0,0,0,0.80),
      0 0  40px rgba(201,168,76,0.12),
      0 0  80px rgba(201,168,76,0.05);
  }
  to {
    text-shadow:
      0 4px 70px rgba(0,0,0,0.75),
      0 0  80px rgba(201,168,76,0.40),
      0 0 160px rgba(201,168,76,0.18);
  }
}

/* Slow Ken Burns zoom — alternates between two crop positions so it
   never jumps when it loops (uses alternate direction in animation). */
@keyframes heroZoom {
  0%   { transform: scale(1.00) translate(0%,    0%); }
  33%  { transform: scale(1.04) translate(-0.8%, 0.4%); }
  66%  { transform: scale(1.07) translate( 0.5%, -0.6%); }
  100% { transform: scale(1.04) translate( 0.3%, 0.2%); }
}

/* Pulsing glow ring on the Buy Tickets button */
@keyframes btnGlowPulse {
  0%   { box-shadow: 0 6px 32px rgba(201,168,76,0.45), 0 0 0 0   rgba(201,168,76,0.55); }
  55%  { box-shadow: 0 6px 32px rgba(201,168,76,0.35), 0 0 0 16px rgba(201,168,76,0);   }
  100% { box-shadow: 0 6px 32px rgba(201,168,76,0.45), 0 0 0 0   rgba(201,168,76,0);   }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.55); opacity: 0.35; }
}
@keyframes gallerySpin {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes tickerSpin {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* America 250 — flag fabric drift */
@keyframes a250FlagDrift {
  0%,  100% { transform: skewX(0deg)    translateX(0px);  }
  28%        { transform: skewX( 0.5deg) translateX( 7px); }
  72%        { transform: skewX(-0.5deg) translateX(-7px); }
}

/* America 250 — slow gold light sweep with long pause between passes */
@keyframes a250Sheen {
  0%   { transform: translateX(0);    opacity: 0; }
  6%   { opacity: 1; }
  40%  { transform: translateX(380%); opacity: 0; }
  100% { transform: translateX(380%); opacity: 0; }  /* holds off-screen */
}

@media (prefers-reduced-motion: reduce) {
  .a250::before,
  .a250::after { animation: none; }
}

/* ============================================================
   HAYM SALOMON
   ============================================================ */
.haym { background: var(--dark); }

.haym__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.haym__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-top: 2rem;
  line-height: 1.65;
}

.haym__img-wrap {
  position: relative;
}
.haym__img-wrap::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 55%; height: 55%;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 0;
  pointer-events: none;
}
.haym__img {
  position: relative;
  z-index: 1;
  height: clamp(320px, 40vw, 500px);
  border-radius: 1px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.65);
}

/* ============================================================
   HISTORICAL FIGURES
   ============================================================ */
.figures { background: var(--navy); }
.figures .section-title,
.figures .label   { text-align: center; }
.figures .gold-rule { margin: 0 auto 2.25rem; }

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

.figure-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: background 0.4s, border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.figure-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.figure-card:hover {
  background: rgba(201,168,76,0.055);
  border-color: rgba(201,168,76,0.28);
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 12px 36px rgba(0,0,0,0.55), 0 0 18px rgba(201,168,76,0.08);
}
.figure-card:hover::after { transform: scaleX(1); }

.figure-card__portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(13,27,62,0.9) 0%, rgba(7,7,11,0.95) 100%);
}
/* cinematic vignette layered over each portrait */
.figure-card__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, rgba(7,7,11,0.72) 100%),
    radial-gradient(ellipse 90% 80% at 50% 0%, transparent 60%, rgba(7,7,11,0.28) 100%);
  pointer-events: none;
  z-index: 1;
}

.figure-card__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.82) saturate(0.8) contrast(1.06);
  transition: filter 0.5s var(--ease), transform 0.5s var(--ease);
}
.figure-card:hover .figure-card__img {
  filter: brightness(0.96) saturate(1.0) contrast(1.04);
  transform: scale(1.04);
}

.figure-card__body {
  padding: 1.75rem;
}
.figure-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.35rem;
  text-shadow: 0 0 18px rgba(201,168,76,0.18);
}
.figure-card__role {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.figure-card__desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ============================================================
   MUSIC FROM THE PRODUCTION
   ============================================================ */
.music { background: var(--black); }
.music .section-title,
.music .label   { text-align: center; }
.music .gold-rule { margin: 0 auto 2.25rem; }

.music__tracks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.music__track {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.6rem 2rem;
  transition: background 0.3s, border-color 0.3s;
}
.music__track:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.2);
}

.music__track-num {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.music__track-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.music__track-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.music__track audio {
  width: 280px;
  height: 34px;
  flex-shrink: 0;
  /* Minimal tint to sit on dark background — full styling isn't cross-browser possible */
  filter: invert(0.88) sepia(0.25) saturate(0.55) hue-rotate(4deg);
  opacity: 0.85;
}

.music__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   SUBTLE CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

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

.cta-strip__item {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: background 0.35s, border-color 0.35s;
}
.cta-strip__item:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.22);
}

.cta-strip__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 1rem;
}
.cta-strip__item h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.cta-strip__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 1.6rem;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1100px) {
  .figures__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .haym__grid { grid-template-columns: 1fr; }
  .haym__img  { height: 300px; }
  .cta-strip__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .figures__grid { grid-template-columns: 1fr; }
  .music__track  { grid-template-columns: 1fr; gap: 1rem; }
  .music__track audio { width: 100%; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .story__grid,
  .trailer__grid,
  .sponsor__grid,
  .signup__inner   { grid-template-columns: 1fr; }

  .premiere__cards { grid-template-columns: 1fr; max-width: 460px; }
  .a250__inner     { grid-template-columns: 1fr; padding-right: var(--gutter); }
  .a250__seal      { display: none; }
  .footer__grid    { grid-template-columns: 1fr; gap: 2.5rem; }

  .rv-right { transform: translateY(30px); }
  .in.rv-right { transform: translateY(0); }

  .ticket-card--featured { transform: none; }
  .tickets__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,7,11,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1000;
  }
  .nav__links.open { display: flex; }
  .nav__link       { font-size: 1.1rem; padding: 0.75rem 1rem; }
  .nav__burger     { display: flex; }

  .audience__grid { grid-template-columns: 1fr; }

  .signup__fields { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .hero__ctas     { flex-direction: column; align-items: center; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   PAGE HERO — interior page banner (all pages except Home)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 6rem; /* clear the fixed nav */
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.32) saturate(0.75);
  transform: scale(1.04);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(7,7,11,0.55) 0%,
      rgba(7,7,11,0.25) 42%,
      rgba(7,7,11,0.90) 100%),
    radial-gradient(ellipse 80% 70% at 50% 40%, transparent 30%, rgba(7,7,11,0.45) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem var(--gutter) 4rem;
  width: 100%;
}
.page-hero__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  animation: heroFadeIn 0.9s 0.2s both;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-shadow:
    0 4px 50px rgba(0,0,0,0.85),
    0 0 60px rgba(201,168,76,0.12);
  margin-bottom: 1.1rem;
  animation: heroFadeUp 1s 0.35s var(--ease) both;
}
.page-hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: var(--gold-light);
  letter-spacing: 0.06em;
  animation: heroFadeUp 1s 0.55s var(--ease) both;
}
.page-hero__rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem auto 0;
  opacity: 0.6;
  animation: heroFadeIn 1s 0.7s both;
}

/* Active nav link — highlights current page */
.nav__link[aria-current="page"] {
  color: var(--gold);
}

/* Contact page form extras */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-info__icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-info__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.contact-info__value {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.contact-info__value a {
  color: var(--gold-light);
  text-decoration: none;
}
.contact-info__value a:hover { color: var(--gold); }

/* Responsive: contact grid stacks on mobile */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 35vh; }
  .page-hero__title { font-size: clamp(2rem, 9vw, 3rem); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery__track,
  .ticker-track { animation-play-state: paused; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   MOBILE POLISH — Phase 2
   Global tap targets, grid utilities, and mobile refinements
   ============================================================ */

/* ---- Minimum 44 px tap targets (WCAG 2.5.5) ---- */
.btn          { min-height: 44px; max-width: 100%; }
.btn--lg      { min-height: 50px; }

/* ---- Grid utility classes replaces some inline-style grids ---- */
/* index.html audience segmentation */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}
/* index.html venue / dates / experience strip */
.event-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}
/* tickets.html weekly schedule */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ============================================================
   ≤ 900px
   ============================================================ */
@media (max-width: 900px) {
  /* 3-col venue cards → 2-col before stacking */
  .event-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ============================================================
   ≤ 768px — Mobile baseline
   ============================================================ */
@media (max-width: 768px) {
  /* Nav overlay: ensure every link is a comfortable tap target */
  .nav__link              { min-height: 48px; display: flex; align-items: center; justify-content: center; }
  /* Remove desktop margins on special nav links — they sit centered in overlay */
  .nav__link--tickets     { margin-left: 0; }
  .nav__link--donate      { margin-left: 0; }

  /* Page hero label: allow word-wrap and loosen letter-spacing */
  .page-hero__label       { white-space: normal; letter-spacing: 0.2em; line-height: 1.6; }

  /* CTA banner date row */
  .cta-banner__date       { letter-spacing: 0.16em; line-height: 1.7; }

  /* Home hero premiere line */
  .hero__premiere         { letter-spacing: 0.16em; line-height: 1.8; }
}

/* ============================================================
   ≤ 640px
   ============================================================ */
@media (max-width: 640px) {
  /* Allow scarcity / trust items to wrap instead of overflowing */
  .trust-item             { white-space: normal; }
  .scarcity-item          { white-space: normal; }

  /* Page hero label */
  .page-hero__label       { font-size: 0.6rem; letter-spacing: 0.14em; }

  /* Weekly schedule: single column */
  .schedule-grid          { grid-template-columns: 1fr; }

  /* Footer bar */
  .footer__bar p          { line-height: 1.85; }
}

/* ============================================================
   ≤ 600px
   ============================================================ */
@media (max-width: 600px) {
  /* Audience buttons: single column */
  .audience-grid          { grid-template-columns: 1fr; max-width: 360px; }

  /* Venue / dates / experience cards: single column */
  .event-cards-grid       { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   ≤ 480px — Small phones (iPhone SE, Galaxy A, etc.)
   ============================================================ */
@media (max-width: 480px) {
  /* Allow button text to wrap instead of causing overflow (beats inline white-space:nowrap) */
  .btn                    { white-space: normal !important; text-align: center; }

  /* Slightly tighter button padding on compact screens */
  .btn--lg                { padding: 1rem 1.8rem; }

  /* Page hero: reduce vertical padding so content isn't cramped */
  .page-hero__content     { padding-top: 2rem; padding-bottom: 2rem; }
  .page-hero__label       { font-size: 0.56rem; }

  /* Home hero premiere line */
  .hero__premiere         { font-size: 0.68rem; letter-spacing: 0.1em; }

  /* Home hero tag line */
  .hero__tag              { font-size: 0.95rem; }
}
