:root {
  --bg: #050604;
  --bg-2: #0a0a08;
  --surface: rgba(247, 236, 217, 0.035);
  --surface-strong: rgba(247, 236, 217, 0.065);
  --ink: #f3eadc;
  --muted: #baaE9c;
  --muted-2: #8f8373;
  --line: rgba(243, 234, 220, 0.13);
  --line-strong: rgba(244, 176, 22, 0.38);
  --yellow: #f4b016;
  --yellow-2: #ffcf48;
  --wine: #6d2520;
  --green: #54674a;
  --shadow: rgba(0, 0, 0, 0.72);
  --page: 82.5rem;
  --radius: 0.18rem;
  --condensed: "Barlow Condensed", sans-serif;
  --body: "Inter", sans-serif;
  --marker: "Permanent Marker", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 28% 0%, rgba(109, 37, 32, 0.16), transparent 30rem),
    linear-gradient(180deg, #020302 0%, var(--bg) 46%, #070806 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(243, 234, 220, 0.06);
  background: rgba(5, 6, 5, 0.74);
  backdrop-filter: blur(14px);
}

.brand {
  position: relative;
  display: block;
  width: clamp(7.8rem, 15vw, 13.8rem);
  color: var(--ink);
  font-family: var(--condensed);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.brand-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.26rem 0 rgba(0, 0, 0, 0.36));
}

.brand-main {
  grid-column: 1 / -1;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  letter-spacing: 0;
  -webkit-text-stroke: 1px rgba(5, 6, 5, 0.8);
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.45);
}

.brand-chip {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin-top: 0.15rem;
  border-radius: 50%;
  background: var(--yellow);
  color: #181006;
  font-size: 1.05rem;
}

.brand-sub {
  color: var(--yellow);
  font-size: clamp(2.15rem, 6vw, 4.45rem);
}

.nav {
  display: none;
}

.nav a {
  position: relative;
  padding: 0.45rem 0;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08rem;
  height: 0.17rem;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav .live-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.46rem 0.75rem;
  border: 1px solid rgba(244, 176, 22, 0.46);
  background: rgba(244, 176, 22, 0.1);
  color: var(--yellow-2);
  animation: livePulse 1.7s ease-in-out infinite;
}

.nav .live-link::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(244, 176, 22, 0.78);
  content: "";
}

.nav .live-link::after {
  display: none;
}

.nav .live-link-current {
  background: var(--yellow);
  color: #120d05;
}

.nav-toggle {
  position: relative;
  z-index: 22;
  display: grid;
  gap: 0.32rem;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(5, 6, 5, 0.78);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 1.28rem;
  height: 0.13rem;
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  padding: 7.25rem max(clamp(1rem, 5vw, 4rem), calc((100vw - var(--page)) / 2 + 1rem)) 4rem;
  overflow: hidden;
}

.hero picture,
.hero picture::after,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero picture::after {
  display: block;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.96) 0%, rgba(5, 6, 5, 0.8) 34%, rgba(5, 6, 5, 0.12) 72%),
    linear-gradient(0deg, var(--bg) 0%, transparent 36%);
  content: "";
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.05) contrast(1.08);
}

.hero-scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(42rem, 100%);
}

.eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 0.9rem;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::after {
  position: absolute;
  left: 0;
  right: -1rem;
  bottom: -0.22rem;
  height: 0.2rem;
  background: var(--yellow);
  content: "";
  transform: rotate(-2deg);
}

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

h1,
h2,
h3 {
  font-family: var(--condensed);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 14vw, 9.4rem);
  text-shadow: 0.04em 0.04em 0 rgba(0, 0, 0, 0.38);
}

h1 span,
.show-heading h2 span {
  color: var(--yellow);
  font-family: var(--marker);
  font-weight: 400;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 34rem;
  margin-bottom: 1.35rem;
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 1.24rem);
}

.hero-actions,
.hero-facts,
.source-links,
.footer-links,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  padding: 0.76rem 1.18rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--condensed);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 160ms cubic-bezier(0.22, 1, 0.36, 1), background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.media-item:hover,
.media-item:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #150f06;
  box-shadow: 0 0.55rem 1.35rem rgba(244, 176, 22, 0.16);
}

