@font-face { font-family: 'Bookman DF'; src: url('/assets/Bookman-Demi.otf') format('opentype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Bookman DF'; src: url('/assets/Bookman-LightItalic.otf') format('opentype'); font-style: italic; font-weight: 300; font-display: swap; }
@font-face { font-family: 'Nimbus DF'; src: url('/assets/NimbusSans-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Nimbus DF'; src: url('/assets/NimbusSans-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }

:root {
  --ink: #171411;
  --paper: #f3ead8;
  --paper-deep: #dfcfb4;
  --orange: #ed7535;
  --rust: #bd3e26;
  --rose: #dc7188;
  --amber: #f0b23f;
  --line-dark: rgba(23, 20, 17, .24);
  --line-light: rgba(243, 234, 216, .24);
  --max: 1520px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: 'Nimbus DF', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}
body.player-open { overflow: hidden; }
button, a, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.page-grain {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  mix-blend-mode: overlay;
  filter: contrast(165%) brightness(125%);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.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; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 4rem);
  min-height: 92px;
  padding: 1.15rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(243,234,216,.13);
  text-transform: uppercase;
}
.micro-mark { display: inline-flex; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 700; letter-spacing: .13em; }
.mark-star { color: var(--amber); font-size: 1.15rem; }
nav { display: flex; gap: clamp(1.4rem, 3vw, 3.5rem); }
nav a, .footer-links a {
  position: relative;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
}
nav a::after, .footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.55rem;
  height: 2px;
  background: var(--amber);
  transition: right .25s ease;
}
nav a.active::after, nav a:hover::after, nav a:focus-visible::after,
.footer-links a:hover::after, .footer-links a:focus-visible::after { right: 0; }
.broadcast-note { font-size: .65rem; font-weight: 700; line-height: 1.35; letter-spacing: .15em; text-align: right; }
.header-live {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem .85rem;
  border: 1px solid rgba(243,234,216,.65);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.live-dot { display: inline-block; width: .52rem; height: .52rem; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(237,117,53,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(237,117,53,0); } 100% { box-shadow: 0 0 0 0 rgba(237,117,53,0); } }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(560px, 1.08fr) minmax(520px, .92fr);
  align-items: center;
  gap: 1rem;
  padding: 9.25rem clamp(1.25rem, 4vw, 4.5rem) 8.5rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='p'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.22' numOctaves='5' seed='8'/%3E%3CfeColorMatrix values='1 0 0 0 .25 0 1 0 0 .2 0 0 1 0 .15 0 0 0 .7 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23p)'/%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  z-index: -3;
  inset: 0;
  background: radial-gradient(circle at 58% 45%, rgba(83,51,30,.2), transparent 40%), var(--ink);
}
.ribbon-set { position: absolute; z-index: -1; pointer-events: none; }
.ribbon-set i { position: absolute; display: block; border-radius: 999px; transform-origin: center; }
.hero-ribbons { inset: 0; overflow: hidden; }
.hero-ribbons i {
  width: 102vw;
  height: clamp(58px, 7.2vw, 122px);
  left: 27vw;
  top: 22%;
  transform: rotate(24deg);
  box-shadow: -10px 15px 30px rgba(0,0,0,.12);
}
.hero-ribbons i:nth-child(1) { background: var(--rose); transform: translateY(-180%) rotate(24deg); }
.hero-ribbons i:nth-child(2) { background: var(--rust); transform: translateY(-60%) rotate(24deg); }
.hero-ribbons i:nth-child(3) { background: var(--orange); transform: translateY(60%) rotate(24deg); }
.hero-ribbons i:nth-child(4) { background: var(--amber); transform: translateY(180%) rotate(24deg); }
.hero-ribbons::after {
  content: '';
  position: absolute;
  width: 78vw;
  height: 42vw;
  right: -28vw;
  bottom: -25vw;
  border: clamp(48px, 6.5vw, 110px) solid var(--rose);
  border-radius: 50%;
  box-shadow: 0 0 0 clamp(34px, 4.6vw, 78px) var(--rust), 0 0 0 clamp(68px, 9.2vw, 156px) var(--orange), 0 0 0 clamp(102px, 13.8vw, 234px) var(--amber);
  transform: rotate(-10deg);
  opacity: .96;
}

.hero-copy { position: relative; z-index: 3; align-self: center; max-width: 830px; }
.eyebrow { margin: 0 0 1.2rem; font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero-copy .eyebrow { color: var(--amber); }
.hero h1 {
  margin: 0;
  width: min(54vw, 850px);
  line-height: 0;
}
.hero-wordmark {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,.06)) drop-shadow(0 8px 18px rgba(0,0,0,.18));
}
.hero-slogan { margin: 2rem 0 .6rem; color: var(--orange); font-size: clamp(.9rem, 1.45vw, 1.45rem); font-weight: 700; letter-spacing: .32em; }
.hero-position { margin: 0 0 1.9rem; font-size: clamp(1.05rem, 1.6vw, 1.45rem); letter-spacing: .06em; }
.hero-meta { margin: 1.4rem 0 0; font-size: .71rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.hero-meta b { color: var(--amber); margin: 0 .45rem; }

.listen-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  padding: .48rem 1.55rem .48rem .48rem;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: var(--amber);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.listen-button:hover, .listen-button:focus-visible { transform: translateY(-2px); background: var(--paper); }
.listen-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: var(--paper); background: var(--ink); }
.play-symbol { display: inline-block; transform: translateX(.08em); }
.is-playing .play-symbol { font-size: 0; transform: none; }
.is-playing .play-symbol::before { content: '❚❚'; font-size: .8rem; letter-spacing: .08em; }

