:root {
  --bg: #0f0d0d;
  --bg-deep: #070607;
  --surface: #151313;
  --surface-soft: #201b18;
  --surface-glow: #2b2117;
  --text: #f6eee1;
  --muted: #cfc0aa;
  --gold: #f2ca50;
  --gold-bright: #ffe08a;
  --gold-dim: #a9822e;
  --red: #8d1116;
  --red-bright: #c51619;
  --line: rgba(242, 202, 80, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --header-h: 76px;
  --container: 1180px;
  --gutter: clamp(18px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -10%, rgba(242, 202, 80, 0.14), transparent 34rem),
    radial-gradient(circle at 15% 16%, rgba(197, 22, 25, 0.2), transparent 26rem),
    linear-gradient(180deg, #0d0b0c 0%, #131010 46%, #080707 100%);
  color: var(--text);
  font-family: "Instrument Sans", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 72%, transparent);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
}

h2 {
  text-wrap: balance;
}

h1 {
  max-width: 1180px;
  margin: 0 auto 12px;
  color: var(--gold-bright);
  font-size: clamp(4rem, 12vw, 9.4rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(242, 202, 80, 0.85),
    0 0 34px rgba(242, 202, 80, 0.34),
    0 8px 30px rgba(0, 0, 0, 0.74);
}

h2 {
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: clamp(2.25rem, 5vw, 4.9rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--gold);
  color: #241600;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  min-width: 0;
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 40px);
  min-height: var(--header-h);
  padding: 10px max(var(--gutter), env(safe-area-inset-right)) 10px max(var(--gutter), env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(7, 6, 7, 0.94), rgba(15, 11, 12, 0.82));
  border-bottom: 1px solid rgba(242, 202, 80, 0.24);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 240px;
  text-decoration: none;
}

.brand-logo {
  width: clamp(160px, 17vw, 250px);
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 8px 16px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 12px rgba(242, 202, 80, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: #ebd6ac;
  font: 800 0.78rem/1 "Instrument Sans", Arial, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a,
.footer-links a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.text-link:hover {
  color: var(--gold-bright);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1 1 220px;
  min-width: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 224, 138, 0.72);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe68d 0%, var(--gold) 58%, #b97815 100%);
  color: #251500;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow:
    0 0 28px rgba(242, 202, 80, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 170ms ease, filter 170ms ease, box-shadow 170ms ease;
}

.button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow:
    0 0 38px rgba(242, 202, 80, 0.34),
    0 18px 42px rgba(0, 0, 0, 0.32);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.button-large {
  min-height: 58px;
  padding-inline: 32px;
}

.button-outline {
  background: transparent;
  color: var(--gold-bright);
  border-color: var(--line);
  box-shadow: none;
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.hamburger:focus-visible,
.scroll-cue:focus-visible {
  outline: 3px solid rgba(242, 202, 80, 0.72);
  outline-offset: 3px;
}

.consent-banner {
  position: fixed;
  z-index: 200;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner p {
  flex: 1 1 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: max(760px, 94svh);
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: calc(var(--header-h) + 34px) var(--gutter) clamp(54px, 8vw, 88px);
  color: var(--text);
  isolation: isolate;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-media video,
.hero-overlay,
.hero-stage {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
  background: #000;
}

.hero-media picture {
  display: block;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media img {
  filter: saturate(1.08) contrast(1.08) brightness(0.78);
}

.hero-video {
  opacity: 0;
  filter: saturate(1.15) contrast(1.08) brightness(0.82);
  transition: opacity 900ms ease;
}

.hero.is-video-ready .hero-video {
  opacity: 1;
}

.hero.is-video-disabled .hero-video {
  display: none;
}

.hero-overlay {
  z-index: -3;
  background:
    radial-gradient(circle at 50% 22%, rgba(242, 202, 80, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(7, 6, 7, 0.18) 0%, rgba(7, 6, 7, 0.58) 54%, #0f0d0d 100%),
    linear-gradient(90deg, rgba(7, 6, 7, 0.82), rgba(7, 6, 7, 0.24) 45%, rgba(7, 6, 7, 0.82));
}

.hero-stage {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(68deg, transparent 0 31%, rgba(255, 232, 149, 0.18) 42%, transparent 55%),
    linear-gradient(112deg, transparent 0 44%, rgba(255, 232, 149, 0.13) 53%, transparent 64%),
    radial-gradient(ellipse at 50% 100%, rgba(242, 202, 80, 0.24), transparent 38%);
  mix-blend-mode: screen;
  animation: spotlight-sweep 9s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  min-width: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-kicker {
  text-shadow: 0 0 18px rgba(242, 202, 80, 0.5);
}

.hero-lead {
  margin-bottom: 10px;
  color: #fff2c2;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 3.7rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(96, 13, 16, 0.86),
    0 10px 26px rgba(0, 0, 0, 0.62);
}

.hero-copy {
  max-width: 650px;
  margin: 0 auto;
  color: #eadcc8;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.hero-actions,
.group-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: center;
  margin: 26px 0;
}

.text-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: #fff2c2;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 880px;
  margin: 30px auto 0;
  overflow: hidden;
  border: 1px solid rgba(242, 202, 80, 0.28);
  border-radius: var(--radius);
  background: rgba(242, 202, 80, 0.28);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(242, 202, 80, 0.16);
}

.event-strip div {
  padding: 16px 18px;
  background: rgba(11, 9, 9, 0.88);
}

dt {
  color: #cbb895;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

dd {
  margin: 3px 0 0;
  color: #fff7de;
  font-weight: 900;
  line-height: 1.2;
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  z-index: 3;
  color: #d8c59c;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 42px;
  margin-top: 10px;
  background: linear-gradient(var(--gold), transparent);
}

.marquee-band {
  border-block: 1px solid rgba(242, 202, 80, 0.38);
  background:
    radial-gradient(circle, rgba(255, 224, 138, 0.72) 1px, transparent 1.5px) 0 7px / 14px 3px repeat-x,
    linear-gradient(90deg, #130707 0%, #7f1015 36%, #160809 70%, #b3191d 100%);
  color: var(--text);
}

.marquee-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.3fr 1fr;
  align-items: stretch;
}

.marquee-grid > * {
  margin: 0;
  padding: clamp(12px, 1.5vw, 18px);
  border-left: 1px solid rgba(255, 250, 242, 0.12);
}

.marquee-grid > :first-child {
  border-left: 0;
}

.ticket-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  align-items: center;
}

.ticket-prices > div + div {
  padding-left: clamp(12px, 1.5vw, 20px);
  border-left: 1px solid rgba(255, 250, 242, 0.12);
}

.marquee-grid strong,
.marquee-grid span {
  display: block;
}

.marquee-grid strong {
  color: var(--gold-bright);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(242, 202, 80, 0.28);
}

.marquee-grid .ticket-outlets {
  max-width: none;
  margin-top: 2px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.marquee-grid span {
  color: #eadcc8;
}

.ticket-buy,
.ticket-when {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.marquee-grid .ticket-time {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 4px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--gold-bright);
  color: #3b2100;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.section {
  padding: clamp(74px, 9vw, 124px) 0;
}

.split,
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.section-copy,
.section-intro,
.details-heading {
  position: relative;
}

.section-copy::before,
.section-intro::before,
.details-heading::before {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-copy p,
.section-intro p,
.details-heading p {
  color: var(--muted);
  font-size: 1.06rem;
}

.trailer-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(242, 202, 80, 0.12), transparent 26rem),
    linear-gradient(180deg, #0f0d0d 0%, #171111 100%);
}

.cinema-frame,
.poster-frame,
.cast-ensemble {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 202, 80, 0.2);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: var(--shadow);
}

.cinema-frame::before,
.poster-frame::before,
.cast-ensemble::before,
.cast-card::before,
.date-cards article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 92px;
  height: 5px;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(242, 202, 80, 0.36);
}

.cinema-frame video,
.cinema-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.cinema-frame video {
  height: auto;
  max-height: min(52svh, 430px);
  background: #000;
}

.trailer-video-frame {
  width: min(100%, 760px);
  justify-self: center;
}

.trailer-video-frame::before {
  pointer-events: none;
}

.cinema-frame figcaption,
.cast-ensemble figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0));
  color: #fff5d7;
  font-weight: 900;
}

.story-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 202, 80, 0.14), transparent 30rem),
    linear-gradient(180deg, #120f0f 0%, #090808 100%);
}

.poster-frame img,
.poster-frame video {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(1.08) contrast(1.05);
}

.poster-frame video {
  height: min(760px, 78svh);
  object-fit: contain;
  background: #050505;
}

.details-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 116px) 0;
  background:
    linear-gradient(rgba(9, 7, 7, 0.86), rgba(9, 7, 7, 0.94)),
    url("assets/images/spectacular-header-wide.jpg") center / cover;
  isolation: isolate;
}

.details-panel::before {
  content: "";
  position: absolute;
  inset: -20% -20%;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(66deg, transparent 0 38%, rgba(255, 232, 149, 0.12) 46%, transparent 56%),
    radial-gradient(circle at 50% 0%, rgba(242, 202, 80, 0.18), transparent 30%);
  mix-blend-mode: screen;
}

.details-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.date-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.date-cards article,
.venue-card,
.group-card {
  position: relative;
  border: 1px solid rgba(242, 202, 80, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(34, 28, 24, 0.94), rgba(18, 16, 15, 0.94));
  box-shadow: var(--shadow);
}

.date-cards article {
  overflow: hidden;
  padding: clamp(22px, 4vw, 38px);
}

.date-cards span,
.cast-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.date-cards p,
.venue-card p,
.group-card p {
  color: var(--muted);
}

.venue-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 24px;
}

