/* =========================================================
   ENEAS LACY — cosmickreature.com/eneaslacy/
   Poster-shop design system. No frameworks, no trackers.
   Display face : Big Shoulders Display (Google)
   Body face    : typwrng (site's own upload) / Special Elite
   ========================================================= */

@font-face {
  font-family: "Typwrng";
  font-display: swap;
  src: url("https://cosmickreature.com/images/0/20117933/typwrng-T_j14z1LadToJOuyVcxmeQ.ttf") format("truetype");
}

:root {
  /* ink + paper */
  --ink:        #0b0a09;
  --ink-2:      #141210;
  --ink-3:      #1d1a17;
  --bone:       #f2e9dc;
  --bone-2:     #e4d7c4;
  --clay:       #c9b9b5;

  /* accents */
  --red:        #cf1717;
  --red-hot:    #e52121;
  --gold:       #e8b53f;
  --gold-deep:  #c8941f;

  /* text */
  --text:       #efe6da;
  --text-dim:   #a99c8d;
  --text-ink:   #221c16;
  --text-ink-2: #5a4c3e;

  --line:       rgba(242, 233, 220, .16);
  --line-ink:   rgba(34, 28, 22, .18);

  --display: "Big Shoulders Display", "Oswald", "Haettenschweiler", "Arial Narrow", sans-serif;
  --body:    "Typwrng", "Special Elite", "Courier New", Courier, monospace;

  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 56px);
  --head-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + 10px);
  overflow-x: hidden;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: clamp(15px, .55vw + 13px, 18px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 800; }

.wrap { width: min(100% - (var(--pad) * 2), var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--red); color: #fff; padding: 12px 18px; text-decoration: none;
}
.skip-link:focus { left: 8px; top: 8px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* film grain over everything */
.grain {
  position: fixed; inset: 0; z-index: 400; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  min-height: var(--head-h);
  display: flex; align-items: center; gap: clamp(12px, 3vw, 34px);
  padding: 0 var(--pad);
  transition: background-color .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck {
  background: rgba(11, 10, 9, .93);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(8px);
}

.brand {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(23px, 2.2vw, 30px); line-height: 1;
  letter-spacing: .01em; text-transform: uppercase; text-decoration: none;
  color: var(--bone); white-space: nowrap; margin-right: auto;
}
.brand-b { color: var(--red-hot); margin-left: .28em; }

.site-nav ul {
  display: flex; align-items: center; gap: clamp(12px, 1.7vw, 26px);
  list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  font-family: var(--display); font-weight: 700;
  font-size: 17px; letter-spacing: .06em; text-transform: uppercase;
  text-decoration: none; color: var(--text); white-space: nowrap;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); border-bottom-color: var(--gold); }
.site-nav a.is-current { color: var(--red-hot); border-bottom-color: var(--red-hot); }

.nav-toggle { display: none; }

/* =========================================================
   SOCIAL BUTTONS
   ========================================================= */
.social { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border: 2px solid var(--line); border-radius: 50%; color: var(--text);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.social svg { width: 18px; height: 18px; fill: currentColor; }
.social a:hover, .social a:focus-visible {
  background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px);
}
.social--footer { justify-content: center; }
.social--footer a { width: 46px; height: 46px; border-color: rgba(242,233,220,.28); }
.social--footer svg { width: 21px; height: 21px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 999px;
  font-family: var(--display); font-weight: 800; font-size: 17px;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}
.btn--gold { background: var(--gold); color: #23180a; border-color: var(--gold); }
.btn--gold:hover, .btn--gold:focus-visible { background: var(--gold-deep); border-color: var(--gold-deep); transform: translateY(-2px); }
.btn--ghost { color: var(--bone); border-color: rgba(242,233,220,.6); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--bone); color: var(--ink); transform: translateY(-2px); }
.btn--solid { background: var(--bone); color: var(--ink); border-color: var(--bone); font-size: 19px; padding: 15px 34px; }
.btn--solid:hover, .btn--solid:focus-visible { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-2px); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: grid; place-items: center;
  padding: calc(var(--head-h) + 40px) var(--pad) 96px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 35%, rgba(0,0,0,0) 35%, rgba(11,10,9,.55) 100%),
    linear-gradient(180deg, rgba(11,10,9,.62) 0%, rgba(11,10,9,.05) 30%, rgba(11,10,9,.88) 100%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; width: 100%; }

.hero-mark { max-width: 640px; margin: 0 auto; }
.hero-mark img { width: 100%; filter: drop-shadow(0 10px 30px rgba(0,0,0,.6)); }