.record-stage { position: relative; z-index: 4; min-height: min(54vw, 760px); align-self: end; }
.cover-frame {
  position: absolute;
  z-index: 2;
  width: min(35vw, 560px);
  aspect-ratio: 1;
  left: 0;
  top: 45%;
  padding: 0;
  border: 11px solid rgba(243,234,216,.92);
  outline: 1px solid rgba(23,20,17,.65);
  background: var(--rust);
  cursor: pointer;
  box-shadow: 0 3rem 5.5rem rgba(0,0,0,.48), 0 0 0 1px rgba(255,255,255,.16) inset;
  transform: translateY(-50%) rotate(-1.7deg);
  overflow: hidden;
}
.cover-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(105deg, transparent 0 38px, rgba(255,255,255,.08) 39px, transparent 40px), radial-gradient(circle at 30% 25%, transparent 0 45%, rgba(0,0,0,.13) 100%);
  mix-blend-mode: overlay;
}
.cover-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.cover-frame:hover img { transform: scale(1.025); }
.cover-sleeve { position: absolute; z-index: 2; inset: -12px; border: 1px solid rgba(0,0,0,.25); pointer-events: none; }
.cover-corner { position: absolute; z-index: 3; top: 1.15rem; right: 1.15rem; color: var(--paper); font-size: .58rem; font-weight: 700; line-height: 1.35; letter-spacing: .15em; text-align: right; text-transform: uppercase; text-shadow: 0 1px 10px rgba(0,0,0,.65); }
.now-playing {
  position: absolute;
  z-index: 3;
  right: -1rem;
  top: 54%;
  width: min(21vw, 330px);
  color: var(--paper);
  text-shadow: 0 2px 18px rgba(0,0,0,.82), 0 1px 2px rgba(0,0,0,.9);
  transform: translateY(-50%);
}
.now-playing > p { margin: 0 0 .6rem; color: var(--amber); font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.now-playing h2 { margin: 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(2rem, 3.3vw, 4rem); line-height: .85; letter-spacing: -.055em; text-transform: uppercase; }
.now-playing h3 { margin: .5rem 0 0; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; }
.track-line { position: relative; width: 100%; height: 16px; margin: 1.5rem 0 .8rem; }
.track-line::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 2px; background: rgba(243,234,216,.4); }
.track-line span { position: absolute; left: 0; top: 50%; width: 72%; height: 2px; background: var(--paper); }
.track-line i { position: absolute; left: 72%; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--paper); transform: translate(-50%,-50%); }
.round-play, .player-main, .full-play {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: transform .2s, background .2s, color .2s;
}
.round-play { color: var(--paper); background: rgba(23,20,17,.22); backdrop-filter: blur(3px); }
.round-play:hover, .round-play:focus-visible { transform: scale(1.05); background: var(--paper); color: var(--ink); }
.hero-side-note { position: absolute; z-index: 4; right: 2.1rem; top: 23%; display: grid; gap: .2rem; color: var(--paper); font-size: .62rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-microcopy { position: absolute; z-index: 4; left: clamp(1.25rem,4vw,4.5rem); bottom: 2.1rem; padding-left: 1rem; border-left: 2px solid var(--amber); font-size: .62rem; font-weight: 700; line-height: 1.42; letter-spacing: .17em; text-transform: uppercase; }

.history { position: relative; z-index: 4; padding: 3.7rem clamp(1.25rem, 4vw, 4.5rem) 4.5rem; color: var(--ink); background: var(--paper); }
.history-title-wrap { max-width: var(--max); margin: 0 auto 2.4rem; display: flex; align-items: end; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line-dark); }
.history-title-wrap > span { padding-bottom: 1rem; font-size: .68rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.history-title-wrap h2 { margin: 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(3.2rem, 6.5vw, 7rem); line-height: .8; letter-spacing: -.07em; }
.history-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.history-card { min-width: 0; display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 1rem; align-items: center; }
.history-art { width: 110px; aspect-ratio: 1; object-fit: cover; background: var(--ink); }
.placeholder-art { display: grid; place-items: center; color: var(--paper); font-family: 'Bookman DF', Georgia, serif; font-size: 2.2rem; background: linear-gradient(145deg, var(--rust), var(--rose)); }
.history-card:nth-child(2) .placeholder-art { background: linear-gradient(145deg, var(--ink), var(--amber)); }
.history-card:nth-child(3) .placeholder-art { background: linear-gradient(145deg, var(--rose), var(--ink)); }
.history-card:nth-child(4) .placeholder-art { background: linear-gradient(145deg, var(--orange), var(--ink)); }
.history-card--ghost { opacity: .22; }
.history-time { margin: 0 0 .3rem; color: #8a6f5b; font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.history-card h3 { margin: 0; overflow: hidden; font-size: 1rem; line-height: 1.1; letter-spacing: .02em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.history-copy > p:last-child { margin: .35rem 0 0; overflow: hidden; font-family: 'Bookman DF', Georgia, serif; font-size: .95rem; font-style: italic; font-weight: 300; text-overflow: ellipsis; white-space: nowrap; }

.sound { position: relative; min-height: 92svh; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(3rem, 8vw, 10rem); padding: clamp(7rem, 12vw, 13rem) clamp(1.25rem, 5vw, 6rem); overflow: hidden; color: var(--ink); background: var(--orange); }
.sound::after { content: ''; position: absolute; right: -10vw; bottom: -20vw; width: 55vw; height: 55vw; border-radius: 50%; border: 7vw solid var(--rose); box-shadow: 0 0 0 6vw var(--rust), 0 0 0 12vw var(--amber); opacity: .55; }
.sound-orbit { position: relative; z-index: 2; width: min(37vw, 620px); aspect-ratio: 1; justify-self: center; }
.sound-orbit span { position: absolute; inset: 0; border-radius: 50%; }
.orbit-one { background: var(--ink); box-shadow: 0 2.5rem 6rem rgba(0,0,0,.25); }
.orbit-two { inset: 13% !important; border: 3px solid rgba(243,234,216,.15); box-shadow: 0 0 0 18px rgba(243,234,216,.04), 0 0 0 40px rgba(243,234,216,.035), 0 0 0 64px rgba(243,234,216,.03); }
.orbit-three { inset: 43% !important; background: var(--paper); }
.sound-orbit b { position: absolute; z-index: 2; left: 50%; top: 50%; color: var(--rust); font-family: 'Bookman DF', Georgia, serif; font-size: clamp(2.4rem, 5vw, 5rem); transform: translate(-50%,-50%); }
.sound-copy { position: relative; z-index: 3; max-width: 790px; }
.sound-copy h2, .galaxy-lead h2, .about h2 { margin: 0 0 2.5rem; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(4rem, 7.5vw, 8.5rem); line-height: .72; letter-spacing: -.075em; }
em { color: var(--paper); font-family: 'Bookman DF', Georgia, serif; font-style: italic; font-weight: 300; }
.sound-text { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 700px; }
.sound-text p { margin: 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-style: italic; font-weight: 300; }
.sound-tags { display: flex; flex-wrap: wrap; gap: .7rem; margin: 2.3rem 0; }
.sound-tags span { padding: .58rem .9rem; border: 1px solid rgba(23,20,17,.5); border-radius: 999px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.manifesto { margin: 3rem 0 0; padding-top: 1.1rem; border-top: 1px solid rgba(23,20,17,.32); font-size: .73rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.galaxy { position: relative; isolation: isolate; min-height: 92svh; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; padding: clamp(7rem, 10vw, 11rem) clamp(1.25rem, 5vw, 6rem); overflow: hidden; }
.galaxy-ribbons { inset: 0; overflow: hidden; opacity: .45; }
.galaxy-ribbons i { width: 100vw; height: clamp(48px, 6vw, 90px); left: 42%; top: 48%; transform: rotate(-24deg); }
.galaxy-ribbons i:nth-child(1) { background: var(--rose); transform: translateY(-180%) rotate(-24deg); }
.galaxy-ribbons i:nth-child(2) { background: var(--rust); transform: translateY(-60%) rotate(-24deg); }
.galaxy-ribbons i:nth-child(3) { background: var(--orange); transform: translateY(60%) rotate(-24deg); }
.galaxy-ribbons i:nth-child(4) { background: var(--amber); transform: translateY(180%) rotate(-24deg); }
.galaxy-lead { position: relative; z-index: 2; max-width: 820px; }
.galaxy-lead h2 em { color: var(--orange); }
.galaxy-lead > p:not(.eyebrow) { max-width: 36rem; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.15rem, 1.8vw, 1.5rem); font-style: italic; font-weight: 300; }
.text-link { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1.5rem; padding-bottom: .4rem; border-bottom: 2px solid currentColor; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.text-link span { font-size: 1.1rem; transition: transform .2s; }
.text-link:hover span { transform: translate(.2rem,-.2rem); }
.team { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; background: rgba(23,20,17,.8); border-top: 1px solid rgba(243,234,216,.4); border-left: 1px solid rgba(243,234,216,.4); backdrop-filter: blur(7px); }
.team article { min-height: 220px; padding: clamp(1.4rem, 3vw, 2.6rem); border-right: 1px solid rgba(243,234,216,.4); border-bottom: 1px solid rgba(243,234,216,.4); }
.team span { color: var(--orange); font-size: .65rem; font-weight: 700; letter-spacing: .14em; }
.team h3 { margin: 3rem 0 .4rem; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.2rem, 2vw, 1.85rem); line-height: .95; letter-spacing: -.03em; }
.team p { margin: 0; font-size: .75rem; letter-spacing: .11em; text-transform: uppercase; }

.about { min-height: 90svh; display: grid; place-content: center; justify-items: center; padding: 8rem 1.25rem 10rem; text-align: center; color: var(--ink); background: var(--paper); }
.about .eyebrow { margin-bottom: 1.5rem; }
.about h2 { font-size: clamp(4rem, 10vw, 11rem); }
.about h2 em { color: var(--rose); }
.about > p:not(.eyebrow) { max-width: 660px; margin: 0 0 2.5rem; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.1rem, 1.8vw, 1.5rem); font-style: italic; font-weight: 300; }
.about .listen-button { background: var(--amber); }
.direct-stream { width: min(820px,100%); margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dark); }
.direct-stream > span { display: block; margin-bottom: .75rem; color: var(--rust); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.about .direct-stream > p { max-width: 690px; margin: 0 auto 1.5rem; font-family: 'Nimbus DF', Arial, sans-serif; font-size: 1rem; font-style: normal; font-weight: 400; }
.direct-stream a { display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 1.2rem; width: 100%; padding: 1.15rem 1.25rem; border: 1px solid var(--line-dark); color: var(--ink); background: rgba(23,20,17,.035); text-align: left; transition: background .2s ease, color .2s ease, transform .2s ease; }
.direct-stream a:hover, .direct-stream a:focus-visible { color: var(--paper); background: var(--ink); transform: translateY(-2px); }
.direct-stream strong { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.direct-stream code { overflow: hidden; font-family: 'Nimbus DF', Arial, sans-serif; font-size: .92rem; text-overflow: ellipsis; white-space: nowrap; }
.direct-stream b { font-size: 1.2rem; }

footer { display: grid; grid-template-columns: 1fr 1.5fr 1fr auto; gap: 2rem; align-items: end; padding: 4rem clamp(1.25rem, 4vw, 4.5rem) 9rem; border-top: 1px solid var(--line-light); }
.footer-logo { font-family: 'Bookman DF', Georgia, serif; font-size: 1.55rem; line-height: .7; letter-spacing: -.07em; }
footer p { margin: 0; color: rgba(243,234,216,.65); font-size: .7rem; }
.footer-links { display: flex; gap: 1.5rem; }

.persistent-player {
  position: fixed;
  z-index: 80;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  padding: .65rem .7rem .65rem 1.2rem;
  color: var(--paper);
  background: rgba(23,20,17,.96);
  border: 1px solid rgba(243,234,216,.28);
  box-shadow: 0 1.3rem 4rem rgba(0,0,0,.45);
  backdrop-filter: blur(18px);
  transform: translateY(calc(100% + 2rem));
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.persistent-player.visible { transform: translateY(0); }
.player-live { display: flex; align-items: center; gap: .55rem; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.mini-track { min-width: 0; display: flex; align-items: center; gap: .8rem; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; text-align: left; }
.mini-track img { width: 54px; height: 54px; flex: 0 0 auto; object-fit: cover; }
.mini-track > span { min-width: 0; display: grid; }
.mini-track strong, .mini-track small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mini-track strong { font-family: 'Bookman DF', Georgia, serif; font-size: .95rem; letter-spacing: -.02em; }
.mini-track small { font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.player-quality { padding: .4rem .7rem; border: 1px solid var(--line-light); border-radius: 999px; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.volume-control { display: flex; align-items: center; gap: .45rem; font-size: .65rem; }
.volume-control input { width: 84px; accent-color: var(--amber); }
.player-main { width: 54px; height: 54px; color: var(--ink); border-color: var(--amber); background: var(--amber); }

.full-player { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 0; border: 0; color: var(--paper); background: var(--ink); overflow: hidden; }
.full-player[open] { display: block; animation: reveal .35s ease; }
.full-player::backdrop { background: rgba(23,20,17,.94); }
@keyframes reveal { from { opacity: 0; transform: translateY(1.5rem); } }
.dialog-ribbons { inset: 0; overflow: hidden; opacity: .62; }
.dialog-ribbons i { width: 120vw; height: clamp(60px,8vw,120px); left: 42%; top: 45%; transform: rotate(-30deg); }
.dialog-ribbons i:nth-child(1) { background: var(--rose); transform: translateY(-180%) rotate(-30deg); }
.dialog-ribbons i:nth-child(2) { background: var(--rust); transform: translateY(-60%) rotate(-30deg); }
.dialog-ribbons i:nth-child(3) { background: var(--orange); transform: translateY(60%) rotate(-30deg); }
.dialog-ribbons i:nth-child(4) { background: var(--amber); transform: translateY(180%) rotate(-30deg); }
.close-player { position: absolute; z-index: 4; right: clamp(1.25rem,4vw,4rem); top: clamp(1.25rem,4vw,3rem); display: grid; place-items: center; width: 3rem; height: 3rem; padding: 0; border: 1px solid var(--paper); border-radius: 50%; color: var(--paper); background: var(--ink); cursor: pointer; font-size: 1.7rem; }
.full-player-inner { position: relative; z-index: 2; min-height: 100%; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem,7vw,8rem); max-width: 1500px; margin: auto; padding: clamp(5rem,8vw,8rem); }
.full-art-wrap img { width: min(100%,680px); aspect-ratio: 1; object-fit: cover; border: 10px solid var(--paper); box-shadow: 0 3rem 8rem rgba(0,0,0,.5); transform: rotate(-1.5deg); }
.full-player-copy h2 { margin: 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(3rem,7vw,7rem); line-height: .8; letter-spacing: -.07em; text-transform: uppercase; }
.full-player-copy > p:nth-of-type(2) { margin: .8rem 0 2rem; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; }
.full-play { color: var(--paper); background: var(--ink); }
.sound-signature { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--line-light); font-size: .78rem; font-weight: 700; line-height: 1.8; letter-spacing: .17em; text-transform: uppercase; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .broadcast-note { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 9rem; }
  .hero-copy { max-width: 880px; }
  .record-stage { min-height: 690px; }
  .cover-frame { width: min(55vw,560px); left: 23%; }
  .now-playing { right: 4%; width: min(28vw,330px); }
  .hero-side-note { top: 55%; }
  .history-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .sound { grid-template-columns: 1fr; }
  .sound-orbit { width: min(65vw,620px); }
  .galaxy { grid-template-columns: 1fr; }
  .team { max-width: 760px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-header { min-height: 76px; padding: .9rem 1rem; }
  nav { display: none; }
  .header-live { justify-self: end; }
  .hero { padding: 7.8rem 1rem 3.5rem; }
  .hero h1 { font-size: clamp(4.7rem,22vw,7rem); line-height: .68; }
  .hero h1 { width: min(95vw, 690px); }
  .hero-slogan { margin-top: 1.5rem; font-size: .76rem; letter-spacing: .22em; }
  .hero-position { font-size: 1rem; }
  .hero-meta { line-height: 2; }
  .hero-ribbons i { width: 140vw; height: 52px; left: 18vw; top: 49%; }
  .hero-ribbons i:nth-child(1) { transform: translateY(-180%) rotate(42deg); }
  .hero-ribbons i:nth-child(2) { transform: translateY(-60%) rotate(42deg); }
  .hero-ribbons i:nth-child(3) { transform: translateY(60%) rotate(42deg); }
  .hero-ribbons i:nth-child(4) { transform: translateY(180%) rotate(42deg); }
  .hero-ribbons::after { display: none; }
  .record-stage { min-height: 570px; margin-top: 2rem; }
  .cover-frame { width: min(82vw,440px); left: 1%; top: 45%; }
  .now-playing { right: 0; top: auto; bottom: 0; width: 62%; padding: 1rem; color: var(--paper); background: var(--ink); transform: none; }
  .now-playing h2 { font-size: 2rem; }
  .track-line::before, .track-line span { background: rgba(243,234,216,.42); }
  .track-line span, .track-line i { background: var(--paper); }
  .round-play { width: 48px; height: 48px; color: var(--paper); }
  .hero-side-note { display: none; }
  .hero-microcopy { display: none; }
  .history { padding: 3.5rem 1rem; }
  .history-title-wrap { display: block; }
  .history-title-wrap > span { display: block; }
  .history-grid { grid-template-columns: 1fr; }
  .history-card { grid-template-columns: 92px minmax(0,1fr); }
  .history-art { width: 92px; }
  .sound { padding: 6rem 1rem; }
  .sound-orbit { width: min(82vw,480px); }
  .sound-copy h2, .galaxy-lead h2, .about h2 { font-size: clamp(3.3rem,17vw,5.4rem); }
  .sound-text { grid-template-columns: 1fr; gap: 1rem; }
  .galaxy { padding: 6rem 1rem; }
  .team { grid-template-columns: 1fr; }
  .team article { min-height: 175px; }
  .team h3 { margin-top: 2rem; }
  .about { padding: 7rem 1rem 9rem; }
  .direct-stream a { grid-template-columns: 1fr auto; gap: .45rem 1rem; }
  .direct-stream code { grid-column: 1 / -1; grid-row: 2; font-size: .78rem; white-space: normal; overflow-wrap: anywhere; }
  .direct-stream b { grid-column: 2; grid-row: 1; }
  footer { grid-template-columns: 1fr; padding: 3.5rem 1rem 8.5rem; }
  .footer-links { flex-wrap: wrap; }
  .persistent-player { left: .5rem; right: .5rem; bottom: .5rem; grid-template-columns: minmax(0,1fr) auto; gap: .5rem; min-height: 68px; padding: .45rem; }
  .player-live, .player-quality, .volume-control { display: none; }
  .mini-track img { width: 52px; height: 52px; }
  .player-main { width: 52px; height: 52px; }
  .full-player-inner { grid-template-columns: 1fr; align-content: center; gap: 2rem; padding: 5.2rem 1.25rem 2rem; }
  .full-art-wrap img { width: min(78vw,430px); margin: auto; }
  .full-player-copy { text-align: center; }
  .full-player-copy .eyebrow { display: flex; justify-content: center; align-items: center; gap: .5rem; }
  .full-player-copy h2 { font-size: clamp(2.8rem,14vw,5rem); }
  .full-play { margin: 1.2rem auto 0; }
  .full-player-copy .sound-signature { display: none; }
}

/* Original brand mark, reserved for the top-left header position */
.brand-logo { display: block; width: clamp(94px, 8vw, 132px); }
.brand-logo img { width: 100%; height: auto; }

/* Galaxy Classics, separate editorial page */
.galaxy-page .site-header { position: absolute; }
.gc-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: 9rem clamp(1.25rem, 5vw, 6rem) 6rem;
  overflow: hidden;
}
.gc-hero::after {
  content: '';
  position: absolute;
  z-index: -3;
  inset: 0;
  background: radial-gradient(circle at 75% 42%, rgba(237,117,53,.22), transparent 32%), var(--ink);
}
.gc-ribbons { inset: 0; overflow: hidden; opacity: .72; }
.gc-ribbons i { width: 100vw; height: clamp(48px, 6vw, 92px); left: 35%; top: 54%; transform: rotate(-25deg); }
.gc-ribbons i:nth-child(1) { background: var(--rose); transform: translateY(-180%) rotate(-25deg); }
.gc-ribbons i:nth-child(2) { background: var(--rust); transform: translateY(-60%) rotate(-25deg); }
.gc-ribbons i:nth-child(3) { background: var(--orange); transform: translateY(60%) rotate(-25deg); }
.gc-ribbons i:nth-child(4) { background: var(--amber); transform: translateY(180%) rotate(-25deg); }
.gc-hero-copy { position: relative; z-index: 3; max-width: 930px; }
.gc-hero-copy .eyebrow { color: var(--amber); }
.gc-hero h1,
.gc-intro h2,
.gc-profile-copy h2,
.gc-section-heading h2,
.gc-close h2 {
  margin: 0;
  font-family: 'Bookman DF', Georgia, serif;
  font-weight: 700;
  line-height: .71;
  letter-spacing: -.075em;
}
.gc-hero h1 { font-size: clamp(4.5rem, 8.5vw, 10rem); }
.gc-hero h1 em { color: var(--orange); }
.gc-hero-copy > p:not(.eyebrow) { max-width: 690px; margin: 2.2rem 0 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.08rem,1.65vw,1.5rem); font-style: italic; font-weight: 300; }
.gc-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2rem; margin-top: 2.4rem; }
.gc-hero-portrait { position: relative; z-index: 4; width: min(34vw, 590px); margin: 3rem 0 0; justify-self: center; transform: rotate(1.4deg); }
.gc-hero-portrait::before { content: ''; position: absolute; inset: -15px 18px 24px -18px; z-index: -1; border: 1px solid rgba(243,234,216,.55); background: var(--rose); transform: rotate(-3deg); }
.gc-hero-portrait img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.82) contrast(1.08); box-shadow: 0 2.5rem 6rem rgba(0,0,0,.48); }
.gc-hero-portrait figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem .2rem 0; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gc-hero-portrait figcaption span { color: var(--amber); }

.gc-intro { padding: clamp(7rem, 11vw, 12rem) clamp(1.25rem, 6vw, 7rem); color: var(--ink); background: var(--paper); }
.gc-intro h2 { max-width: 1450px; font-size: clamp(4rem, 8.8vw, 10rem); }
.gc-intro h2 em { color: var(--rose); }
.gc-intro-grid { max-width: 1450px; margin: 4.2rem 0 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem,7vw,8rem); align-items: start; }
.gc-intro-grid > p { margin: 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.15rem,1.8vw,1.55rem); font-style: italic; font-weight: 300; }
.gc-pills { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.gc-pills span { min-height: 96px; display: grid; place-items: center; padding: 1.2rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); font-size: .69rem; font-weight: 700; letter-spacing: .14em; text-align: center; text-transform: uppercase; }