.cast-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 202, 80, 0.12), transparent 28rem),
    linear-gradient(180deg, #120f0f 0%, #090808 100%);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 36px;
}

.cast-ensemble {
  margin-bottom: 24px;
}

.cast-ensemble img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.08) contrast(1.05);
}

.cast-group {
  margin-bottom: 40px;
}

.cast-group:last-child {
  margin-bottom: 0;
}

.cast-group-eyebrow {
  margin-bottom: 16px;
}

.cast-carousel-wrap {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.cast-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 202, 80, 0.34);
  background: rgba(5, 5, 5, 0.82);
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.cast-arrow:hover {
  background: rgba(20, 10, 5, 0.96);
  border-color: rgba(242, 202, 80, 0.62);
}

.cast-arrow-prev { left: 8px; }
.cast-arrow-next { right: 8px; }

.cast-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}

.cast-grid-leads {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cast-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(242, 202, 80, 0.18);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.cast-card-featured {
  grid-column: span 1;
}

.cast-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.08) contrast(1.05);
  transition: transform 260ms ease;
}

.cast-card:hover,
.cast-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(242, 202, 80, 0.44);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(242, 202, 80, 0.18);
}

.cast-card:hover img {
  transform: scale(1.035);
}

.cast-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 236, 159, 0.2), transparent 32%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95), transparent 48%);
}

