:root {
  --ink: #08070c;
  --ink-soft: #111018;
  --paper: #f7f3ec;
  --paper-muted: #e9e3da;
  --white: #fff;
  --cyan: #25e7f3;
  --cyan-dark: #02a9bd;
  --coral: #ff3d54;
  --orange: #ff7a36;
  --lime: #c5ff41;
  --muted: #a7a3ad;
  --line: rgba(255,255,255,.15);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Black", Inter, ui-sans-serif, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  overflow-x: hidden;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.demo-ribbon {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .25rem 1rem;
  background: var(--lime);
  color: var(--ink);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 50;
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem clamp(1.25rem, 4vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  width: max-content;
  text-decoration: none;
}
.brand img { width: 52px; height: 52px; border-radius: 50%; box-shadow: 0 0 30px rgba(37,231,243,.18); }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 1rem; letter-spacing: -.04em; }
.brand-copy strong span { color: var(--cyan); }
.brand-copy small { margin-top: .35rem; font-size: .55rem; font-weight: 800; letter-spacing: .22em; color: var(--muted); }

.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.5rem); }
.site-nav a {
  position: relative;
  color: #ddd9e2;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.55rem;
  width: 100%;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.header-play {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1.1rem;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.header-play:hover { background: var(--cyan); transform: translateY(-2px); }

.play-symbol {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}
.is-playing .play-symbol, .js-play.is-playing .play-symbol {
  width: 8px;
  height: 10px;
  margin-left: 0;
  border: 0;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(920px, 100svh);
  padding: clamp(10rem, 17vh, 12.5rem) clamp(1.25rem, 7vw, 8rem) 5.5rem;
  background-image:
    linear-gradient(90deg, rgba(5,8,13,.98) 0%, rgba(5,8,13,.9) 37%, rgba(5,8,13,.28) 68%, rgba(5,8,13,.08) 100%),
    linear-gradient(0deg, rgba(8,7,12,.75) 0%, transparent 32%),
    url('/assets/radio-hero.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero-glow { position: absolute; z-index: -2; width: 42vw; height: 42vw; border-radius: 50%; filter: blur(90px); opacity: .18; }
.hero-glow-one { right: -20vw; top: 8%; background: var(--coral); }
.hero-glow-two { left: -25vw; bottom: -25%; background: var(--cyan); }

.hero-copy { width: min(56%, 760px); position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 1.35rem;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.live-dot { display: inline-block; width: 8px; height: 8px; margin-right: .5rem; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,61,84,.14); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(255,61,84,0); } }

h1, h2 { margin: 0; font-family: var(--display); line-height: .91; letter-spacing: -.075em; text-transform: uppercase; }
h1 { font-size: clamp(4rem, 8.4vw, 9rem); }
h2 { color: var(--ink); font-size: clamp(3.25rem, 6.8vw, 7rem); }
h1 em, h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.5px currentColor; }
h1 em { color: var(--cyan); -webkit-text-stroke: 0; text-shadow: 0 0 34px rgba(37,231,243,.14); }
h2 em { color: transparent; -webkit-text-stroke-color: var(--ink); }

.hero-intro { max-width: 560px; margin: 2rem 0 0; color: #c8c3ce; font-size: clamp(1rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }
.primary-play {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .7rem 1.5rem .7rem .7rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease;
}
.primary-play:hover { border-color: var(--cyan); transform: translateY(-3px); }
.primary-play-icon { display: grid; place-items: center; width: 58px; height: 58px; margin: 0; color: var(--ink); background: var(--cyan); border: 0; border-radius: 50%; }
.primary-play-icon.play-symbol { width: 58px; height: 58px; border: 0; }
.primary-play-icon.play-symbol::before { content: ""; width: 0; height: 0; margin-left: 4px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid currentColor; }
.primary-play.is-playing .primary-play-icon::before { width: 10px; height: 14px; margin-left: 0; border: 0; border-left: 4px solid currentColor; border-right: 4px solid currentColor; }
.primary-play small { display: block; color: var(--muted); font-size: .58rem; font-weight: 800; letter-spacing: .16em; }
.primary-play strong { display: block; margin-top: .12rem; font-size: .92rem; }
.text-link { font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; text-underline-offset: .4rem; }

.hero-visual { position: absolute; inset: 120px 0 0 47%; pointer-events: none; }
.visual-play { position: absolute; left: 65%; top: 39%; z-index: 3; display: grid; place-items: center; width: 82px; height: 82px; color: var(--ink); background: rgba(255,255,255,.93); border: 1px solid rgba(255,255,255,.85); border-radius: 50%; transform: translate(-50%,-50%); cursor: pointer; pointer-events: auto; box-shadow: 0 12px 55px rgba(0,0,0,.55), 0 0 0 14px rgba(255,255,255,.08); transition: transform .25s ease, background .25s ease; }
.visual-play:hover { background: var(--cyan); transform: translate(-50%,-50%) scale(1.08); }
.visual-play.is-playing { background: var(--coral); color: var(--white); }
.signal-card { position: absolute; right: 7%; bottom: 12%; z-index: 4; display: flex; align-items: center; gap: 1rem; width: min(76%, 360px); padding: 1rem 1.2rem; background: rgba(8,7,12,.86); border: 1px solid rgba(255,255,255,.18); border-radius: 15px; backdrop-filter: blur(20px); box-shadow: 0 20px 45px rgba(0,0,0,.45); pointer-events: auto; }
.signal-card small { display: block; color: var(--coral); font-size: .57rem; font-weight: 900; letter-spacing: .16em; }
.signal-card strong { display: block; margin-top: .25rem; font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.equalizer { display: flex; align-items: center; gap: 3px; height: 30px; }
.equalizer i { display: block; width: 3px; height: 28%; border-radius: 99px; background: var(--cyan); animation: sound .7s ease-in-out infinite alternate paused; }
.equalizer i:nth-child(2n) { height: 75%; animation-delay: -.3s; }
.equalizer i:nth-child(3n) { height: 48%; animation-delay: -.5s; }
body.is-playing .equalizer i { animation-play-state: running; }
@keyframes sound { to { height: 95%; } }

.hero-facts { position: absolute; left: clamp(1.25rem, 7vw, 8rem); right: clamp(1.25rem, 7vw, 8rem); bottom: 2rem; display: flex; gap: clamp(2rem, 5vw, 5rem); padding-top: 1.4rem; border-top: 1px solid var(--line); }
.hero-facts div { display: flex; align-items: baseline; gap: .65rem; }
.hero-facts strong { font-size: 1.15rem; color: var(--lime); }
.hero-facts span { color: var(--muted); font-size: .75rem; }

.marquee { overflow: hidden; margin-block: -1rem; padding: 2rem 0; color: var(--ink); background: var(--cyan); border-block: 1px solid var(--ink); clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%); }
.marquee div { display: flex; width: max-content; align-items: center; gap: 1.6rem; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.8rem); letter-spacing: -.03em; animation: marquee 24s linear infinite; }
.marquee b { font-size: 1rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 8rem); }
.program-section { color: var(--ink); background: var(--paper); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 3rem; margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.section-heading .eyebrow { color: #e22f45; }
.section-heading > p { width: min(36%, 430px); margin: 0 0 .5rem; color: #645f69; }

.now-card { display: grid; grid-template-columns: 170px 1fr auto; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; padding: clamp(1.2rem, 3vw, 2rem); color: var(--white); background: var(--ink-soft); border-radius: 24px; overflow: hidden; box-shadow: 0 24px 65px rgba(17,16,24,.15); }
.now-art { position: relative; aspect-ratio: 1; }
.now-art img { width: 100%; height: 100%; object-fit: cover; border-radius: 17px; }
.on-air-badge { position: absolute; left: .7rem; bottom: .7rem; padding: .35rem .6rem; color: var(--white); background: var(--coral); border-radius: 999px; font-size: .6rem; font-weight: 900; letter-spacing: .15em; box-shadow: 0 5px 20px rgba(0,0,0,.35); }
.overline { color: var(--cyan); font-size: .65rem; font-weight: 900; letter-spacing: .2em; }
.now-copy h3 { margin: .45rem 0 .3rem; font-size: clamp(1.4rem, 2.5vw, 2.35rem); letter-spacing: -.04em; }
.now-copy p { margin: 0; color: var(--muted); }
.now-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.25rem; }
.round-play { display: grid; place-items: center; width: 46px; height: 46px; color: var(--ink); background: var(--cyan); border: 0; border-radius: 50%; cursor: pointer; }
.mini-equalizer { height: 24px; }
.now-time { min-width: 135px; padding-left: 2rem; border-left: 1px solid var(--line); text-align: right; }
.now-time span { display: block; font-family: var(--display); font-size: 1.45rem; text-transform: uppercase; }
.now-time small { color: var(--muted); }

.schedule { margin-top: 1.2rem; border-top: 1px solid #d5cfc6; }
.schedule-loading { padding: 2rem 1rem; color: #69636e; }
.schedule-loading span { display: inline-block; width: 10px; height: 10px; margin-right: .6rem; border-radius: 50%; background: var(--cyan-dark); animation: pulse 1.3s infinite; }
.schedule-row { display: grid; grid-template-columns: 130px 1fr auto; align-items: center; gap: 2rem; min-height: 96px; padding: 1rem .6rem; border-bottom: 1px solid #d5cfc6; }
.schedule-row time { font-size: .85rem; font-weight: 900; letter-spacing: .06em; }
.schedule-row h3 { margin: 0; font-size: clamp(1rem, 2vw, 1.35rem); letter-spacing: -.025em; }
.schedule-row p { margin: .2rem 0 0; color: #706b73; font-size: .82rem; }
.schedule-row .row-state { padding: .35rem .65rem; border: 1px solid #bcb5ab; border-radius: 999px; color: #645f68; font-size: .6rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.schedule-row.current { margin-inline: -.6rem; padding-inline: 1.2rem; background: #e8ffae; border: 0; border-radius: 14px; }
.schedule-row.current .row-state { color: var(--white); background: var(--coral); border-color: var(--coral); }
.schedule-note { padding: 1rem 0; color: #736e76; font-size: .72rem; }

.story-section { display: grid; grid-template-columns: minmax(280px, .92fr) 1.08fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; background: var(--lime); color: var(--ink); }
.story-media { position: relative; max-width: 560px; }
.story-photo { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px 80px 4px 4px; background: #211b1e; transform: rotate(-2deg); box-shadow: 18px 18px 0 rgba(8,7,12,.12); }
.story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 72%; filter: saturate(.75) contrast(1.08); }
.story-caption { position: absolute; right: -1.5rem; bottom: 2rem; padding: 1rem 1.3rem; color: var(--white); background: var(--ink); transform: rotate(2deg); }
.story-caption span { display: block; color: var(--cyan); font-size: .58rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.story-caption strong { font-size: 1rem; }
.story-copy .eyebrow { color: #b82037; }
.story-copy .lead { margin-top: 2rem; font-size: clamp(1.15rem, 2vw, 1.55rem); font-weight: 700; line-height: 1.4; }
.story-copy p:not(.eyebrow):not(.lead) { color: #3d3b38; }
.outline-link { display: inline-flex; justify-content: space-between; min-width: min(100%, 290px); margin-top: 1.5rem; padding: 1rem 0; border-bottom: 2px solid var(--ink); font-size: .8rem; font-weight: 900; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }

.vision-section { background: #efebe3; color: var(--ink); }
.vision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: #c9c2b8; border: 1px solid #c9c2b8; }
.vision-card { position: relative; min-height: 315px; padding: clamp(1.5rem, 4vw, 3rem); background: var(--paper); overflow: hidden; }
.vision-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -70px; bottom: -70px; border-radius: 50%; background: var(--cyan); opacity: .18; }
.vision-card.next::after { background: var(--coral); }
.card-number { color: #aaa39a; font-family: var(--display); font-size: .8rem; }
.status-pill { position: absolute; top: 2rem; right: 2rem; padding: .4rem .65rem; color: #087681; background: #c9f8f9; border-radius: 999px; font-size: .58rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.vision-card.next .status-pill { color: #a01c31; background: #ffd7db; }
.vision-card h3 { margin: clamp(4rem, 8vw, 7rem) 0 .8rem; font-size: clamp(1.55rem, 3vw, 2.5rem); letter-spacing: -.05em; }
.vision-card p { max-width: 470px; margin: 0; color: #625d65; }

.cta-section { position: relative; isolation: isolate; display: grid; place-items: center; min-height: 560px; padding: 6rem 1.25rem 9rem; text-align: center; overflow: hidden; background: var(--ink); }
.cta-section::before { content: ""; position: absolute; z-index: -2; width: min(72vw, 760px); height: min(72vw, 760px); border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.018); }
.cta-section::after { content: ""; position: absolute; z-index: -1; width: 35vw; height: 35vw; border-radius: 50%; background: linear-gradient(135deg,var(--cyan),var(--coral)); filter: blur(110px); opacity: .12; }
.cta-section h2 { color: var(--white); }
.cta-section h2 em { -webkit-text-stroke-color: var(--cyan); }
.cta-play { display: inline-flex; align-items: center; gap: .8rem; margin-top: 2.3rem; padding: 1rem 1.5rem; color: var(--ink); background: var(--cyan); border: 0; border-radius: 999px; font-size: .8rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem clamp(1.25rem, 7vw, 8rem) 7rem; border-top: 1px solid var(--line); color: var(--muted); background: var(--ink); font-size: .75rem; }
.footer-brand { color: var(--white); }
.footer-brand img { width: 44px; height: 44px; }
.site-footer > a:last-child { text-underline-offset: .35rem; }

.player { position: fixed; left: 50%; bottom: 18px; z-index: 100; display: grid; grid-template-columns: auto auto minmax(160px, 1fr) auto auto auto; align-items: center; gap: .85rem; width: min(calc(100% - 2rem), 850px); padding: .65rem .8rem; background: rgba(19,17,25,.9); border: 1px solid rgba(255,255,255,.16); border-radius: 17px; box-shadow: 0 20px 70px rgba(0,0,0,.5); backdrop-filter: blur(24px); transform: translateX(-50%); }
.player-play { display: grid; place-items: center; width: 48px; height: 48px; color: var(--ink); background: var(--cyan); border: 0; border-radius: 12px; cursor: pointer; }
.player > img { width: 48px; height: 48px; border-radius: 10px; }
.player-copy { min-width: 0; line-height: 1.25; }
.player-copy small { display: block; color: var(--coral); font-size: .52rem; font-weight: 900; letter-spacing: .13em; }
.player-copy .live-dot { width: 5px; height: 5px; margin-right: .25rem; box-shadow: none; }
.player-copy strong { display: block; margin-top: .25rem; font-size: .78rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-equalizer { width: 38px; }
.volume-control { display: flex; align-items: center; gap: .55rem; }
.volume-control svg { width: 18px; fill: var(--muted); }
.volume-control input { width: 90px; accent-color: var(--cyan); }
.player-state { min-width: 74px; color: var(--muted); font-size: .62rem; text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-play { display: none; }
  .menu-toggle { justify-self: end; display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; padding: 0; background: rgba(255,255,255,.08); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 17px; height: 2px; background: var(--white); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; top: 88px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 1.25rem; background: rgba(8,7,12,.97); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 1rem 0; }
  .hero { min-height: auto; padding-top: 10rem; }
  .hero-copy { width: 58%; }
  .hero-visual { left: 53%; }
  .hero-facts { position: relative; left: auto; right: auto; bottom: auto; margin-top: 8rem; }
  .story-section { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 720px) {
  .demo-ribbon { font-size: .56rem; }
  .site-header { top: 30px; min-height: 76px; }
  .brand img { width: 43px; height: 43px; }
  .hero { padding-top: 9rem; padding-bottom: 4rem; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(3.6rem, 17vw, 6.5rem); }
  .hero-intro { max-width: 92%; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero { background-position: 62% center; }
  .hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(5,8,13,.38), rgba(5,8,13,.06) 55%, rgba(5,8,13,.82) 88%); pointer-events: none; }
  .hero-visual { position: relative; inset: auto; width: 100%; height: 300px; margin: 1.5rem auto 0; }
  .visual-play { left: 74%; top: 45%; width: 68px; height: 68px; }
  .signal-card { right: 0; bottom: 0; width: min(94%, 350px); }
  .hero-facts { margin-top: 6rem; gap: 1.5rem; overflow-x: auto; }
  .hero-facts div { min-width: max-content; flex-direction: column; gap: .1rem; }
  .section-heading { align-items: start; flex-direction: column; gap: 1.5rem; }
  .section-heading > p { width: 100%; }
  .now-card { grid-template-columns: 94px 1fr; }
  .now-time { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: baseline; padding: 1rem 0 0; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
  .schedule-row { grid-template-columns: 78px 1fr; gap: 1rem; }
  .schedule-row .row-state { grid-column: 2; width: max-content; }
  .story-section { grid-template-columns: 1fr; }
  .story-media { width: calc(100% - 1rem); }
  .story-copy { padding-top: 1.5rem; }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-card { min-height: 280px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .player { grid-template-columns: auto minmax(0,1fr) auto; }
  .player > img, .player-equalizer, .volume-control { display: none; }
  .player-state { min-width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
