/* ============================================================
   MS. DARKCHILD — Design System
   Purple #5B2D8E + Gold #F5C518 + Near-black #100E0C
   Bebas Neue (display) + Inter (body) + Courier New (mono)
   ============================================================ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --bg:        #100E0C;
  --bg2:       #161310;
  --bg3:       #1E1A16;
  --purple:    #5B2D8E;
  --purple-lt: #7A3DBF;
  --gold:      #F5C518;
  --gold-dk:   #C9A412;
  --pink:      #C0297A;
  --white:     #F0EDE8;
  --muted:     #7A7672;
  --border:    rgba(240,237,232,0.10);
  --border-md: rgba(240,237,232,0.18);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Courier New', monospace;

  --container: 1100px;
  --pad-x:     clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 8vw, 120px);
  --radius:    3px;
  --transition: 220ms ease;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

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

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }
.section    { padding: var(--section-y) 0; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.eyebrow {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow--mono { font-family: var(--font-mono); font-weight: 400; letter-spacing: 0.14em; }

.accent--gold     { color: var(--gold); }
.accent--pink     { color: var(--pink); }
.accent--recording{ color: #ff6666; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--radius);
  border: none; transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold    { color: var(--bg); background: var(--gold); }
.btn--gold:hover { background: var(--gold-dk); }

.btn--outline {
  color: var(--white); background: transparent;
  border: 1px solid var(--border-md); font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.12em;
}
.btn--outline:hover { border-color: var(--white); }

.btn--outline-gold {
  color: var(--gold); background: transparent;
  border: 1px solid rgba(245,197,24,0.35);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em;
}

.btn--sm    { padding: 9px 18px; font-size: 11px; }
.btn--xs    { padding: 8px 14px; font-size: 9px; }
.btn--block { width: 100%; text-align: center; }

/* ── LIVE DOT ─────────────────────────────────────────────── */
.live-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: #ff4444; flex-shrink: 0;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,68,68,.5); }
  50%     { box-shadow: 0 0 0 6px rgba(255,68,68,0); }
}

/* ── LIVE BANNER ──────────────────────────────────────────── */
.live-banner {
  background: linear-gradient(90deg, var(--purple) 0%, #3d1a63 100%);
  border-bottom: 2px solid var(--gold);
  position: relative; z-index: 200;
}
.live-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  padding: 10px var(--pad-x);
  max-width: var(--container); margin: 0 auto;
}
.live-banner__left {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px 14px;
}
.live-label  { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.live-title  { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--white); }
.live-meta   { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.1em; }
.live-divider{ width: 1px; height: 14px; background: var(--border-md); }
.live-networks { display: flex; gap: 10px; }
.live-networks span { font-family: var(--font-body); font-size: 9px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; }
.live-banner__right { display: flex; align-items: center; gap: 12px; }
.live-close { background: none; border: none; color: var(--muted); font-size: 20px; line-height: 1; padding: 2px 8px; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--pad-x);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}
.nav.scrolled {
  background: rgba(16,14,12,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav__logo {
  font-family: var(--font-display); font-size: 20px;
  letter-spacing: 0.04em; color: var(--white);
}
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex; align-items: center; gap: 22px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  transition: color var(--transition);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.nav__links a:hover { color: var(--white); border-bottom-color: var(--border-md); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: transform var(--transition);
}

.nav__drawer {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(16,14,12,0.98); padding: 100px var(--pad-x) 48px;
  flex-direction: column;
}
.nav__drawer ul { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.nav__drawer a {
  font-family: var(--font-display); font-size: 40px;
  letter-spacing: 0.06em; color: var(--white);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--bg);
}
.hero__photo {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    /* Left text panel — strong black for name/copy legibility */
    linear-gradient(to right,
      rgba(10,8,6,0.94) 0%,
      rgba(10,8,6,0.84) 25%,
      rgba(10,8,6,0.52) 46%,
      rgba(10,8,6,0.14) 64%,
      transparent 80%
    ),
    /* Subtle overall scrim — tames hottest parts of spotlight without killing it */
    rgba(10,8,6,0.18),
    /* Bottom fade into site bg */
    linear-gradient(to top, var(--bg) 0%, transparent 22%);
  pointer-events: none;
}
.hero__beams { position: absolute; inset: 0; pointer-events: none; }
.beam {
  position: absolute; bottom: 0; width: 1px;
  background: linear-gradient(to top, rgba(91,45,142,0.12), transparent);
  transform: translateX(-50%);
}
.beam--1 { left: 50%; height: 72%; background: linear-gradient(to top, rgba(245,197,24,0.08), transparent); }
.beam--2 { left: 30%; height: 50%; transform: skewX(-5deg); }
.beam--3 { right: 32%; left: auto; height: 58%; transform: skewX(5deg); }

.hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-x) clamp(32px,4vw,56px);
  max-width: 700px;
}
.hero__crown {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.eyebrow__line {
  display: inline-block; width: 22px; height: 1px; background: var(--gold);
}
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.88; letter-spacing: 0.01em;
  margin-bottom: 8px;
}
.hero__ms    { color: var(--white); }
.hero__dark  { color: var(--purple-lt); }
.hero__child { color: var(--gold); }