.cast-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  padding: 22px;
}

.cast-card span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: inline-flex;
  padding: 5px 8px;
  border: 1px solid rgba(242, 202, 80, 0.34);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.76);
}

.cast-card h3 {
  margin: 0;
  font-size: clamp(0.8rem, 1vw, 0.94rem);
  line-height: 1.3;
  color: #fff5de;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.cast-card {
  cursor: pointer;
}

.cast-card template {
  display: none;
}

.cast-dialog {
  position: fixed;
  inset: 0;
  z-index: 100;
  width: min(560px, calc(100% - 32px));
  max-height: min(84svh, 780px);
  margin: auto;
  padding: 0;
  overflow: hidden auto;
  border: 1px solid rgba(242, 202, 80, 0.3);
  border-radius: var(--radius);
  background: var(--surface, #15100f);
  box-shadow: var(--shadow), 0 0 60px rgba(242, 202, 80, 0.12);
  color: #fff5de;
}

.cast-dialog::backdrop {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(2px);
}

.cast-dialog-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 44px);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242, 202, 80, 0.34);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.82);
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.cast-dialog-close:hover {
  background: rgba(20, 10, 5, 0.96);
  border-color: rgba(242, 202, 80, 0.62);
}

.cast-dialog-media {
  margin-top: -36px;
}