.btn-secondary,
.btn-ghost {
  border-color: rgba(243, 234, 220, 0.34);
  background: rgba(5, 6, 5, 0.26);
  color: var(--ink);
}

.btn-live {
  display: none;
  border-color: var(--yellow);
  background: rgba(244, 176, 22, 0.12);
  color: var(--yellow-2);
}

.show-night .btn-live {
  display: inline-flex;
  animation: livePulse 1.6s ease-in-out infinite;
}

.hero-facts {
  margin-top: 1.5rem;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.06rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.show-strip,
.split-section,
.first-time,
.history,
.band,
.gallery,
.voices,
.audience-wall,
.footer {
  padding: clamp(3.8rem, 7vw, 6.5rem) max(clamp(1rem, 5vw, 4rem), calc((100vw - var(--page)) / 2 + 1rem));
}

.show-night-bar {
  position: fixed;
  left: clamp(1rem, 5vw, 4rem);
  right: clamp(1rem, 5vw, 4rem);
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 30;
  display: none;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(244, 176, 22, 0.46);
  border-radius: var(--radius);
  background: rgba(5, 6, 5, 0.94);
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.46);
}

.show-night .show-night-bar {
  display: flex;
}

.show-night-bar strong,
.show-night-bar a {
  color: var(--yellow);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.show-night-bar span {
  color: var(--ink);
}

.show-night-bar a {
  margin-left: auto;
  white-space: nowrap;
}

.tonight-card {
  display: none;
  max-width: 28rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(244, 176, 22, 0.42);
  border-radius: var(--radius);
  background: rgba(5, 6, 5, 0.66);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.28);
}

.show-night .tonight-card {
  display: grid;
  gap: 0.65rem;
  animation: cardRise 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tonight-card strong {
  font-family: var(--condensed);
  font-size: 1.8rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.tonight-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.live-pin {
  width: max-content;
  color: var(--yellow);
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-rule {
  grid-column: 1 / -1;
  height: 1px;
  margin-bottom: clamp(1.75rem, 4vw, 3.25rem);
  background: linear-gradient(90deg, var(--line-strong), rgba(243, 234, 220, 0.04), transparent);
}

.show-strip {
  display: grid;
  gap: 1.75rem clamp(2rem, 6vw, 6rem);
  background: var(--bg);
}

.show-heading h2,
.section-intro h2,
.gallery h2,
.copy-block h2 {
  max-width: 13ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.9rem, 7.6vw, 6rem);
}

.show-heading p,
.copy-block p,
.ticket-panel,
.steps p {
  color: var(--muted);
}

.show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.ticket-panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(244, 176, 22, 0.08), transparent 42%),
    var(--surface);
}

.ticket-flow {
  display: grid;
  gap: 0.85rem;
}

.show-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.show-details div {
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.14);
}

.show-details span {
  display: block;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.show-details strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: none;
}

.ticket-flow article {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.14);
}

.ticket-flow span,
.audience-grid span {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.25rem;
  font-weight: 900;
}

.ticket-flow h3 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
}

.ticket-flow p {
  margin: 0;
}