.gc-profile { position: relative; min-height: 86svh; display: grid; grid-template-columns: .3fr .9fr .8fr; gap: clamp(2.5rem,6vw,7rem); align-items: center; padding: clamp(7rem, 10vw, 11rem) clamp(1.25rem, 6vw, 7rem); color: var(--ink); background: var(--orange); overflow: hidden; }
.gc-profile::after { content: ''; position: absolute; right: -28vw; bottom: -39vw; width: 62vw; height: 62vw; border: 7vw solid var(--rose); border-radius: 50%; box-shadow: 0 0 0 5vw var(--rust), 0 0 0 10vw var(--amber); opacity: .55; }
.gc-profile-index { position: relative; z-index: 2; align-self: start; color: rgba(23,20,17,.14); font-family: 'Bookman DF', Georgia, serif; font-size: clamp(8rem, 17vw, 18rem); line-height: .68; letter-spacing: -.1em; }
.gc-profile-copy { position: relative; z-index: 2; }
.gc-profile-copy h2 { margin-bottom: 2rem; font-size: clamp(4.3rem,7.6vw,9rem); }
.gc-profile-copy > p:not(.eyebrow) { margin: 0 0 1.25rem; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.02rem,1.42vw,1.3rem); font-style: italic; font-weight: 300; }
.gc-profile blockquote { position: relative; z-index: 2; margin: 0; padding-top: 1.5rem; border-top: 1px solid rgba(23,20,17,.35); font-family: 'Bookman DF', Georgia, serif; font-size: clamp(2rem,3.8vw,4.2rem); font-weight: 700; line-height: .95; letter-spacing: -.04em; }

