/* ===========================
   Good Vibez Live — styles
   Sunset / festival warmth
   =========================== */

:root {
  /* Palette pulled from the Irvine poster:
     navy #1A2D4D · coral #E8612E · yellow #F7C842 · sky #76C5E5 · cream #F4E5C9 · green #4A8F3C · mushroom-red #D8412C */
  --bg-deep: #0F1A2E;
  --bg-night: #1A2D4D;
  --bg-night-2: #243B5F;
  --ink: #F4E5C9;
  --ink-dim: rgba(244, 229, 201, 0.78);
  --ink-faint: rgba(244, 229, 201, 0.5);

  --coral: #E8612E;
  --magenta: #D8412C; /* poster's mushroom red — replaces magenta */
  --gold: #F7C842;
  --plum: #4A8F3C;    /* poster's green — replaces plum (used as a deep accent) */
  --sky: #76C5E5;

  --grad-sunset: linear-gradient(135deg, #F7C842 0%, #E8612E 50%, #D8412C 100%);
  --grad-sunset-soft: linear-gradient(135deg, rgba(247,200,66,0.18), rgba(232,97,46,0.22), rgba(216,65,44,0.20));
  --grad-night: linear-gradient(180deg, #1A2D4D 0%, #243B5F 100%);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --shadow-glow: 0 10px 40px rgba(232, 97, 46, 0.4);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 400;
  background: var(--bg-night);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.link {
  color: var(--gold);
  border-bottom: 1px dashed rgba(247,200,66,0.5);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.link:hover { color: var(--coral); border-color: var(--coral); }

.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;
}

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

/* =========== Loader =========== */
.loader {
  position: fixed; inset: 0;
  background: var(--bg-deep);
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-pulse { text-align: center; padding: 0 24px; }
.loader-pulse span {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: 0.08em;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}
.loader-bar {
  width: min(280px, 60vw); height: 3px;
  background: rgba(255,255,255,0.08); border-radius: 99px;
  margin: 0 auto; overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: var(--grad-sunset);
  animation: loadBar 1.6s var(--ease) forwards;
}
@keyframes loadBar { 0% { width: 0%; } 60% { width: 75%; } 100% { width: 100%; } }
.loader-pulse p {
  margin-top: 14px; color: var(--ink-faint); font-size: 13px;
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* =========== Nav =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s var(--ease), padding .3s var(--ease), backdrop-filter .3s var(--ease);
}
.nav.scrolled {
  background: rgba(20, 6, 31, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: inline-flex; }
.brand-text {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.1em;
  font-size: 18px;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; row-gap: 8px; }
.nav-cities { display: contents; }
@media (max-width: 1100px) { .nav-links { gap: 18px; } }
.nav-links a {
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 18px;
  border-radius: 99px;
  background: var(--grad-sunset);
  color: var(--bg-night) !important;
  font-weight: 700 !important;
}
.nav-cta:hover { color: var(--bg-night) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: transparent; border: 0;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); margin: 0 auto;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(20, 6, 31, 0.96);
    backdrop-filter: blur(14px);
    padding: 18px var(--gutter) 26px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-cta { margin-top: 10px; align-self: flex-start; }
}

/* =========== Hero =========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px var(--gutter) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 30% 20%, rgba(118, 197, 229, 0.32), transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(232, 97, 46, 0.30), transparent 60%),
              var(--bg-night);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 18s var(--ease) infinite;
}
.orb-1 { width: 480px; height: 480px; top: -120px; left: -120px; background: var(--coral); }
.orb-2 { width: 380px; height: 380px; bottom: -80px; right: -80px; background: var(--gold); animation-delay: -6s; }
.orb-3 { width: 520px; height: 520px; top: 40%; left: 40%; background: var(--sky); opacity: 0.35; animation-delay: -12s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -30px) scale(1.08); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.hero-eyebrow {
  font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 24px;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(72px, 16vw, 220px);
  line-height: 0.88;
  margin: 0;
  letter-spacing: 0.01em;
}
.hero-title-line {
  display: block;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(40px);
  animation: rise .9s var(--ease) forwards;
}
.line-1 { animation-delay: .15s; }
.line-2 { animation-delay: .30s; -webkit-text-stroke: 2px transparent; }
.line-3 { animation-delay: .45s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
.hero-tag {
  margin: 28px auto 36px;
  max-width: 560px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-dim);
  opacity: 0; animation: rise .9s var(--ease) .65s forwards;
}
.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: rise .9s var(--ease) .8s forwards;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px;
  border-radius: 99px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
}
.btn-primary {
  background: var(--grad-sunset);
  color: var(--bg-night);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(232, 97, 46,0.5); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(255, 248, 240, 0.25);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-large { padding: 18px 36px; font-size: 15px; }
.btn-sm { padding: 9px 16px; font-size: 11px; letter-spacing: 0.14em; }

.hero-marquee {
  margin-top: 72px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
  overflow: hidden;
  opacity: 0; animation: rise .9s var(--ease) 1s forwards;
}
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 18px; letter-spacing: 0.18em;
  color: var(--ink-dim);
}
.marquee-track span { flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 2px solid rgba(255, 248, 240, 0.4);
  border-radius: 99px;
  display: grid; place-items: center;
}
.hero-scroll span {
  width: 3px; height: 8px; border-radius: 99px;
  background: var(--gold);
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-6px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(6px); opacity: 0; }
}

/* =========== Section base =========== */
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.section-head { text-align: center; margin: 0 auto 60px; max-width: 720px; }
.section-kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-kicker.light { color: var(--bg-night); }
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1;
  margin: 0;
  letter-spacing: 0.02em;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section-rule {
  width: 64px; height: 4px; border-radius: 99px;
  background: var(--grad-sunset);
  margin: 22px auto 0;
}
.section-sub { margin-top: 18px; color: var(--ink-dim); }

/* =========== About =========== */
.about { background: var(--bg-night); }
.about-grid {
  display: grid; gap: 60px; align-items: center;
  grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy .lede {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4; font-weight: 500;
  color: var(--ink);
  margin: 0 0 20px;
}
.about-copy p { color: var(--ink-dim); margin: 0 0 18px; }
.about-copy strong { color: var(--gold); font-weight: 600; }
.about-stats {
  margin-top: 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.stat {
  padding: 22px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  text-align: center;
}
.stat-num {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat-label {
  display: block; margin-top: 6px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
}

.about-visual { position: relative; height: 460px; }
.visual-card {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.visual-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
}
.card-1 {
  width: 62%; height: 70%; top: 0; left: 0;
  background: linear-gradient(135deg, #76C5E5, #E8612E 60%, #F7C842);
  transform: rotate(-3deg);
}
.card-2 {
  width: 58%; height: 60%; bottom: 0; right: 0;
  background: linear-gradient(135deg, #F7C842, #E8612E 70%, #D8412C);
  transform: rotate(4deg);
}
.card-3 {
  width: 38%; height: 38%; bottom: 22%; left: 28%;
  background: linear-gradient(135deg, #1A2D4D, #76C5E5 70%, #F7C842);
  transform: rotate(-1deg);
  border: 2px solid rgba(247,200,66,0.6);
}

/* =========== Tour Dates =========== */
.tour { background: linear-gradient(180deg, var(--bg-night) 0%, #1F3658 100%); }
.tour-list { display: grid; gap: 14px; max-width: 920px; margin: 0 auto; }
.tour-stop {
  position: relative;
  display: grid;
  grid-template-columns: 6px 130px 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 22px 26px 22px 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.tour-stop:hover {
  transform: translateY(-2px);
  border-color: rgba(247,200,66,0.35);
  background: rgba(255,255,255,0.06);
}
.tour-stop-bar {
  width: 6px; height: 100%; min-height: 100px;
  border-radius: 6px 0 0 6px;
}
.tour-date-block {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.tour-month {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.tour-days {
  font-family: 'Anton', sans-serif;
  font-size: 38px; line-height: 1;
  color: var(--ink); margin: 4px 0 2px;
  letter-spacing: 0.02em;
}
.tour-year { font-size: 11px; letter-spacing: 0.18em; color: var(--ink-faint); }
.tour-info { min-width: 0; }
.tour-city {
  font-family: 'Anton', sans-serif;
  font-size: 24px; line-height: 1.05;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.tour-venue { margin: 0; color: var(--ink-dim); font-size: 14px; }
.tour-status-pill {
  display: inline-block;
  padding: 6px 12px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; border-radius: 99px;
  white-space: nowrap;
}
.status-on-sale { background: rgba(101, 210, 139, 0.15); color: #65d28b; border: 1px solid rgba(101, 210, 139, 0.4); }
.status-early-bird { background: rgba(247, 200, 66,0.15); color: var(--gold); border: 1px solid rgba(247, 200, 66,0.4); }
.status-coming-soon { background: rgba(255, 248, 240, 0.05); color: var(--ink-dim); border: 1px solid rgba(255, 248, 240, 0.15); }
.status-sold-out { background: rgba(216, 65, 44,0.18); color: #ff7aa6; border: 1px solid rgba(216, 65, 44,0.5); }

.tour-actions { display: flex; gap: 8px; }

@media (max-width: 800px) {
  .tour-stop {
    grid-template-columns: 5px 100px 1fr;
    grid-template-areas:
      "bar date info"
      "bar status status"
      "bar actions actions";
    gap: 14px 18px;
    padding: 18px 18px 18px 0;
  }
  .tour-stop-bar { grid-area: bar; }
  .tour-date-block { grid-area: date; padding: 0 10px; }
  .tour-info { grid-area: info; }
  .tour-status { grid-area: status; padding-left: 18px; }
  .tour-actions { grid-area: actions; padding-left: 18px; }
  .tour-days { font-size: 30px; }
}

/* =========== Lineup =========== */
.lineup { background: var(--bg-night); }
.lineup-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin: 0 auto 40px;
  max-width: 920px;
}
.lineup-tab {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  cursor: pointer;
  font-family: inherit; color: var(--ink-dim);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}
.lineup-tab:hover {
  border-color: rgba(247,200,66,0.4);
  color: var(--ink);
  transform: translateY(-1px);
}
.lineup-tab.active {
  background: var(--grad-sunset);
  color: var(--bg-night);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.lineup-tab-city {
  font-family: 'Anton', sans-serif;
  font-size: 16px; letter-spacing: 0.06em;
}
.lineup-tab-date {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-top: 2px; opacity: 0.85;
}

.lineup-poster {
  background: linear-gradient(180deg, rgba(118, 197, 229, 0.14), rgba(15, 26, 46, 0.6));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.lineup-poster::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(232, 97, 46, 0.18), transparent 60%),
              radial-gradient(ellipse at 0% 100%, rgba(247, 200, 66, 0.16), transparent 60%);
  pointer-events: none;
}
.lineup-city-head {
  position: relative;
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}
.lineup-city-name {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.04em;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.lineup-city-date {
  display: block;
  margin-top: 6px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-dim);
}

.lineup-tier {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  justify-content: center;
  text-align: center;
  margin-bottom: 28px;
}
.lineup-tier:last-child { margin-bottom: 0; }
.act { display: inline-flex; align-items: center; }
.act span {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.05;
  display: inline-block;
}
.act-headliner span {
  font-size: clamp(32px, 6vw, 64px);
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(232, 97, 46, 0.2);
}

/* Artist photos on the lineup poster */
.act.has-photo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 22px 8px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.act.has-photo:hover {
  background: rgba(247, 200, 66, 0.08);
  border-color: rgba(247, 200, 66, 0.4);
}
.act-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: var(--bg-deep);
}
.act-headliner.has-photo {
  padding: 10px 28px 10px 10px;
}
.act-headliner.has-photo .act-photo {
  width: clamp(72px, 9vw, 110px);
  height: clamp(72px, 9vw, 110px);
  border: 3px solid rgba(247, 200, 66, 0.4);
  box-shadow: 0 0 30px rgba(232, 97, 46, 0.25);
}
.act-main.has-photo .act-photo {
  width: 56px; height: 56px;
}
/* When the row mixes photo'd and text-only acts, keep wrapping clean */
.lineup-tier { row-gap: 14px; }
.act-main span {
  font-size: clamp(20px, 3vw, 30px);
  color: var(--ink);
}
.act-support span {
  font-size: clamp(13px, 1.5vw, 16px);
  color: var(--ink-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lineup-tier .act-main + .act-main::before,
.lineup-tier .act-support + .act-support::before,
.lineup-tier .act-headliner + .act-headliner::before {
  content: '·';
  margin-right: 24px;
  color: var(--gold);
  align-self: center;
}

.lineup-note {
  text-align: center;
  margin: 30px 0 0;
  color: var(--ink-faint);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
}

/* =========== Dedicated lineup page =========== */
.lineup-page-hero {
  text-align: center;
  padding: clamp(120px, 16vw, 180px) var(--gutter) clamp(40px, 6vw, 70px);
  background: radial-gradient(ellipse at 30% 20%, rgba(118, 197, 229, 0.32), transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(232, 97, 46, 0.30), transparent 60%),
              var(--bg-night);
}
.lineup-page-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 11vw, 140px);
  line-height: 0.92;
  margin: 12px 0 18px;
  letter-spacing: 0.02em;
}
.lineup-title-prefix {
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.18em;
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: var(--gold);
  margin-bottom: 6px;
}
.lineup-title-city {
  display: block;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.lineup-page-gallery {
  padding: clamp(50px, 8vw, 90px) var(--gutter) clamp(80px, 12vw, 130px);
  background: var(--bg-night);
}
.lineup-page-gallery .container { max-width: 1200px; }

/* =========== Lineup gallery (artist photo cards) =========== */
.artist-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* 4 cards across on desktop */
  gap: 22px;
  margin-bottom: 28px;
}
.artist-gallery-row.supports { gap: 14px; }
.artist-gallery-row:last-child { margin-bottom: 0; }
@media (max-width: 1000px) {
  .artist-gallery-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .artist-gallery-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .artist-gallery-row { grid-template-columns: 1fr; }
}

.artist-card-gallery {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.artist-card-gallery:hover { border-color: rgba(247,200,66,0.4); }
.artist-card-gallery.open {
  border-color: rgba(247,200,66,0.5);
  background: rgba(247,200,66,0.04);
}

.artist-card-trigger {
  display: block; width: 100%;
  padding: 0;
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit; color: inherit;
  text-align: left;
}
.artist-card-trigger:disabled { cursor: default; }
.artist-card-trigger:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.artist-card-photo {
  aspect-ratio: 1 / 1;
  background: var(--bg-deep);
  overflow: hidden;
}
.artist-card-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s var(--ease);
}
.artist-card-trigger:hover .artist-card-photo img,
.artist-card-trigger:focus-visible .artist-card-photo img { transform: scale(1.04); }

.artist-card-meta {
  padding: 14px 18px 18px;
  display: grid; gap: 4px;
}
.artist-card-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.1;
}
/* Tier text labels removed from cards — all artists render at equal size */
.artist-card-hint {
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin-top: 4px;
}
.artist-card-gallery.open .artist-card-hint { color: var(--coral); }
.artist-card-gallery.open .artist-card-hint::before { content: ''; }

.artist-card-detail {
  padding: 0 18px 22px;
  border-top: 1px dashed rgba(255,255,255,0.08);
  margin-top: -1px;
  animation: artistDetailIn .3s var(--ease);
}
@keyframes artistDetailIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.artist-card-detail .artist-bio {
  margin: 18px 0 14px;
  color: var(--ink-dim); font-size: 14px; line-height: 1.6;
}

/* =========== Tickets =========== */
.tickets { background: linear-gradient(180deg, var(--bg-night) 0%, #16253F 100%); }
.tickets-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1080px; margin: 0 auto;
}
.ticket-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 36px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.ticket-card:hover { transform: translateY(-4px); border-color: rgba(247,200,66,0.4); }
.ticket-card.featured {
  background: linear-gradient(180deg, rgba(232, 97, 46,0.08), rgba(216, 65, 44,0.04));
  border-color: rgba(247, 200, 66,0.5);
  box-shadow: 0 20px 60px rgba(216, 65, 44,0.18);
  transform: translateY(-6px);
}
.ticket-card.featured:hover { transform: translateY(-10px); }
.ticket-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--grad-sunset);
  color: var(--bg-night);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; border-radius: 99px;
  white-space: nowrap;
}
.ticket-name {
  font-family: 'Anton', sans-serif;
  font-size: 28px; letter-spacing: 0.02em;
  margin: 0 0 4px;
  color: var(--ink);
}
.ticket-tagline {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
}
.ticket-price {
  margin: 0 0 22px;
  display: flex; align-items: baseline; gap: 8px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}
.ticket-price .from {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint);
}
.ticket-price .amount {
  font-family: 'Anton', sans-serif;
  font-size: 56px; line-height: 1;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.ticket-perks {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; gap: 12px;
  flex: 1;
}
.ticket-perks li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-dim); font-size: 14px;
  line-height: 1.4;
}
.ticket-perks li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  background: var(--grad-sunset);
  color: var(--bg-night);
  border-radius: 50%;
  font-weight: 700; font-size: 11px;
}
.tickets-note {
  text-align: center;
  margin: 36px 0 0;
  color: var(--ink-faint); font-size: 13px;
}

.ticket-city-list { display: grid; gap: 8px; }
.ticket-city-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.ticket-city-row:hover {
  background: rgba(247,200,66,0.06);
  border-color: rgba(247,200,66,0.4);
  transform: translateX(2px);
}
.ticket-city-name { font-weight: 600; color: var(--ink); }
.ticket-city-meta { color: var(--ink-faint); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.ticket-city-arrow { color: var(--gold); font-size: 18px; }

@media (max-width: 480px) {
  .ticket-city-row { grid-template-columns: 1fr auto; }
  .ticket-city-meta { grid-column: 1 / 3; font-size: 11px; }
}

/* =========== Event Banner (per-event poster/video/embed) =========== */
.event-banner[hidden] { display: none !important; }
.event-banner {
  background: var(--bg-deep);
  padding: 90px 0 30px; /* top padding clears the fixed nav */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* When a banner is set, give it full-bleed presence: the image fills
   the entire viewport (edge to edge) and crops as needed to maintain its
   aspect ratio. Use the safe-zone guide when designing the artwork so
   important content stays inside the visible area on all screens.
   Whether the dark text hero ALSO shows is controlled by the per-event
   "Hero (event title block)" checkbox in admin (sectionsVisible.hero). */
body.has-banner .event-banner {
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  width: 100%;
}
body.has-banner .event-banner-inner {
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 0;
}
body.has-banner .event-banner-inner img,
body.has-banner .event-banner-inner video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
.event-banner-inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 var(--gutter);
  display: flex;
  justify-content: center;
}
.event-banner-inner img,
.event-banner-inner video {
  display: block;
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: var(--bg-night);
}
.event-banner-inner .banner-embed {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  background: var(--bg-night);
}
.event-banner-inner .banner-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* When the page is in "poster only" mode, the banner doesn't need top padding
   because there's no hero pushing it up. We also tighten the spacing. */
body.text-hidden .event-banner {
  padding: 100px 0 50px;
}

/* Hide text sections via class on body — keeps DOM intact for screen readers
   that bypass display:none if needed (we use display:none here for clean visuals). */
body.text-hidden #top,
body.text-hidden #about,
body.text-hidden #lineup {
  display: none;
}

/* When text is hidden but no banner is set, show a friendly placeholder hero */
body.text-hidden:not(.has-banner) #top {
  display: flex; /* re-show hero so the page isn't empty */
}

/* =========== Event Page Specific =========== */
.back-link {
  color: var(--gold) !important;
  font-weight: 600 !important;
}
.back-link:hover { color: var(--coral) !important; }

.event-meta-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 40px auto 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  animation: rise .9s var(--ease) .85s forwards;
}
@media (max-width: 720px) { .event-meta-card { grid-template-columns: 1fr; } }
.event-meta-block {
  padding: 22px 22px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.event-meta-block:last-child { border-right: 0; }
@media (max-width: 720px) {
  .event-meta-block { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .event-meta-block:last-child { border-bottom: 0; }
}
.event-meta-label {
  display: block;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  margin-bottom: 8px;
}
.event-meta-value {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.event-meta-sub {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.4;
}

.event-info-list {
  margin-top: 32px;
  display: grid; gap: 12px;
}
.event-info-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}
.event-info-row:last-child { border-bottom: 0; }
@media (max-width: 540px) {
  .event-info-row { grid-template-columns: 1fr; gap: 4px; }
}
.event-info-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
}
.event-info-value {
  color: var(--ink-dim); font-size: 14px; line-height: 1.5;
}

/* Hover state on tour stops on homepage — they're now linked */
a.tour-stop {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.tour-stop .tour-city {
  transition: color .2s var(--ease);
}
a.tour-stop:hover .tour-city {
  color: var(--gold);
}
.tour-actions a, .tour-actions button {
  /* prevent the click from bubbling to the parent link */
  position: relative; z-index: 2;
}

/* =========== FAQ =========== */
.faq { background: var(--bg-night); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq-item[open] {
  border-color: rgba(247,200,66,0.4);
  background: rgba(247,200,66,0.04);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--gold); }
.faq-q-text { flex: 1; }
.faq-q-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-q-icon::before, .faq-q-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 2px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-q-icon {
  background: var(--gold);
  transform: rotate(180deg);
}
.faq-item[open] .faq-q-icon::before { background: var(--bg-night); }
.faq-item[open] .faq-q-icon::after { opacity: 0; }

.faq-a {
  padding: 0 26px 24px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
  max-width: 720px;
}
.faq-cta {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-dim);
}

/* =========== Newsletter =========== */
.newsletter { padding: clamp(40px, 8vw, 80px) 0; }
.newsletter-card {
  background: var(--grad-sunset);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  color: var(--bg-night);
  box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.newsletter-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}
@media (max-width: 820px) { .newsletter-card { grid-template-columns: 1fr; } }
.newsletter-copy { position: relative; }
.newsletter-copy .section-title { background: none; -webkit-text-fill-color: var(--bg-night); color: var(--bg-night); }
.newsletter-copy p { color: rgba(20,6,31,0.78); margin: 12px 0 0; max-width: 380px; }
.newsletter-form { position: relative; display: grid; gap: 12px; }
.newsletter-form input {
  padding: 16px 20px;
  border-radius: 99px;
  border: 0;
  background: rgba(20,6,31,0.92);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  outline: 2px solid transparent;
  transition: outline-color .2s var(--ease);
}
.newsletter-form input:focus { outline-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--ink-faint); }
.newsletter-form .btn { width: 100%; }
.form-msg { margin: 0; font-size: 13px; min-height: 18px; }
.form-msg.success { color: #1e6b3a; }
.form-msg.error { color: #6b1e1e; }
.involved-form .form-msg.success { color: #65d28b; }
.involved-form .form-msg.error { color: #ff8a8a; }

/* =========== Sponsors =========== */
.sponsors { background: var(--bg-night); }
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.sponsor-tile {
  aspect-ratio: 5/3;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  cursor: pointer;
  text-align: center;
}
.sponsor-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(247,200,66,0.5);
  background: rgba(247,200,66,0.04);
}
.sponsor-name {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  transition: color .25s var(--ease);
}
.sponsor-tile:hover .sponsor-name { color: var(--gold); }
.sponsor-logo {
  max-width: 80%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}
.sponsor-tile:hover .sponsor-logo {
  opacity: 1;
  filter: none;
}
a.sponsor-tile { text-decoration: none; cursor: pointer; }
.sponsors-cta { text-align: center; margin-top: 36px; color: var(--ink-dim); }

/* =========== Get Involved =========== */
.involved {
  background: linear-gradient(180deg, var(--bg-night) 0%, #0A1525 100%);
  position: relative;
}
.involved-form {
  max-width: 760px; margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  display: grid; gap: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: 8px; }
.form-field label {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); font-weight: 600;
}
.form-field label span { color: var(--coral); }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: rgba(20,6,31,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: rgba(20,6,31,0.85);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23F7C842' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; background-size: 12px; padding-right: 44px; }
.form-field select option { background: var(--bg-night); color: var(--ink); }

.checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink-dim); line-height: 1.5;
  cursor: pointer;
}
.checkbox input {
  appearance: none; -webkit-appearance: none;
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 5px; background: rgba(20,6,31,0.6);
  cursor: pointer; transition: background .2s var(--ease), border-color .2s var(--ease);
  position: relative;
  margin-top: 1px;
}
.checkbox input:checked {
  background: var(--grad-sunset);
  border-color: var(--gold);
}
.checkbox input:checked::after {
  content: '';
  position: absolute; left: 5px; top: 1px;
  width: 6px; height: 11px;
  border: solid var(--bg-night); border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* =========== Footer =========== */
.footer {
  background: #0A1525;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
  padding-bottom: 50px;
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }
.footer-brand .brand-text { font-size: 24px; }
.footer-tag { color: var(--ink-faint); margin: 8px 0 0; font-size: 14px; }
.footer-links {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
@media (max-width: 540px) { .footer-links { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: 'Anton', sans-serif;
  font-size: 14px; letter-spacing: 0.18em;
  color: var(--gold); margin: 0 0 14px;
}
.footer-col a {
  display: block; padding: 6px 0;
  color: var(--ink-dim); font-size: 14px;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--ink); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer-legal a {
  color: var(--ink-faint);
  transition: color .2s var(--ease);
  text-transform: uppercase;
  font-weight: 500;
}
.footer-legal a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
  font-size: 13px; color: var(--ink-faint);
}
.footer-bottom p { margin: 0; }

/* =========== Cookie banner =========== */
/* IMPORTANT: the [hidden] selector below is what makes banner.hidden=true actually
   hide the banner. Without it, the display:grid below overrides the HTML hidden
   attribute and the banner stays visible after Accept/Decline. */
.cookie-banner[hidden] { display: none !important; }
.cookie-banner {
  position: fixed;
  bottom: 18px; left: 18px; right: 18px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-night-2);
  border: 1px solid rgba(247, 200, 66, 0.4);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  z-index: 250;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  animation: cookieIn .35s var(--ease);
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .cookie-banner { grid-template-columns: 1fr; }
}
.cookie-banner-msg { font-size: 13px; color: var(--ink); line-height: 1.5; }
.cookie-banner-msg a { color: var(--gold); border-bottom: 1px dashed rgba(247,200,66,0.4); }
.cookie-banner-msg a:hover { color: var(--coral); }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btn {
  padding: 9px 18px;
  border-radius: 99px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid rgba(244, 229, 201, 0.3);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.cookie-btn:hover { border-color: var(--gold); color: var(--gold); }
.cookie-btn-accept {
  background: var(--grad-sunset);
  color: var(--bg-night);
  border-color: transparent;
}
.cookie-btn-accept:hover { color: var(--bg-night); transform: translateY(-1px); }

/* =========== Modal =========== */
.modal {
  position: fixed; inset: 0;
  display: none; place-items: center;
  z-index: 200;
  padding: 24px;
}
.modal.open { display: grid; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 2, 18, 0.72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal-card {
  position: relative;
  max-width: 520px; width: 100%;
  background: var(--bg-night-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  animation: modalIn .3s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 32px; letter-spacing: 0.02em;
  margin: 0 0 14px;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.modal-card p { color: var(--ink-dim); margin: 0 0 12px; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  font-size: 28px; color: var(--ink-dim);
  cursor: pointer; line-height: 1;
  transition: color .2s var(--ease);
}
.modal-close:hover { color: var(--gold); }

/* =========== Artist modal =========== */
.artist-modal {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 540px) {
  .artist-modal { grid-template-columns: 1fr; gap: 18px; }
}
.artist-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.08);
}
.artist-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artist-info {
  display: grid;
  gap: 14px;
}
.artist-tier {
  display: inline-block;
  padding: 4px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 99px;
  background: rgba(247, 200, 66, 0.15);
  color: var(--gold);
  border: 1px solid rgba(247, 200, 66, 0.3);
  width: fit-content;
}
.artist-bio {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.6;
  font-size: 14px;
}
.artist-socials {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 4px;
}
.artist-social {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.artist-social:hover {
  background: rgba(247,200,66,0.1);
  color: var(--gold);
  border-color: rgba(247,200,66,0.4);
}

/* Make act elements visually hint they're clickable when expanded */
.act[data-artist] span {
  position: relative;
  transition: transform .15s var(--ease);
}
.act[data-artist]:hover span,
.act[data-artist]:focus-visible span {
  transform: translateY(-2px);
}
.act[data-artist]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* =========== Custom Pages =========== */
.page-content { padding-top: 80px; /* clear sticky nav */ }

.page-section { padding: clamp(60px, 9vw, 110px) 0; position: relative; }
.page-section + .page-section { border-top: 1px solid rgba(255,255,255,0.05); }

/* page-hero — different from homepage hero, simpler */
.page-hero {
  text-align: center;
  background: radial-gradient(ellipse at 30% 20%, rgba(118, 197, 229, 0.18), transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(232, 97, 46, 0.18), transparent 60%),
              var(--bg-night);
  padding-top: clamp(110px, 14vw, 160px);
  padding-bottom: clamp(70px, 10vw, 120px);
}
.page-hero.align-left { text-align: left; }
.page-hero-bg-image {
  position: absolute; inset: 0;
  background-position: center; background-size: cover;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 9vw, 110px);
  line-height: 1;
  margin: 0 0 22px;
  letter-spacing: 0.02em;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.page-hero-subhead {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--ink-dim);
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.page-hero.align-left .page-hero-subhead { margin-left: 0; margin-right: 0; }

.page-richtext {
  background: var(--bg-night);
}
.page-richtext .rich-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.page-richtext .rich-content p { margin: 0 0 1.2em; }
.page-richtext .rich-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--ink);
  margin: 1.5em 0 0.6em;
  letter-spacing: 0.02em;
}
.page-richtext .rich-content h3 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--gold);
  margin: 1.5em 0 0.4em;
  letter-spacing: 0.04em;
}
.page-richtext .rich-content a { color: var(--gold); text-decoration: underline; }
.page-richtext .rich-content ul, .page-richtext .rich-content ol { padding-left: 22px; margin: 0 0 1.2em; }
.page-richtext .rich-content li { margin-bottom: 6px; }
.page-richtext .rich-content strong { color: var(--ink); }
.page-richtext .rich-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 18px;
  margin: 0 0 1.2em;
  color: var(--ink);
  font-style: italic;
}

.page-image {
  background: var(--bg-night);
}
.page-image figure {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}
.page-image img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.page-image figcaption {
  margin-top: 14px;
  color: var(--ink-faint);
  font-size: 13px;
}

.page-imageText {
  background: linear-gradient(180deg, var(--bg-night) 0%, #1F3658 100%);
}
.page-imageText .imageText-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 800px) { .page-imageText .imageText-grid { grid-template-columns: 1fr; } }
.page-imageText.image-left .imageText-grid { direction: ltr; }
.page-imageText.image-right .imageText-grid > .imageText-image { order: 2; }
@media (max-width: 800px) {
  .page-imageText.image-right .imageText-grid > .imageText-image { order: 0; }
}
.page-imageText .imageText-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-night-2);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
}
.page-imageText .imageText-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-imageText .imageText-image .placeholder { color: var(--ink-faint); font-size: 13px; padding: 30px; text-align: center; }
.page-imageText h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.page-imageText p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.page-video {
  background: var(--bg-night);
}
.page-video .video-wrap {
  max-width: 1080px; margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.08);
}
.page-video video,
.page-video iframe { width: 100%; height: 100%; border: 0; display: block; }

.page-cta {
  text-align: center;
  background: var(--bg-night);
}
.page-cta.bg-coral { background: var(--grad-sunset); color: var(--bg-night); }
.page-cta.bg-cream { background: #F4E5C9; color: var(--bg-night); }
.page-cta.bg-cream .page-cta-heading { color: var(--bg-night); background: none; -webkit-text-fill-color: var(--bg-night); }
.page-cta.bg-coral .page-cta-heading { color: var(--bg-night); background: none; -webkit-text-fill-color: var(--bg-night); }
.page-cta-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  background: var(--grad-sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1.05;
}
.page-cta-subhead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: inherit;
  opacity: 0.85;
  margin: 0 auto 30px;
  max-width: 580px;
}

/* =========== Reveal animations =========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