.ticket-panel strong {
  display: block;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.ticket-kicker {
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.split-section {
  display: grid;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  background: linear-gradient(180deg, #080806, #030403);
}

.copy-block {
  max-width: 46rem;
}

.steps {
  display: grid;
  gap: 0.75rem;
}

.steps article {
  min-height: 12rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.steps span {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.5rem;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 5vw, 2.55rem);
}

.first-time {
  background:
    linear-gradient(135deg, rgba(244, 176, 22, 0.06), transparent 38%),
    #050604;
}

.first-time-grid {
  display: grid;
  gap: 0.75rem;
}

.first-time details,
.cast-more {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.14);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.first-time details[open],
.cast-more[open] {
  border-color: rgba(244, 176, 22, 0.34);
  background: rgba(244, 176, 22, 0.055);
}

.first-time summary,
.cast-more summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.first-time summary::-webkit-details-marker,
.cast-more summary::-webkit-details-marker {
  display: none;
}

.first-time summary::after,
.cast-more summary::after {
  float: right;
  color: var(--yellow);
  content: "+";
}

.first-time details[open] summary::after,
.cast-more[open] summary::after {
  content: "−";
}

.first-time details p,
.cast-more p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.history {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(84, 103, 74, 0.1), transparent 50%),
    var(--bg-2);
}

.history-image {
  position: relative;
}

.history-image::before,
.media-item::before {
  position: absolute;
  inset: -0.32rem;
  border: 1px solid rgba(244, 176, 22, 0.28);
  content: "";
  transform: rotate(-0.8deg);
  pointer-events: none;
}

.history-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
}

.source-links {
  margin-top: 1.5rem;
}

.source-links a {
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--yellow);
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
}

.band {
  background: #040504;
}

.section-intro {
  margin-bottom: 2rem;
}

.cast-grid {
  display: grid;
  gap: 0.75rem;
}

.cast-grid article {
  min-height: 14rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(244, 176, 22, 0.065), transparent 42%),
    var(--surface);
}

.cast-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
  border: 1px solid rgba(244, 176, 22, 0.18);
  border-radius: calc(var(--radius) * 0.8);
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.08);
}

.cast-grid span {
  display: block;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cast-grid strong {
  display: block;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.cast-grid p {
  margin: 0.75rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.cast-grid em {
  display: inline-block;
  color: var(--yellow-2);
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.cast-more {
  margin-top: 0.9rem;
}

.cast-more summary {
  padding: 0.7rem 0.8rem;
  font-size: 1rem;
}

.cast-more p {
  padding: 0 0.8rem 0.8rem;
  font-size: 0.88rem;
}

.gallery {
  background: linear-gradient(180deg, #070806, #020302);
}

.gallery-head {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.65rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

.filter-tabs button {
  min-width: 4.9rem;
  min-height: 2.8rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.filter-tabs button.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #100d07;
}

.masonry {
  display: grid;
  grid-auto-flow: dense;
  gap: 0.75rem;
}

.media-item {
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #111;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease, box-shadow 180ms ease;
}

.media-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.72));
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.suggestion-card {
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: default;
  text-align: left;
}

.suggestion-card::after {
  display: none;
}

.suggestion-card small {
  position: relative;
  z-index: 1;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.suggestion-card strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(1.65rem, 4.4vw, 2.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.suggestion-card span:not(.play) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1.1rem;
  text-shadow: none;
}

.suggestion-card:hover,
.suggestion-card:focus-visible {
  transform: none;
}

.media-item[hidden] {
  display: none;
}

.media-item img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.12) brightness(0.78);
  transition: transform 260ms ease, filter 260ms ease;
}

.media-item:hover img,
.media-item:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.14) brightness(0.95);
}

.media-item:hover,
.media-item:focus-visible {
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.26);
}

.media-item span:not(.play) {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.9rem;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  text-align: left;
  text-shadow: 0 2px 12px #000;
  text-transform: uppercase;
  z-index: 1;
}

.play {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  background: rgba(5, 6, 5, 0.72);
  color: var(--yellow);
  z-index: 1;
}

.suggestion-card span:not(.play) {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1.1rem;
  text-shadow: none;
}

.footer {
  display: grid;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #020302;
}

.voices {
  background:
    linear-gradient(135deg, rgba(84, 103, 74, 0.1), transparent 44%),
    #070806;
}

.voice-grid {
  display: grid;
  gap: 0.75rem;
}