.cast-dialog-media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.08) contrast(1.05);
  display: block;
}

.cast-dialog-body {
  padding: 24px 26px 30px;
}

.cast-dialog-body h3 {
  margin: 0 0 14px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--gold);
}

.cast-dialog-body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}

.cast-dialog-body p:last-child {
  margin-bottom: 0;
}

.group-section {
  padding: clamp(76px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 82% 10%, rgba(242, 202, 80, 0.14), transparent 28rem),
    linear-gradient(180deg, #0a0808 0%, #15100f 100%);
}

.group-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(26px, 5vw, 50px);
  overflow: hidden;
}

.group-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--red-bright), var(--gold));
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.cast-grid [data-reveal]:nth-child(2) {
  transition-delay: 80ms;
}

.cast-grid [data-reveal]:nth-child(3) {
  transition-delay: 160ms;
}

.cast-grid [data-reveal]:nth-child(4) {
  transition-delay: 240ms;
}

.cast-grid [data-reveal]:nth-child(5) {
  transition-delay: 320ms;
}

.site-footer {
  padding: 36px 0 max(36px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(242, 202, 80, 0.18);
  background: #050505;
  color: #cdbfaa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr auto;
  gap: 20px;
  align-items: center;
}

.site-footer strong {
  color: var(--gold-bright);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.site-footer p {
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

@keyframes spotlight-sweep {
  0% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
    opacity: 0.66;
  }

  100% {
    transform: translate3d(5%, 0, 0) rotate(1deg);
    opacity: 0.95;
  }
}

@media (max-width: 1040px) {
  .cast-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 14px;
    padding-bottom: 4px;
  }
  .cast-grid::-webkit-scrollbar {
    display: none;
  }
  .cast-card {
    flex: 0 0 248px;
    min-height: 380px;
    scroll-snap-align: start;
  }
  .cast-card img {
    min-height: 380px;
  }
  .cast-card h3 {
    font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  }
  .cast-arrow {
    display: flex;
  }
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 39;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gutter) 24px;
    background: linear-gradient(180deg, rgba(12, 9, 10, 0.99), rgba(24, 9, 10, 0.99));
    border-top: 1px solid var(--line);
    overflow-y: auto;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms ease, opacity 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 54px;
    border-bottom: 1px solid rgba(242, 202, 80, 0.14);
  }

  .hero {
    min-height: max(700px, 88svh);
  }

  .hero-media img,
  .hero-media video {
    object-position: center top;
  }

  .event-strip,
  .marquee-grid,
  .split,
  .story-layout,
  .date-cards,
  .group-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .marquee-grid > * {
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 242, 0.12);
  }

  .marquee-grid > :first-child {
    border-top: 0;
  }

  .venue-card,
  .group-actions,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .cast-ensemble img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 68px;
    --gutter: clamp(16px, 5vw, 22px);
  }

  .site-header {
    gap: 10px;
    padding-block: 8px;
  }

  .brand-logo {
    width: 146px;
    max-height: 48px;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    place-items: center;
    min-height: max(660px, 88svh);
    padding-top: calc(var(--header-h) + max(18px, env(safe-area-inset-top)));
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.6rem, 12.5vw, 4.5rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .event-strip div {
    padding: 13px;
  }

  .scroll-cue {
    display: none;
  }

  .cast-card {
    flex: 0 0 min(76vw, 300px);
    min-height: 390px;
  }
  .cast-card img {
    min-height: 390px;
  }
  .cast-arrow {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand-logo {
    width: 128px;
  }

  .button {
    letter-spacing: 0.04em;
    padding-inline: 16px;
  }

  .hero-copy {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

[data-group-email] {
  text-transform: none;
  letter-spacing: 0;
}