.hero-label {
  display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 14px;
  margin: 18px 0 0; padding: 9px 20px;
  background: rgba(11,10,9,.6); border: 1px solid rgba(242,233,220,.35);
  backdrop-filter: blur(3px);
}
.hero-label span {
  font-family: var(--display); font-weight: 800; font-size: clamp(18px, 2vw, 24px);
  letter-spacing: .16em; text-transform: uppercase; color: var(--bone);
}
.hero-label em { font-style: normal; font-size: 14px; letter-spacing: .18em; color: var(--gold); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); z-index: 3;
  width: 26px; height: 44px; border: 2px solid rgba(242,233,220,.7); border-radius: 14px;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px; margin: 8px auto 0;
  background: var(--bone); border-radius: 2px; animation: cue 1.9s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1 } 50% { transform: translateY(12px); opacity: .15 } }

/* =========================================================
   TICKER
   ========================================================= */
.ticker {
  background: var(--red); color: #fff; overflow: hidden;
  border-block: 3px solid var(--ink);
  padding: 10px 0;
}
.ticker-track { display: flex; width: max-content; animation: roll 52s linear infinite; }
.ticker-set { display: flex; align-items: center; white-space: nowrap; }
.ticker-set a {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  letter-spacing: .14em; text-transform: uppercase; text-decoration: none; color: #fff;
  padding: 2px 0; border-bottom: 2px solid transparent; transition: border-color .18s ease, color .18s ease;
}
.ticker-set a:hover, .ticker-set a:focus-visible { border-bottom-color: #fff; color: var(--gold); }
.ticker-set b { color: rgba(255,255,255,.5); font-weight: 400; margin: 0 18px; }
@keyframes roll { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.ticker:hover .ticker-track, .ticker:focus-within .ticker-track { animation-play-state: paused; }

/* touch devices: no hover to pause with, so make it a swipeable strip instead */
@media (hover: none) {
  .ticker { overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .ticker::-webkit-scrollbar { display: none; }
  .ticker-track { animation: none; padding-inline: var(--pad); }
  .ticker-set[aria-hidden="true"] { display: none; }
}

/* =========================================================
   MUSIC — player, tracklist, platforms
   ========================================================= */
.section--music { background: var(--ink-2); }

.player { display: grid; gap: clamp(20px, 3vw, 34px); margin-top: 38px; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .player { grid-template-columns: 1.25fr .75fr; align-items: start; } }

.player-stage {
  background: #000; border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,.6);
}
.player-stage iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }

.tracklist {
  list-style: none; margin: 0; padding: 0; counter-reset: trk;
  display: grid; gap: 8px; align-content: start;
}
.tracklist > li { counter-increment: trk; }
.tracklist a {
  display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 12px;
  padding: 8px 12px 8px 8px; text-decoration: none; color: var(--text);
  background: rgba(255,255,255,.03); border: 1px solid var(--line); border-radius: 10px;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.tracklist a:hover, .tracklist a:focus-visible {
  background: rgba(207,23,23,.14); border-color: var(--red-hot); transform: translateX(4px);
}
.tracklist img { width: 84px; height: 47px; object-fit: cover; border-radius: 6px; }
.track-name {
  display: block; font-family: var(--display); font-weight: 800; font-size: 19px;
  letter-spacing: .03em; text-transform: uppercase; color: var(--bone); line-height: 1.1;
}
.track-note { display: block; margin-top: 3px; font-size: 12.5px; color: var(--text-dim); }
.track-time { font-size: 13px; color: var(--text-dim); letter-spacing: .05em; }
.tracklist a.is-playing { background: rgba(232,181,63,.14); border-color: var(--gold); }
.tracklist a.is-playing .track-name { color: var(--gold); }

.player-note { margin: 22px 0 0; font-size: 14px; color: var(--text-dim); }
.player-note a { color: var(--gold); }

.kicker--spaced { margin-top: clamp(44px, 6vw, 68px); }

.platforms {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.platforms a {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  border: 2px solid rgba(242,233,220,.35); background: rgba(255,255,255,.03);
  font-family: var(--display); font-weight: 800; font-size: 17px;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: var(--bone);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.platforms a:hover, .platforms a:focus-visible {
  background: var(--bone); border-color: var(--bone); color: var(--ink); transform: translateY(-2px);
}
.platforms .is-soon {
  opacity: .42; cursor: default; border-style: dashed; pointer-events: none;
}
.platforms i {
  font-style: normal; font-family: var(--body); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
}

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { position: relative; padding: clamp(60px, 8vw, 110px) 0; }
.section--radio { background: var(--ink); padding-bottom: clamp(100px, 13vw, 165px); }
.section--links { background: var(--ink-2); }
.section--mentions { background: var(--ink); }

.kicker {
  margin: 0 0 10px; font-family: var(--display); font-weight: 700;
  font-size: 15px; letter-spacing: .3em; text-transform: uppercase; color: var(--red-hot);
}
.kicker--center { text-align: center; }

.section-title {
  font-family: var(--display); font-weight: 900; line-height: .92;
  font-size: clamp(42px, 7.4vw, 92px); letter-spacing: -.01em; text-transform: uppercase;
  color: var(--bone); margin-bottom: 8px;
}
.section--spotlight .section-title { color: var(--text-ink); }
.section--mentions .section-title, .section--mentions .kicker { text-align: center; }

.lede { max-width: 68ch; margin: 16px 0 44px; color: var(--text-dim); }
.section--spotlight .lede { color: var(--text-ink-2); max-width: 74ch; }

/* =========================================================
   FEATURE (video + card)
   ========================================================= */
.feature {
  display: grid; gap: clamp(26px, 4vw, 48px); margin-top: 38px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .feature { grid-template-columns: 1.15fr .85fr; align-items: start; } }

.tape-frame {
  position: relative; background: var(--bone); padding: 14px 14px 16px;
  box-shadow: 0 26px 60px rgba(0,0,0,.65); rotate: -.7deg;
}
.tape-frame video { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.tape {
  position: absolute; width: 92px; height: 26px; background: rgba(232,181,63,.72);
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.tape--tl { top: -13px; left: -22px; rotate: -24deg; }
.tape--br { bottom: -13px; right: -22px; rotate: -24deg; }

.feature-card {
  background: var(--bone); color: var(--text-ink);
  padding: clamp(24px, 3.2vw, 38px); border-top: 8px solid var(--red);
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
}
.feature-card .eyebrow {
  margin: 0 0 8px; font-family: var(--display); font-weight: 700;
  font-size: 14px; letter-spacing: .26em; text-transform: uppercase; color: var(--red);
}
.feature-card h3 {
  font-family: var(--display); font-weight: 900; line-height: .98;
  font-size: clamp(28px, 3.2vw, 42px); text-transform: uppercase; color: var(--text-ink);
  margin-bottom: 18px;
}
.fact-list { list-style: none; margin: 0 0 18px; padding: 0; border-top: 1px solid var(--line-ink); }
.fact-list li {
  display: grid; grid-template-columns: 112px 1fr; gap: 10px;
  padding: 8px 0; border-bottom: 1px solid var(--line-ink); font-size: 15px;
}
.fact-list span {
  font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text-ink-2); padding-top: 2px;
}
.feature-body { margin: 0 0 26px; font-size: 15.5px; color: #3b3129; }

.excerpt-note {
  margin: 18px 0 0; text-align: center; font-size: 14.5px; color: var(--text-dim);
}
.excerpt-note strong { color: var(--gold); font-weight: 400; }

.feature-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn--outline { color: var(--text-ink); border-color: var(--text-ink); }
.btn--outline:hover, .btn--outline:focus-visible { background: var(--text-ink); color: var(--bone); transform: translateY(-2px); }
.feature-foot { margin: 16px 0 0; font-size: 13px; color: var(--text-ink-2); }

/* =========================================================
   STATION GRID
   ========================================================= */
.station-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: clamp(14px, 2vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
@media (min-width: 900px) { .station-grid { grid-template-columns: repeat(3, 1fr); } }

.station-grid a {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  height: 100%; padding: 20px 16px 22px; text-align: center; text-decoration: none;
  background: var(--bone); color: var(--text-ink); border-radius: 14px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.station-grid a:hover, .station-grid a:focus-visible {
  transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.55);
}
.station-art {
  display: grid; place-items: center; width: 100%; height: 128px;
  background: #fff; border-radius: 10px; padding: 12px; overflow: hidden;
}
.station-art img { max-height: 100%; width: auto; object-fit: contain; }
.station-name {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1.1;
}
.pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(207,23,23,.1); border: 1px solid rgba(207,23,23,.35);
  font-size: 12px; letter-spacing: .04em; color: #8f1414;
}
.grid-note { margin: 28px 0 0; text-align: center; font-size: 14px; color: var(--text-dim); }
.grid-note a { color: var(--gold); }

/* torn red edge */
.torn { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; pointer-events: none; }
.torn svg { width: 100%; height: clamp(44px, 5.5vw, 84px); }
.torn path { fill: var(--red); }

/* =========================================================
   SPOTLIGHT — light band with angled edges
   ========================================================= */
.section--spotlight {
  background: linear-gradient(180deg, var(--red) 0 26px, var(--clay) 26px);
  color: var(--text-ink);
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(80px, 10vw, 130px);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 34px), 0 100%);
  margin-bottom: -1px;
}

.poster-row { display: grid; gap: clamp(16px, 2.4vw, 26px); grid-template-columns: 1fr; }
@media (min-width: 820px) { .poster-row { grid-template-columns: 1fr 1fr; } }

.poster {
  display: block; padding: clamp(22px, 3vw, 34px);
  background: var(--bone); border: 2px solid var(--text-ink); border-radius: 4px;
  text-decoration: none; color: var(--text-ink);
  box-shadow: 8px 8px 0 rgba(34,28,22,.9);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.poster:hover, .poster:focus-visible {
  transform: translate(-4px, -4px); box-shadow: 12px 12px 0 var(--red); background: #fff;
}
.poster-num {
  display: block; font-family: var(--display); font-weight: 900; font-size: 34px;
  line-height: 1; color: var(--red); margin-bottom: 10px;
}
.poster-title {
  display: block; font-family: var(--display); font-weight: 900; line-height: 1;
  font-size: clamp(26px, 3vw, 38px); text-transform: uppercase; margin-bottom: 10px;
}
.poster-desc { display: block; font-size: 15px; color: var(--text-ink-2); margin-bottom: 12px; }
.poster-url { display: block; font-size: 12.5px; letter-spacing: .06em; color: #8f1414; word-break: break-word; }

/* =========================================================
   ROSTER (Eneas Links)
   ========================================================= */
.lede--dark { color: var(--text-dim); }

/* grouped roster (Featured in the Song / In the Broadcast / Named in the Closing) */
.group + .group { margin-top: clamp(46px, 6vw, 72px); }
.group-head { margin-bottom: 18px; }
.group-title {
  font-family: var(--display); font-weight: 800; line-height: 1;
  font-size: clamp(24px, 2.8vw, 34px); letter-spacing: .04em; text-transform: uppercase;
  color: var(--gold);
}
.group-title::before {
  content: ""; display: inline-block; width: 30px; height: 3px; margin: 0 12px 8px 0;
  background: var(--red-hot); vertical-align: middle;
}
.group-sub { margin: 8px 0 0; font-size: 14.5px; color: var(--text-dim); max-width: 70ch; }

.roster { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.roster > li { border-bottom: 1px solid var(--line); }

.roster a, .roster-static {
  display: grid; align-items: center; gap: 6px 20px;
  grid-template-columns: 62px 1fr; padding: 20px 4px;
  text-decoration: none; color: var(--text);
  transition: background-color .2s ease, padding-left .2s ease;
}
@media (min-width: 900px) {
  .roster a, .roster-static { grid-template-columns: 72px 1fr auto; padding: 22px 6px; }
}
.roster a:hover, .roster a:focus-visible { background: rgba(207,23,23,.1); padding-left: 16px; }

.roster-num {
  font-family: var(--display); font-weight: 900; font-size: clamp(26px, 3vw, 36px);
  line-height: 1; color: var(--red-hot);
}
.roster-name {
  display: block; font-family: var(--display); font-weight: 800; line-height: 1;
  font-size: clamp(24px, 3.4vw, 40px); text-transform: uppercase; color: var(--bone);
}
.roster-desc { display: block; margin-top: 6px; font-size: 14.5px; color: var(--text-dim); }
.roster-url {
  grid-column: 2; font-size: 12.5px; letter-spacing: .07em; color: var(--gold);
  white-space: nowrap; word-break: break-word;
}
@media (min-width: 900px) { .roster-url { grid-column: 3; justify-self: end; } }
.roster-static { opacity: .85; }

.roster-extra {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: -6px 0 16px; padding-left: 62px;
}
@media (min-width: 900px) { .roster-extra { padding-left: 78px; } }
.roster-extra a {
  display: inline-block; padding: 5px 13px; border-radius: 999px;
  border: 1px solid var(--line); font-size: 12.5px; letter-spacing: .05em;
  text-decoration: none; color: var(--text-dim);
  transition: border-color .2s ease, color .2s ease, background-color .2s ease;
}
.roster-extra a:hover, .roster-extra a:focus-visible {
  border-color: var(--gold); color: var(--gold); background: rgba(232,181,63,.08);
}

/* =========================================================
   CHIP GRID (Other Mentions)
   ========================================================= */
.group .chip-grid { margin-top: 0; }
.chip-grid {
  list-style: none; margin: 42px 0 0; padding: 0;
  display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
@media (min-width: 820px) { .chip-grid { grid-template-columns: repeat(3, 1fr); } }
.chip-grid a, .chip-static {
  display: block; height: 100%; padding: 20px 22px;
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 12px;
  text-decoration: none; color: var(--text);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}
.chip-grid a:hover, .chip-grid a:focus-visible {
  transform: translateY(-4px); border-color: var(--gold); background: #23201c;
}
.chip-name {
  display: block; font-family: var(--display); font-weight: 800; font-size: 24px;
  letter-spacing: .03em; text-transform: uppercase; color: var(--bone); line-height: 1.1;
}
.chip-desc { display: block; margin-top: 6px; font-size: 14px; color: var(--text-dim); }
.chip-url { display: block; margin-top: 8px; font-size: 12px; letter-spacing: .06em; color: var(--gold); word-break: break-word; }
.chip-static { opacity: .8; }

/* =========================================================
   CONTACT
   ========================================================= */
.section--contact {
  background: var(--red);
  padding: clamp(52px, 7vw, 92px) 0;
  border-top: 3px solid var(--ink);
}
.contact-inner { text-align: center; }
.contact-title {
  font-family: var(--display); font-weight: 900; line-height: .95;
  font-size: clamp(38px, 6vw, 72px); text-transform: uppercase; color: #fff;
}
.contact-copy { margin: 12px auto 26px; max-width: 52ch; color: rgba(255,255,255,.86); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { position: relative; background: var(--ink); padding: 56px 0 48px; text-align: center; }
.footer-mark {
  margin: 0 0 22px; font-family: var(--display); font-weight: 900;
  font-size: clamp(38px, 6.5vw, 74px); line-height: 1; letter-spacing: .02em;
  text-transform: uppercase; color: rgba(242,233,220,.14);
}
.footer-links { margin: 24px 0 10px; font-size: 15px; color: var(--text-dim); }
.footer-links a { color: var(--bone); text-decoration: none; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--gold); text-decoration: underline; }
.footer-links span { margin: 0 8px; }
.footer-note { margin: 0 0 6px; font-size: 13.5px; color: var(--text-dim); }
.footer-copy { margin: 0; font-size: 12.5px; color: #6b6157; }

.to-top {
  position: absolute; right: var(--pad); bottom: 48px;
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  border: 2px solid var(--line); color: var(--bone); text-decoration: none; font-size: 20px;
  transition: background-color .2s ease, border-color .2s ease;
}
.to-top:hover, .to-top:focus-visible { background: var(--red); border-color: var(--red); }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =========================================================
   MOBILE NAV + SMALL SCREENS
   ========================================================= */
@media (max-width: 1023px) {
  .social--header { display: none; }

  .nav-toggle {
    display: grid; place-content: center; gap: 7px; order: 3;
    width: 46px; height: 42px; padding: 0; background: none; border: 0; cursor: pointer;
    position: relative; z-index: 260;
  }
  .nav-toggle span {
    display: block; width: 30px; height: 3px; background: var(--bone);
    transition: transform .28s ease, opacity .2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

  .site-nav {
    position: fixed; top: 0; right: 0; z-index: 250;
    width: min(380px, 86vw); height: 100dvh; padding: 100px 34px 40px;
    background: var(--ink-2); border-left: 1px solid var(--line);
    transform: translateX(105%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: none; }
  .site-nav ul { display: block; }
  .site-nav li + li { border-top: 1px solid var(--line); }
  .site-nav a {
    display: block; padding: 15px 2px; font-size: 26px; border-bottom: 0;
  }
  .site-nav a:hover, .site-nav a:focus-visible { border-bottom: 0; padding-left: 10px; }

  .nav-scrim { position: fixed; inset: 0; z-index: 150; background: rgba(0,0,0,.65); backdrop-filter: blur(2px); }
}

@media (max-width: 620px) {
  .platforms { display: grid; grid-template-columns: 1fr 1fr; }
  .platforms a { justify-content: center; padding: 11px 10px; font-size: 15px; letter-spacing: .05em; }
  .platforms i { font-size: 9.5px; }
}

@media (max-width: 560px) {
  .station-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .station-art { height: 96px; padding: 8px; }
  .station-name { font-size: 16px; }
  .pill { font-size: 11px; padding: 3px 9px; }
  .fact-list li { grid-template-columns: 1fr; gap: 2px; }
  .tape-frame { rotate: 0deg; }
  .section--spotlight { clip-path: none; }
  .to-top { position: static; margin: 28px auto 0; }
}

@media print {
  .site-header, .site-nav, .nav-scrim, .scroll-cue, .to-top, .ticker, .grain, .tape-frame { display: none !important; }
  body { background: #fff; color: #000; }
  .section-title, .roster-name, .chip-name, .contact-title { color: #000; }
}