.voice-grid figure {
  margin: 0;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.voice-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.voice-grid figcaption {
  margin-top: 1rem;
  color: var(--yellow);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.audience-wall {
  background:
    linear-gradient(120deg, rgba(109, 37, 32, 0.16), transparent 44%),
    #050605;
}

.audience-wall .section-intro p {
  max-width: 44rem;
  color: var(--muted);
}

.audience-grid {
  display: grid;
  gap: 0.75rem;
}

.audience-grid article {
  min-height: 11rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(244, 176, 22, 0.055), transparent 50%),
    var(--surface);
}

.audience-grid strong {
  display: block;
  margin: 0.6rem 0;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.audience-grid p {
  color: var(--muted);
}

.footer-logo {
  width: 7rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow);
}

.socials a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: #100d07;
  font-family: var(--condensed);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.9);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 76vh;
  width: min(70rem, 100%);
  object-fit: contain;
  border: 1px solid var(--line-strong);
}

.lightbox figure {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin: 0;
}

.lightbox figcaption {
  display: grid;
  gap: 0.35rem;
  width: min(70rem, 100%);
  color: var(--muted);
}

.lightbox figcaption strong {
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  font-size: 2rem;
}

.lightbox-nav {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 6, 5, 0.82);
  color: var(--yellow);
  cursor: pointer;
  font-size: 2.1rem;
}

.reveal {
  opacity: 1;
  transform: translateY(1.25rem);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.live-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 85% 12%, rgba(244, 176, 22, 0.1), transparent 18rem),
    linear-gradient(180deg, #030403 0%, #080806 46%, #020302 100%);
}

.live-header {
  background: linear-gradient(180deg, rgba(5, 6, 5, 0.98), rgba(5, 6, 5, 0.4));
}

.live-shell {
  display: grid;
  gap: 1rem;
  width: min(68rem, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 7rem clamp(1rem, 4vw, 2rem) max(2rem, env(safe-area-inset-bottom));
}

.live-card {
  position: relative;
  display: grid;
  gap: 0.9rem;
  align-self: start;
  padding: clamp(1rem, 5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(244, 176, 22, 0.075), transparent 34%),
    var(--surface);
  box-shadow: 0 1.25rem 3.2rem rgba(0, 0, 0, 0.28);
}

.live-card::before {
  position: absolute;
  inset: -0.18rem;
  z-index: -1;
  border: 1px solid rgba(244, 176, 22, 0.24);
  content: "";
  transform: rotate(-0.35deg);
}

.live-card h1 {
  max-width: 8.8ch;
  margin-bottom: 0.2rem;
  font-size: clamp(3.4rem, 15vw, 7.3rem);
}

.live-intro {
  color: var(--muted);
  font-size: 1rem;
}

.live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.live-meta span {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.live-meta #live-timer {
  border-color: var(--yellow);
  color: var(--yellow);
}

.live-status {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 0.55rem;
  padding: 0.42rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--muted);
}

.live-status[data-state="live"] {
  border-color: rgba(244, 176, 22, 0.7);
  color: var(--yellow-2);
}

.live-status[data-state="live"] .status-dot {
  background: var(--yellow);
  animation: liveDot 1.25s ease-in-out infinite;
}

.live-status[data-state="closed"] .status-dot {
  background: #6f6a5f;
}

.live-lock,
.live-confirmation {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(244, 176, 22, 0.5);
  border-radius: var(--radius);
  background: rgba(244, 176, 22, 0.065);
}

.qr-stage {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(244, 176, 22, 0.48);
  border-radius: var(--radius);
  background: rgba(244, 176, 22, 0.065);
}

.qr-stage[hidden] {
  display: none;
}

.qr-image {
  width: 12rem;
  min-width: 12rem;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 0.6rem;
  background: var(--ink);
}