.gc-section { padding: clamp(7rem, 11vw, 12rem) clamp(1.25rem, 5vw, 6rem); }
.gc-soundmakers { color: var(--paper); background: var(--ink); }
.gc-backstage { color: var(--ink); background: var(--amber); }
.gc-section-heading { max-width: 1180px; margin-bottom: clamp(4rem,8vw,8rem); }
.gc-section-heading h2 { font-size: clamp(4rem,8vw,9rem); }
.gc-section-heading h2 em { color: var(--orange); }
.gc-section-heading > p:last-child { max-width: 630px; margin: 2.2rem 0 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.05rem,1.5vw,1.35rem); font-style: italic; font-weight: 300; }
.gc-section-heading-dark h2 em { color: var(--rust); }
.gc-feature-grid { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,6rem); }
.gc-person { display: grid; grid-template-columns: minmax(220px,.82fr) 1.18fr; align-items: end; gap: clamp(1.5rem,3vw,3.5rem); }
.gc-person figure { position: relative; margin: 0; }
.gc-person figure::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(243,234,216,.2); background: linear-gradient(150deg, transparent 55%, rgba(23,20,17,.32)); }
.gc-person img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.82) contrast(1.08); }
.gc-person-copy > span { color: var(--rose); font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.gc-person-copy h3 { margin: .8rem 0 1.25rem; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(2.3rem,4vw,4.8rem); line-height: .82; letter-spacing: -.06em; }
.gc-person-copy p { margin: 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1rem,1.25vw,1.18rem); font-style: italic; font-weight: 300; }
.gc-person-dark .gc-person-copy > span { color: var(--rust); }

