:root {
  color-scheme: dark;
  --black: #030303;
  --panel: #101010;
  --panel-soft: #17130d;
  --gold: #d8a51e;
  --gold-bright: #f6cf57;
  --cream: #f4efe4;
  --muted: #c8bda8;
  --line: rgba(246, 207, 87, 0.34);
  --cyan: #32c8ff;
  --pink: #e547cf;
  --shadow: rgba(0, 0, 0, 0.55);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(110deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.72)),
    var(--black);
  color: var(--cream);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(216, 165, 30, 0.13) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 82% 28%, rgba(246, 207, 87, 0.18), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(229, 71, 207, 0.16), transparent 24%),
    radial-gradient(circle at 72% 84%, rgba(50, 200, 255, 0.15), transparent 22%);
  background-size: 84px 100%, auto, auto, auto;
  mix-blend-mode: screen;
  opacity: 0.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(3, 3, 3, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  width: fit-content;
  color: var(--cream);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  text-transform: uppercase;
}

.brand-mark {
  color: var(--gold-bright);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav a:hover,
footer a:hover {
  color: var(--gold-bright);
}

.header-ticket {
  justify-self: end;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 80px) 0;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.card-kicker {
  margin: 0 0 10px;
  color: var(--gold-bright);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(5rem, 13vw, 10.5rem);
  line-height: 0.72;
  text-transform: uppercase;
  text-shadow: 0 12px 28px var(--shadow);
}

h1 span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  text-transform: none;
  transform: translateY(0.08em);
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.6;
}

.tagline {
  max-width: 560px;
  color: var(--cream);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions,
.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.primary-action {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #120c02;
  box-shadow: 0 0 28px rgba(216, 165, 30, 0.33);
}

.secondary-action {
  border-color: rgba(244, 239, 228, 0.36);
  color: var(--cream);
}

.primary-action:hover,
.secondary-action:hover,
.header-ticket:hover {
  transform: translateY(-1px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(116px, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 18px 45px var(--shadow);
}

.hero-facts div {
  min-height: 96px;
  padding: 18px;
  background: rgba(11, 11, 11, 0.86);
}

dt {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 8px 0 0;
  color: var(--gold-bright);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.poster-wrap {
  position: relative;
  margin: 0;
  border: 1px solid rgba(246, 207, 87, 0.36);
  background: #0b0b0b;
  box-shadow:
    0 0 0 8px rgba(216, 165, 30, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.76);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.58);
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.lineup-showcase {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(246, 207, 87, 0.36);
  background: rgba(7, 7, 7, 0.92);
  box-shadow:
    0 0 0 8px rgba(216, 165, 30, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.7);
}

.lineup-poster {
  margin: 0;
}

.lineup-poster img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ticket-band,
.split-section,
.menu-preview,
.details,
.venue {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 90px) 0;
}

.ticket-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticket-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

.split-section,
.venue {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: start;
}

.lineup-grid,
.menu-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lineup-media {
  display: grid;
  gap: 16px;
}

.lineup-copy p {
  max-width: 640px;
  margin-bottom: 14px;
}

.lineup-copy p:last-child {
  color: var(--gold-bright);
  font-weight: 900;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(246, 207, 87, 0.28);
  background: #070707;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.36);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performer-photo {
  aspect-ratio: 4 / 3;
}

.performer-photo img {
  object-position: center top;
}

.lineup-card,
.menu-card,
.detail-grid article,
.countdown {
  min-height: 220px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(246, 207, 87, 0.26);
  background:
    linear-gradient(145deg, rgba(246, 207, 87, 0.14), transparent 32%),
    rgba(13, 13, 13, 0.9);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

.lineup-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(229, 71, 207, 0.18), transparent 34%),
    linear-gradient(320deg, rgba(50, 200, 255, 0.14), transparent 40%),
    rgba(13, 13, 13, 0.9);
}

.lineup-card h3 {
  color: var(--gold-bright);
  font-size: clamp(2.8rem, 6vw, 5rem);
}

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

.lineup-grid-three .lineup-card h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.menu-preview {
  border-top: 1px solid var(--line);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(250px, 0.6fr);
  gap: clamp(20px, 5vw, 60px);
  align-items: end;
  margin-bottom: 24px;
}

.section-intro p:last-child {
  max-width: 420px;
}

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

.menu-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.menu-card .photo-frame {
  aspect-ratio: 4 / 5;
  border-width: 0 0 1px;
  box-shadow: none;
}

.menu-card > div {
  padding: 22px;
}

.menu-card h3 {
  color: var(--cream);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.details {
  border-top: 1px solid rgba(244, 239, 228, 0.14);
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.detail-grid article {
  min-height: 245px;
}

.detail-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 1.55rem;
}

.venue {
  align-items: center;
  border-top: 1px solid var(--line);
}

.venue-copy p {
  max-width: 540px;
}

.industry-wordmark {
  display: block;
  max-width: min(100%, 690px);
  margin-bottom: 18px;
}

.industry-sign-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.45));
}