.qr-stage strong {
  display: block;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.qr-stage p {
  margin: 0.75rem 0 0;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.2rem;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.live-lock[hidden],
.live-confirmation[hidden] {
  display: none;
}

.live-lock strong,
.live-confirmation strong {
  font-family: var(--condensed);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.live-lock span {
  color: var(--muted);
}

.game-picker {
  display: flex;
  gap: 0.48rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.game-picker::-webkit-scrollbar {
  display: none;
}

.game-picker a {
  flex: 0 0 auto;
  min-height: 2.75rem;
  padding: 0.62rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.game-picker a.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #120d05;
}

.live-form {
  display: grid;
  gap: 1rem;
}

.live-form[hidden] {
  display: none;
}

.form-heading {
  padding-top: 0.4rem;
  border-top: 1px solid var(--line);
}

.form-heading span {
  color: var(--yellow);
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0.25rem 0 0.55rem;
  font-size: clamp(2.1rem, 9vw, 4.35rem);
}

.form-heading p {
  color: var(--muted);
}

.dynamic-fields {
  display: grid;
  gap: 0.9rem;
}

.live-field {
  display: grid;
  gap: 0.45rem;
}

.live-field span,
.consent-row {
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-field input,
.live-field textarea {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(243, 234, 220, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.3);
  color: var(--ink);
  font: 700 1.05rem var(--body);
  outline: none;
}

.live-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.live-field input:focus,
.live-field textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(244, 176, 22, 0.16);
}

.live-field input::placeholder,
.live-field textarea::placeholder {
  color: rgba(243, 234, 220, 0.38);
}

.live-field small {
  justify-self: end;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.1;
}

.consent-row input {
  width: 1.35rem;
  height: 1.35rem;
  accent-color: var(--yellow);
}

.live-submit {
  width: 100%;
  min-height: 3.7rem;
}

.live-confirmation {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 65;
  background: var(--yellow);
  color: #120d05;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5);
}

.live-confirmation.pop {
  animation: confirmPop 420ms ease-out;
}

.live-active .live-shell {
  min-height: auto;
}

.live-active .live-card > .eyebrow,
.live-active .live-card > h1,
.live-active .live-intro {
  display: none;
}

.live-active .live-card {
  gap: 0.65rem;
}

.live-active .live-status {
  padding: 0.36rem 0.58rem;
  font-size: 1rem;
}

.live-active .live-meta {
  gap: 0.42rem;
}

.live-active .live-meta span {
  padding: 0.35rem 0.52rem;
  font-size: 0.98rem;
}

.live-locked .live-meta {
  display: none;
}

.live-active .form-heading {
  padding-top: 0.7rem;
}

.live-active .form-heading h2 {
  font-size: clamp(2rem, 8.2vw, 3.7rem);
}

.live-active .form-heading p {
  margin-bottom: 0;
}

.live-confirmation span {
  font-family: var(--marker);
  font-size: 1.45rem;
}

.live-side {
  display: grid;
  gap: 0.75rem;
  align-self: start;
}

.live-side div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.side-number {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--yellow);
  font-family: var(--condensed);
  font-size: 1.4rem;
  font-weight: 900;
}

.live-side p {
  margin: 0;
  color: var(--muted);
}

.host-mode .live-card,
.host-mode .live-side {
  display: none;
}

.host-mode .live-shell {
  width: min(86rem, 100%);
  grid-template-columns: 1fr;
}

.host-console {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 4vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(244, 176, 22, 0.08), transparent 36%),
    var(--surface);
}

.host-console[hidden] {
  display: none;
}

.host-head {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.host-head h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 9vw, 6.5rem);
}

.host-tools,
.host-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.host-tools button {
  min-height: 2.8rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
}

.host-tools button.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #120d05;
}

.host-summary {
  display: grid;
  gap: 0.75rem;
}

.host-summary article,
.submission-group,
.submission-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.14);
}

.host-summary article {
  padding: 1rem;
}

.host-summary span,
.submission-group > span {
  display: block;
  color: var(--yellow);
  font-family: var(--condensed);
  font-weight: 900;
  text-transform: uppercase;
}

.host-summary strong,
.host-summary a {
  display: block;
  margin-top: 0.25rem;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.submission-board {
  display: grid;
  gap: 0.75rem;
}

.submission-group {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.submission-list {
  display: grid;
  gap: 0.6rem;
}

.submission-card {
  padding: 0.85rem;
}

.submission-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.submission-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.submission-empty {
  padding: 1rem;
  border: 1px dashed var(--line);
  color: var(--muted);
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(244, 176, 22, 0);
  }
  50% {
    box-shadow: 0 0 1.4rem 0 rgba(244, 176, 22, 0.38);
  }
}

@keyframes liveDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(244, 176, 22, 0.82);
  }
  50% {
    box-shadow: 0 0 0 0.5rem rgba(244, 176, 22, 0);
  }
}