.gc-close { min-height: 88svh; display: grid; place-content: center; justify-items: center; padding: 7rem 1.25rem 10rem; color: var(--ink); background: var(--paper); text-align: center; }
.gc-close h2 { max-width: 1450px; font-size: clamp(4rem,9vw,10rem); }
.gc-close h2 em { color: var(--rose); }
.gc-close > p:not(.eyebrow) { max-width: 700px; margin: 2.2rem auto 0; font-family: 'Bookman DF', Georgia, serif; font-size: clamp(1.08rem,1.55vw,1.4rem); font-style: italic; font-weight: 300; }
.gc-close .gc-actions { justify-content: center; }
.gc-close .text-link { color: var(--ink); }

@media (max-width: 1120px) {
  .gc-hero { grid-template-columns: 1fr .7fr; }
  .gc-profile { grid-template-columns: .35fr 1fr; }
  .gc-profile blockquote { grid-column: 2; }
  .gc-person { grid-template-columns: 1fr; align-items: start; }
  .gc-person figure { width: min(100%, 520px); }
}

@media (max-width: 720px) {
  .brand-logo { width: 92px; }
  .gc-hero { grid-template-columns: 1fr; padding: 7.5rem 1rem 6rem; }
  .gc-hero h1 { font-size: clamp(3.65rem,17vw,5.7rem); }
  .gc-hero-portrait { width: min(86vw,520px); margin-top: 2rem; }
  .gc-intro, .gc-section { padding: 6rem 1rem; }
  .gc-intro h2, .gc-section-heading h2, .gc-close h2 { font-size: clamp(3.2rem,15vw,5.1rem); }
  .gc-intro-grid, .gc-feature-grid { grid-template-columns: 1fr; }
  .gc-pills { grid-template-columns: 1fr 1fr; }
  .gc-profile { grid-template-columns: 1fr; padding: 6rem 1rem; }
  .gc-profile-index { position: absolute; right: -.2rem; top: 5rem; font-size: 12rem; }
  .gc-profile blockquote { grid-column: auto; }
  .gc-person { grid-template-columns: 1fr; }
  .gc-person-copy h3 { font-size: clamp(2.5rem,12vw,4rem); }
  .gc-close { padding: 6rem 1rem 9rem; }
}

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