.hero__roles {
  font-family: var(--font-mono); font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.hero__quote {
  font-size: 15px; color: var(--white); font-style: italic;
  line-height: 1.5; max-width: 420px; margin-bottom: 20px;
  border: none; padding: 0;
}
.hero__quote cite { display: block; color: var(--purple-lt); font-style: normal; margin-top: 4px; }

.hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }

.hero__networks { margin-top: 4px; }
.networks__label {
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.networks__logos {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
}
.networks__logos span {
  font-family: var(--font-body); font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em; color: var(--muted);
}

.hero__socials {
  position: absolute; bottom: clamp(24px,4vw,44px); right: var(--pad-x);
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.hero__socials a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white);
  border: 1px solid var(--border-md);
  padding: 7px 12px; display: flex; gap: 8px; align-items: center;
  transition: border-color var(--transition), color var(--transition);
}
.hero__socials a:hover { border-color: var(--gold); color: var(--gold); }
.social-label { color: var(--gold); }

/* ── IMPACT ───────────────────────────────────────────────── */
.impact {
  background: var(--bg2);
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.impact__grid {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.impact__stat {
  text-align: center; padding: 8px 12px;
  border-left: 1px solid var(--border);
}
.impact__stat:first-child { border-left: none; }
.impact__num {
  display: block;
  font-family: var(--font-display); font-size: clamp(40px,5.5vw,68px);
  line-height: 1; color: var(--gold);
}
.impact__label {
  display: block;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

/* ── NETWORK BAR ──────────────────────────────────────────── */
.network-bar {
  background: #0A0806; padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.network-bar__label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: 14px;
}
.network-bar__logos {
  display: flex; justify-content: center; flex-wrap: wrap;
  align-items: center; gap: 8px 40px; margin-bottom: 14px;
}
.network-bar__logos span {
  font-family: var(--font-body); font-weight: 800; letter-spacing: 0.06em;
}
.net-showtime { font-size: 16px; color: #cc2222; }
.net-hbo      { font-size: 16px; color: #b8a86e; }
.net-cc       { font-size: 14px; color: var(--muted); }
.net-fox      { font-size: 16px; color: #c8a020; }
.net-bet      { font-size: 16px; color: #c8a020; }

.press-strip {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 6px 28px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.press-strip span {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/* ── COBILLS ──────────────────────────────────────────────── */
.cobills { background: var(--bg); padding: 32px 0; border-bottom: 1px solid var(--border); }
.cobills__label { text-align: center; margin-bottom: 12px; }
.cobills__names {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 36px;
}
.cobills__names span {
  font-family: var(--font-display); font-size: clamp(13px,1.6vw,18px);
  letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase;
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about__grid {
  display: grid; grid-template-columns: 0.75fr 1.4fr;
  gap: clamp(32px,5vw,72px); align-items: start;
}
.about__photo-wrap { position: relative; }
.about__photo-card {
  border-radius: 3px; overflow: hidden; position: relative;
  max-height: 520px;
}
.about__photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.about__photo-bar {
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--pink));
}
.about__badge {
  position: absolute;
  font-family: var(--font-mono); font-size: 8px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px;
  background: rgba(16,14,12,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}
.about__badge--top    { top: 16px; left: 16px; color: var(--gold); }
.about__badge--bottom { bottom: 16px; left: 16px; background: var(--purple); border: none; color: var(--white); }

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(28px,3vw,42px);
  line-height: 1.0; color: var(--white); margin-bottom: 14px;
}
.about__quote {
  border-left: 3px solid var(--purple); padding-left: 18px; margin-bottom: 24px;
}
.about__quote p { font-size: 14px; color: var(--white); font-style: italic; line-height: 1.6; }
.about__quote cite { display: block; font-family: var(--font-mono); font-size: 9px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; font-style: normal; }
.about__copy { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.about__copy strong { color: var(--white); }

.timeline { list-style: none; margin: 24px 0 28px; }
.timeline__item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.timeline__year { font-family: var(--font-mono); font-size: 13px; color: var(--gold); min-width: 44px; padding-top: 2px; letter-spacing: 0.06em; }
.timeline__bar  { width: 2px; height: 40px; background: var(--purple); flex-shrink: 0; margin-top: 2px; }
.timeline__text strong { display: block; font-size: 16px; color: var(--white); margin-bottom: 2px; }
.timeline__text span   { font-size: 14px; color: var(--muted); }

/* ── SHOWS ────────────────────────────────────────────────── */
.shows__header { background: var(--purple); padding: 40px 0; }
.shows__header-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.shows__title {
  font-family: var(--font-display); font-size: clamp(48px,7vw,82px);
  line-height: 1; color: var(--white); margin: 0;
}

/* Aug 16 Feature */
.show-feature { background: var(--bg3); border-bottom: 1px solid var(--border); }
.show-feature__inner { padding: clamp(24px,4vw,48px) 0; }
.show-feature__badge {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.show-feature__badge span:last-child {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; color: #ff6666;
}
.show-feature__grid {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: start;
}
.show-feature__date { text-align: center; min-width: 80px; }
.show-month {
  display: block; font-family: var(--font-mono); font-size: 9px;
  color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px;
}
.show-day   { display: block; font-family: var(--font-display); font-size: 72px; line-height: 0.9; color: var(--white); }
.show-dow   { display: block; font-family: var(--font-mono); font-size: 8px; color: var(--muted); letter-spacing: 0.1em; margin-top: 4px; }
.show-feature__name {
  font-family: var(--font-display); font-size: clamp(28px,4vw,44px);
  line-height: 1; color: var(--white); margin-bottom: 10px;
}
.show-feature__venue { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.show-feature__times { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 20px; margin-bottom: 12px; }
.show-feature__times li { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }
.show-feature__lineup      { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.show-feature__lineup-label{ color: var(--muted); margin-right: 8px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.show-feature__networks    { display: flex; gap: 12px; flex-wrap: wrap; }
.show-feature__networks span { font-family: var(--font-body); font-size: 11px; font-weight: 800; color: var(--muted); letter-spacing: 0.06em; }
.show-feature__cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.show-feature__host { font-family: var(--font-mono); font-size: 8px; color: var(--muted); letter-spacing: 0.08em; text-align: right; }
.show-feature__host strong { display: block; color: var(--white); }

/* Filter bar */
.shows__list-wrap { background: var(--bg2); }
.shows__filters {
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0; padding-top: 0;
}
.filter-btn {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: none; border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 20px; transition: all var(--transition);
}
.filter-btn--active { color: var(--gold); border-bottom-color: var(--gold); }
.filter-btn:hover   { color: var(--white); }
.shows__count { margin-left: auto; font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.1em; }

/* Show rows */
.shows__list { padding-bottom: 0; }
.show-row {
  display: grid; grid-template-columns: 72px 1fr auto;
  align-items: center; gap: 20px; padding: 24px var(--pad-x);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.show-row:hover { background: rgba(91,45,142,0.04); }
.show-row[style*="none"] { display: none; }
.show-row__date { text-align: center; }
.show-row__date span { display: block; font-family: var(--font-mono); font-size: 9px; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px; }
.show-row__day { font-family: var(--font-display); font-size: 48px; line-height: 1; color: var(--white); }
.show-row__info h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.show-row__info p  { font-size: 13px; color: var(--muted); }
.show-row__city    { font-family: var(--font-mono); font-size: 10px; color: var(--purple-lt); margin-top: 3px; letter-spacing: 0.08em; }
.show-row__actions { display: flex; gap: 8px; }
.shows__footer { padding: 28px var(--pad-x) 64px; }

/* ── WATCH ────────────────────────────────────────────────── */
.watch { background: var(--bg); border-top: 1px solid var(--border); }
.watch__grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(28px,5vw,72px); align-items: center;
  padding: 72px 0 0;
}
.watch__heading {
  font-family: var(--font-display); font-size: clamp(44px,5.5vw,68px);
  line-height: 0.92; color: var(--white); margin-bottom: 18px;
}
.watch__copy { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.watch__socials { margin-bottom: 24px; }
.watch__social-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.watch__social-pills a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border: 1px solid var(--border-md); padding: 9px 16px;
  transition: border-color var(--transition), color var(--transition);
}
.watch__social-pills a:hover { border-color: var(--gold); color: var(--gold); }

.watch__embed {
  aspect-ratio: 16/9; background: #080606; border-radius: 3px;
  border: 1px solid var(--border); position: relative; overflow: hidden;
}
.watch__embed iframe { width: 100%; height: 100%; border: none; }
.watch__embed-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  text-align: center;
}
.watch__embed-placeholder p { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.watch__embed-placeholder span { font-family: var(--font-mono); font-size: 8px; color: rgba(122,118,114,0.5); letter-spacing: 0.08em; }

.play-btn {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold); border: none; display: flex;
  align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.play-btn:hover { background: var(--gold-dk); transform: scale(1.06); }

.watch__alert {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 14px var(--pad-x); margin-top: 60px;
  display: flex; align-items: center; gap: 12px;
}
.watch__alert .container { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.watch__alert span { font-size: 13px; color: var(--muted); }

/* ── PRESS / QUOTES ───────────────────────────────────────── */
.press { background: var(--bg2); border-top: 1px solid var(--border); }
.quotes { max-width: 720px; margin: 0 auto; text-align: center; position: relative; min-height: 200px; }
.quote {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 350ms ease;
  border: none; padding: 0;
  display: flex; flex-direction: column; align-items: center;
}
.quote--active { opacity: 1; position: relative; }
.quote__mark { font-family: var(--font-display); font-size: 72px; line-height: 0.6; color: var(--purple); margin-bottom: 6px; }
.quote p    { font-size: clamp(16px,2vw,22px); font-weight: 500; font-style: italic; color: var(--white); line-height: 1.55; margin-bottom: 24px; }
.quote footer cite { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-style: normal; }

.quote__dots { display: flex; justify-content: center; gap: 8px; margin-top: 36px; }
.dot {
  width: 7px; height: 7px; border-radius: 4px;
  background: var(--muted); border: none;
  transition: all 250ms ease; padding: 0;
}
.dot--active { width: 22px; background: var(--gold); }

/* ── MERCH ────────────────────────────────────────────────── */
.merch { background: var(--bg); border-top: 1px solid var(--border); }
.merch__header { margin-bottom: 36px; }
.merch__title { font-family: var(--font-display); font-size: clamp(44px,6vw,76px); line-height: 0.9; color: var(--white); }
.merch__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-bottom: 24px; }

.merch-card {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 28px 24px; position: relative;
}
.merch-card__badge {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px;
}
.merch-card__badge--gold { color: var(--bg); background: var(--gold); }
.merch-card__badge--pink { color: var(--white); background: var(--pink); }
.merch-card__img {
  aspect-ratio: 1/1; background: var(--bg2);
  margin-bottom: 18px; display: flex; align-items: center;
  justify-content: center; font-size: 52px; border-radius: 2px;
}
.merch-card__color { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.merch-card__name  { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.merch-card__sub   { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.merch-card__footer { display: flex; align-items: center; justify-content: space-between; }
.merch-card__price  { font-family: var(--font-display); font-size: 26px; color: var(--white); }

.cart-toast {
  position: fixed; top: 80px; right: 20px; z-index: 500;
  background: var(--purple); color: var(--white);
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em;
  padding: 11px 18px; border-radius: 2px; opacity: 0;
  transition: opacity 250ms;
  pointer-events: none;
}
.cart-toast--show { opacity: 1; }
.merch__footer-note { font-family: var(--font-mono); font-size: 9px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; text-align: center; margin: 24px 0 12px; }

/* ── BOOKING ──────────────────────────────────────────────── */
.booking {
  background: var(--purple);
  padding: var(--section-y) 0; position: relative; overflow: hidden;
}
.booking::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 44px, rgba(0,0,0,0.04) 44px, rgba(0,0,0,0.04) 88px);
  pointer-events: none;
}
.booking__inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto; text-align: center;
}
.booking__title {
  font-family: var(--font-display); font-size: clamp(56px,8vw,100px);
  line-height: 0.9; color: var(--white); margin-bottom: 16px;
}
.booking__sub { font-size: 15px; color: rgba(240,237,232,0.68); line-height: 1.7; margin-bottom: 36px; }

.booking__form { text-align: left; margin-bottom: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form__group { margin-bottom: 10px; }
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%; font-family: var(--font-body); font-size: 13px; color: var(--white);
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius); padding: 12px 16px; outline: none;
  transition: border-color var(--transition);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--gold); }
.form__group input::placeholder,
.form__group textarea::placeholder { color: rgba(240,237,232,0.4); }
.form__group select option { background: #1E1A16; color: var(--white); }
.form__group textarea { resize: vertical; min-height: 80px; }

.booking__contact {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,237,232,0.4);
}
.booking__contact a { color: rgba(245,197,24,0.7); transition: color var(--transition); }
.booking__contact a:hover { color: var(--gold); }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: #090706; border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; margin-bottom: 32px; align-items: start;
}
.footer__logo { font-family: var(--font-display); font-size: 26px; color: var(--white); margin-bottom: 4px; }
.footer__logo span { color: var(--gold); }
.footer__tagline  { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.footer__hashtags { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 14px; font-style: italic; }
.footer__contact  { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: var(--gold); }

.footer__socials { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.footer__socials a {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border: 1px solid var(--border-md); padding: 9px 16px;
  transition: border-color var(--transition), color var(--transition);
}
.footer__socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer__pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; transition: opacity var(--transition);
}
.pill:hover { opacity: 0.8; }
.pill--purple { color: var(--white); background: var(--purple); }
.pill--gold   { color: var(--bg); background: var(--gold); }

.footer__nav { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer__nav a {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); transition: color var(--transition);
}
.footer__nav a:hover { color: var(--white); }

.footer__bottom {
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer__bottom p { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }

  /* Mobile hero — photo visible at 50% height, content below */
  .hero {
    min-height: 100svh;
    display: grid;
    grid-template-rows: 52vh 1fr;
    justify-content: unset;
    flex-direction: unset;
  }
  .hero__photo {
    position: relative;
    width: 100%;
    height: 52vh;
    opacity: 1;
    grid-row: 1;
  }
  .hero__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero__overlay {
    background: linear-gradient(to top, var(--bg) 0%, rgba(16,14,12,0.5) 60%, transparent 100%);
    grid-row: 1;
    position: absolute;
    inset: 0;
    height: 52vh;
  }
  .hero__beams { display: none; }
  .hero__content {
    grid-row: 2;
    position: relative;
    padding: 20px var(--pad-x) 32px;
    max-width: 100%;
    z-index: 2;
  }
  .hero__name { font-size: clamp(48px, 14vw, 80px); }
  .hero__quote { max-width: 100%; font-size: 14px; margin-bottom: 16px; }
  .hero__actions { margin-bottom: 16px; }
  .hero__networks { display: none; }

  /* Show socials inline below CTA on mobile */
  .hero__socials {
    display: flex;
    position: relative;
    bottom: auto; right: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }
  .hero__socials a {
    font-size: 10px;
    padding: 6px 10px;
    gap: 6px;
  }

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

  .about__grid  { grid-template-columns: 1fr; }
  .about__photo-wrap { max-height: 320px; overflow: hidden; }

  .show-feature__grid { grid-template-columns: auto 1fr; }
  .show-feature__cta  { display: none; }

  .watch__grid  { grid-template-columns: 1fr; }
  .watch__embed { margin-top: 32px; }

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

  .footer__grid { grid-template-columns: 1fr; }
  .footer__nav  { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 14px; }

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

@media (max-width: 600px) {
  .impact__grid { grid-template-columns: repeat(2,1fr); }
  .merch__grid  { grid-template-columns: 1fr; }
  .show-row { grid-template-columns: 60px 1fr; }
  .show-row__actions { display: none; }
  .live-banner .live-networks,
  .live-banner .live-meta { display: none; }
  .networks__logos span { font-size: 10px; }
}

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

/* ── PODCAST SECTION ─────────────────────────────────────────── */
.podcast {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.podcast__bg-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(91,45,142,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(91,45,142,0.10) 0%, transparent 60%);
}
.podcast__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.podcast__art {
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.podcast__logo-wrap {
  position: relative;
  width: 100%;
  max-width: 220px;
  filter: drop-shadow(0 0 40px rgba(91,45,142,0.6)) drop-shadow(0 0 80px rgba(91,45,142,0.3));
}
.podcast__logo-wrap img { width: 100%; height: auto; display: block; }
.podcast__badges {
  display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 300px;
}
.podcast__badge {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); border: 1px solid var(--border-md);
  padding: 10px 16px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.podcast__badge:hover { border-color: var(--purple); color: var(--purple-lt); background: rgba(91,45,142,0.08); }

.podcast__content { position: relative; z-index: 2; }
.podcast__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 2px;
  text-transform: uppercase;
}
.podcast__title span { color: var(--purple-lt); }
.podcast__tagline {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.podcast__copy {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-width: 480px; margin-bottom: 20px;
}
.podcast__video-wrap { margin-bottom: 28px; }
.podcast__video-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-md);
  aspect-ratio: 16/9;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  max-width: 540px;
}
.podcast__video-placeholder:hover { border-color: var(--purple); background: rgba(91,45,142,0.06); }
.podcast__play-icon { color: var(--purple-lt); opacity: 0.9; }
.podcast__video-label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white);
}
.podcast__video-sub {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase;
}

@media (max-width: 900px) {
  .podcast__grid { grid-template-columns: 1fr; text-align: center; }
  .podcast__art { align-items: center; }
  .podcast__badges { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; max-width: 100%; }
  .podcast__copy { margin: 0 auto 28px; }
  .podcast__video-placeholder { max-width: 100%; }
}

/* ── PODCAST LOGO BG FIX ─────────────────────────────────────── */
.podcast__logo-wrap {
  background: rgba(16,14,12,0.95);
  border-radius: 50%;
  padding: 8px;
}