@keyframes confirmPop {
  0% {
    opacity: 0;
    transform: translateY(1rem) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardRise {
  0% {
    opacity: 0;
    transform: translateY(0.8rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .site-header {
    padding: 0.65rem 0.9rem;
  }

  .brand {
    width: 7.35rem;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: none;
    place-content: center;
    gap: 1rem;
    background: rgba(5, 6, 5, 0.96);
    text-align: center;
  }

  body.nav-open .nav {
    display: grid;
  }

  .nav a {
    font-size: 2rem;
  }

  .nav .live-link {
    justify-self: center;
    padding: 0.6rem 1rem;
  }

  .show-night-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .show-night-bar a {
    margin-left: 0;
  }

  .show-details {
    grid-template-columns: 1fr;
  }

  .show-actions .btn {
    width: 100%;
  }

  .lightbox {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .lightbox-nav {
    position: fixed;
    top: 50%;
    z-index: 61;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }

  .live-active .site-header {
    padding: 0.5rem 0.9rem;
  }

  .live-active .brand {
    width: 6.85rem;
  }

  .live-active .nav-toggle {
    width: 2.65rem;
    min-width: 2.65rem;
    height: 2.65rem;
  }

  .live-active .live-shell {
    padding: 4.9rem 0.75rem max(1.2rem, env(safe-area-inset-bottom));
  }

  .live-active .live-card {
    padding: 0.85rem;
  }

  .live-active .live-status,
  .live-active .live-meta {
    width: 100%;
  }

  .live-active .live-meta span:first-child {
    flex: 1 1 auto;
  }

  .live-active .game-picker {
    display: none;
  }

  .live-active .form-heading h2 {
    margin-bottom: 0.3rem;
    font-size: clamp(1.85rem, 7.6vw, 2.75rem);
  }

  .live-active .form-heading p {
    font-size: 0.98rem;
    line-height: 1.4;
  }

  .live-active .live-field span,
  .live-active .consent-row {
    font-size: 1.05rem;
  }

  .live-active .live-field input,
  .live-active .live-field textarea {
    min-height: 3rem;
    padding: 0.78rem 0.85rem;
  }

  .live-active .live-field textarea {
    min-height: 6.4rem;
  }

  .live-active .live-side {
    display: none;
  }
}

@media (min-width: 700px) {
  .steps,
  .cast-grid,
  .first-time-grid,
  .voice-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .live-side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .qr-stage {
    grid-template-columns: auto 1fr;
  }

  .host-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .media-item.wide {
    grid-column: span 2;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    gap: clamp(1.2rem, 3vw, 2.6rem);
    align-items: center;
  }

  h1 {
    max-width: 9.4ch;
    font-size: clamp(5.2rem, 8.8vw, 7.8rem);
  }

  .show-strip,
  .history,
  .split-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  }

  .ticket-panel {
    align-self: end;
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .gallery-head,
  .footer {
    grid-template-columns: 1fr auto;
  }

  .filter-tabs {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }

  .footer {
    grid-template-columns: 0.8fr 1.4fr auto;
  }

  .live-shell {
    grid-template-columns: minmax(22rem, 0.95fr) minmax(16rem, 0.55fr);
    align-items: start;
    padding-top: 8.5rem;
  }

  .live-side {
    position: sticky;
    top: 7rem;
    grid-template-columns: 1fr;
  }

  .qr-mode .live-shell {
    width: min(86rem, 100%);
    grid-template-columns: 1fr;
  }

  .qr-mode .live-side {
    display: none;
  }

  .qr-mode .live-card {
    min-height: calc(100svh - 11rem);
  }

  .host-head {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 1100px) {
  .hero {
    align-items: center;
    padding-bottom: 5rem;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .voice-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .masonry {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .media-item {
    min-height: 18rem;
  }

  .media-item.tall {
    grid-row: span 2;
  }

  .media-item.wide {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