.countdown {
  min-height: 260px;
  border-color: rgba(50, 200, 255, 0.42);
  box-shadow:
    0 0 30px rgba(50, 200, 255, 0.12),
    0 0 48px rgba(229, 71, 207, 0.1);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.countdown-grid span {
  display: grid;
  gap: 8px;
  min-height: 112px;
  place-items: center;
  border: 1px solid rgba(244, 239, 228, 0.18);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-grid strong {
  color: var(--gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 0.9;
}

footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(244, 239, 228, 0.14);
  background: #020202;
}

footer p,
footer a {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.system-page {
  background:
    linear-gradient(115deg, rgba(3, 3, 3, 0.97), rgba(3, 3, 3, 0.84)),
    var(--black);
}

.system-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 82px) 0;
}

.system-hero {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.system-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.82;
}

.system-hero p {
  max-width: 650px;
  font-weight: 800;
}

.ticket-option-grid,
.order-builder,
.ops-two-col,
.ops-stat-grid {
  display: grid;
  gap: 18px;
}

.ticket-option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.ticket-option,
.order-builder,
.order-panel,
.ops-section,
.qr-ticket,
.checkin-form,
.availability-card,
.ops-stat-grid article {
  border: 1px solid rgba(246, 207, 87, 0.28);
  background:
    linear-gradient(145deg, rgba(246, 207, 87, 0.12), transparent 34%),
    rgba(11, 11, 11, 0.9);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

.ticket-option {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
}

.ticket-option.is-selected {
  border-color: var(--gold-bright);
  box-shadow:
    0 0 0 1px rgba(246, 207, 87, 0.28),
    0 0 38px rgba(246, 207, 87, 0.2);
}

.ticket-option h2,
.order-panel h2,
.ops-section h2,
.qr-ticket h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.ticket-option ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--cream);
  font-family: Arial, sans-serif;
  font-weight: 900;
  list-style: none;
}

.ticket-option li::before {
  content: "+";
  margin-right: 9px;
  color: var(--gold-bright);
}

.micro-note,
.system-alert {
  color: var(--muted);
  font-size: 0.9rem;
}

.system-alert,
.warning-panel {
  border-color: rgba(229, 71, 207, 0.58);
}

.success-panel {
  border-color: rgba(50, 200, 255, 0.58);
}

.order-builder {
  grid-template-columns: minmax(250px, 0.45fr) minmax(0, 1fr);
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 22px;
}

.availability-card {
  display: grid;
  gap: 6px;
  width: min(190px, 100%);
  margin-top: 22px;
  padding: 18px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.availability-card strong {
  color: var(--gold-bright);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.ticket-form,
.form-grid {
  display: grid;
  gap: 16px;
}

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

label,
.form-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field-help {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

.meal-selection-list {
  display: grid;
  gap: 12px;
}

.meal-choice-row {
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(244, 239, 228, 0.14);
  background: rgba(2, 2, 2, 0.34);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 228, 0.24);
  border-radius: 0;
  background: rgba(2, 2, 2, 0.76);
  color: var(--cream);
  font: 1rem Arial, sans-serif;
  padding: 14px 13px;
}

textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.form-submit-row,
.flow-actions,
.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.form-submit-row strong {
  color: var(--gold-bright);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-panel {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.ticket-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(246, 207, 87, 0.28);
  background: rgba(246, 207, 87, 0.24);
}

.ticket-meta div {
  min-height: 84px;
  padding: 16px;
  background: rgba(5, 5, 5, 0.92);
}

.ticket-meta dd {
  color: var(--cream);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  text-transform: none;
}

.qr-ticket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.qr-ticket figure {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin: 0;
  padding: 16px;
  background: var(--cream);
  color: #080808;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.ops-section {
  margin-bottom: 22px;
  padding: clamp(20px, 3vw, 30px);
}

.ops-two-col {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
}

.ops-stat-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 26px;
}

.ops-stat-grid article {
  min-height: 110px;
  padding: 18px;
}

.ops-stat-grid span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-stat-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.9;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--cream);
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(244, 239, 228, 0.13);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

td button {
  margin: 0 6px 6px 0;
  border: 1px solid rgba(246, 207, 87, 0.42);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 10px;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(50, 200, 255, 0.34);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.checkin-shell {
  max-width: 760px;
}

.checkin-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  padding: clamp(20px, 4vw, 28px);
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero,
  .split-section,
  .section-intro,
  .venue,
  .ticket-option-grid,
  .order-builder,
  .ops-two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .poster-wrap {
    max-width: 520px;
  }

  .lineup-showcase {
    width: 100%;
  }

  .hero-facts,
  .menu-grid,
  .detail-grid,
  .ops-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-band {
    align-items: stretch;
    flex-direction: column;
  }

  .ticket-band .primary-action {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 13px 16px;
  }

  .header-ticket {
    padding: 9px 11px;
  }

  .hero,
  .ticket-band,
  .split-section,
  .menu-preview,
  .details,
  .venue,
  .system-shell {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(4.1rem, 26vw, 7rem);
  }

  .hero-actions,
  .venue-actions {
    flex-direction: column;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .hero-facts,
  .lineup-grid,
  .menu-grid,
  .detail-grid,
  .countdown-grid,
  .form-grid,
  .ticket-meta,
  .qr-ticket,
  .checkin-form,
  .ops-stat-grid,
  .meal-choice-row {
    grid-template-columns: 1fr;
  }

  .lineup-grid-three {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-height: 84px;
  }

  .lineup-card,
  .menu-card,
  .detail-grid article,
  .countdown {
    min-height: 0;
  }

  .performer-photo {
    aspect-ratio: 4 / 5;
  }

  footer {
    flex-direction: column;
  }
}
