:root {
    --bg: #07070a;
    --bg-soft: #0f1118;
    --surface: rgba(16, 18, 25, 0.78);
    --surface-strong: rgba(10, 11, 17, 0.94);
    --surface-alt: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(255, 255, 255, 0.18);
    --text: #f4f4f8;
    --muted: #aab1bd;
    --accent: #ff6c3c;
    --accent-secondary: #5fd7ff;
    --accent-gold: #ffd36f;
    --accent-green: #63f0c7;
    --danger: #ff6a7b;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --max-width: 1240px;
    --header-height: 92px;
    --player-height: 104px;
    --font-body: "Aptos", "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
    --font-display: "Bahnschrift", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    line-height: 1.5;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
    opacity: 0.2;
    z-index: -1;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-alt);
    color: var(--text);
    padding: 0.75rem 1rem;
}

input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible {
    outline: none;
    border-color: var(--accent-secondary);
    box-shadow: 0 0 0 2px rgba(95, 215, 255, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 1200;
    background: var(--accent);
    color: #07070a;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.skip-link:focus {
    left: 1rem;
}

.ambient {
    position: fixed;
    inset: auto;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.2;
    z-index: -1;
}

.ambient-one {
    width: 380px;
    height: 380px;
    top: 15%;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 108, 60, 0.2), transparent 70%);
}

.ambient-two {
    width: 480px;
    height: 480px;
    bottom: 10%;
    left: -150px;
    background: radial-gradient(circle, rgba(95, 215, 255, 0.15), transparent 70%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    backdrop-filter: blur(12px);
    background: rgba(7, 7, 10, 0.85);
    border-bottom: 1px solid var(--line);
}

.site-header__inner,
.main-shell,
.site-footer {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.wordmark__badge,
.cover-tile span,
.player-cover span {
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.15em;
}

.wordmark__badge {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: #07070a;
    box-shadow: 0 10px 20px rgba(255, 108, 60, 0.2);
}

.wordmark__copy {
    display: grid;
    gap: 0.1rem;
    min-width: 0;
}

.wordmark__copy strong,
.site-nav a,
.button,
.hero h1,
.page-intro h1,
.show-hero__copy h1,
.section-heading h2,
.glass-panel h2,
.glass-panel h3,
.host-card h2,
.show-card h2,
.podcast-card h2,
.podcast-card h3,
.legal-card strong {
    font-family: var(--font-display);
}

.wordmark__copy strong {
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wordmark__copy span {
    color: var(--muted);
    font-size: 0.85rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav > a:not(.button) {
    position: relative;
    color: var(--muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 0;
}

.site-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
    color: var(--text);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius-full);
    background: var(--surface-alt);
    color: var(--text);
    padding: 0.75rem 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.button:hover:not(:disabled) {
    background: var(--accent);
    color: #07070a;
}

.button-primary {
    background: var(--accent);
    color: #07070a;
    border-color: var(--accent);
}

.button-primary:hover {
    background: #e55a2b;
}

.button-ghost {
    background: var(--surface-alt);
    border-color: var(--line);
    color: var(--text);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

.button.is-playing {
    border-color: var(--accent-secondary);
    box-shadow: inset 0 0 0 1px rgba(95, 215, 255, 0.2);
}

.text-link {
    color: var(--accent-secondary);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.main-shell {
    padding: 2rem 0 calc(var(--player-height) + 3rem);
}

.section,
.hero,
.show-hero,
.live-stage,
.page-intro {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    margin-top: 2rem;
}

.page-intro {
    padding-top: 1.5rem;
}

.page-intro h1,
.hero h1,
.show-hero__copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.page-intro p:last-child,
.hero__lead {
    max-width: 52rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero {
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    gap: 2rem;
    align-items: start;
}

.hero__copy {
    padding-top: 1.5rem;
}

.hero__actions,
.podcast-card__actions,
.hero-player__actions,
.live-stage__controls,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.hero__facts li,
.tag-row span {
    border: 1px solid var(--line);
    border-radius: var(--radius-full);
    background: var(--surface-alt);
    padding: 0.5rem 0.85rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.hero__stage,
.hero-cards {
    display: grid;
    gap: 1rem;
}

.glass-panel,
.show-card,
.podcast-card,
.host-card,
.legal-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.glass-panel::before,
.show-card::before,
.podcast-card::before,
.host-card::before,
.legal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 50%);
    pointer-events: none;
}

.glass-panel,
.legal-card {
    padding: 1.5rem;
}

.hero-player {
    padding: 1.25rem;
}

.hero-player__top,
.podcast-card__meta,
.program-day-panel__header,
.live-stage__headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: var(--radius-full);
    background: rgba(255, 108, 60, 0.12);
    border: 1px solid rgba(255, 108, 60, 0.25);
    color: #ffd2c1;
    padding: 0.45rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-pill::before,
.player-live-dot {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px rgba(255, 108, 60, 0.6);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

.hero-player__media,
.live-stage__main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    margin: 1.25rem 0 1rem;
}

.mini-metric {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini-metric strong {
    font-size: 1.1rem;
    line-height: 1.2;
}

.cover-tile,
.player-cover {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(140deg, var(--accent), var(--accent-secondary));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.cover-tile::before,
.player-cover::before {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: calc(var(--radius-md) - 4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.4;
}

.cover-tile::after,
.player-cover::after {
    content: "";
    position: absolute;
    width: 130%;
    height: 2px;
    left: -15%;
    top: 45%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(-15deg);
    opacity: 0.6;
}

.cover-tile {
    width: 120px;
    aspect-ratio: 1;
}

.cover-tile--xl {
    width: min(300px, 100%);
    border-radius: var(--radius-lg);
}

.cover-tile span,
.player-cover span {
    position: absolute;
    inset: auto auto 1rem 1rem;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: rgba(8, 8, 11, 0.85);
    display: grid;
    place-items: center;
}

.card-grid,
.podcast-grid,
.host-grid,
.legal-grid {
    display: grid;
    gap: 1rem;
}

.card-grid--shows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.podcast-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.host-grid,
.legal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.show-card,
.podcast-card,
.host-card {
    padding: 1.2rem;
}

.show-card:hover,
.podcast-card:hover,
.host-card:hover {
    border-color: rgba(95, 215, 255, 0.25);
}

.show-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.show-card__body h2,
.show-card__body h3,
.podcast-card h2,
.podcast-card h3,
.host-card h2,
.glass-panel h2,
.glass-panel h3,
.legal-card strong,
.section-heading h2 {
    margin: 0 0 0.6rem;
    font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.show-card__body p,
.podcast-card p,
.host-card p,
.glass-panel p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.host-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.8rem 0;
}

.host-inline-list span {
    font-size: 0.85rem;
    color: #dfe4eb;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.marquee-strip {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 1.5rem auto 0;
    padding: 0.8rem 1rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #d8dde5;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.marquee-strip span {
    position: relative;
    padding-right: 1.2rem;
}

.marquee-strip span::after {
    content: "•";
    position: absolute;
    right: 0.2rem;
    color: var(--accent);
}

.section--split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feature-list {
    margin: 0.8rem 0 0;
    padding-left: 0.8rem;
    color: var(--muted);
}

.feature-list li + li {
    margin-top: 0.5rem;
}

.schedule-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.schedule-day {
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
}

.schedule-day h3 {
    margin: 0 0 0.8rem;
}

.schedule-row {
    display: grid;
    gap: 0.2rem;
    padding: 0.6rem 0;
    border-top: 1px solid var(--line);
}

.schedule-row:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.schedule-row span {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.live-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(290px, 0.8fr);
    gap: 1rem;
}

.live-stage__player,
.live-stage__sidebar {
    padding: 1.25rem;
}

.live-stage__copy h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 0.6rem;
    line-height: 1;
}

.stack-block {
    padding-top: 0.8rem;
    margin-top: 0.8rem;
    border-top: 1px solid var(--line);
}

.stack-block span,
.stack-card span,
.small-note {
    color: var(--muted);
}

.day-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.day-filter button {
    border: 1px solid var(--line);
    border-radius: var(--radius-full);
    background: var(--surface-alt);
    color: var(--muted);
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
}

.day-filter button.is-active {
    color: #07070a;
    background: var(--accent);
    border-color: var(--accent);
}

.program-day-panel {
    display: none;
}

.program-day-panel.is-visible {
    display: block;
}

.program-list {
    margin-top: 0.8rem;
}

.program-row {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem 0;
    border-top: 1px solid var(--line);
}

.program-row:first-child {
    border-top: 0;
}

.program-row__time {
    display: grid;
    gap: 0.2rem;
}

.program-row__time span {
    color: var(--muted);
    font-size: 0.8rem;
}

.show-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    padding-top: 1.5rem;
}

.show-hero__copy > p:last-of-type {
    max-width: 56rem;
}

.stack-list {
    display: grid;
    gap: 0.75rem;
}

.stack-card {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
}

.contact-form {
    display: grid;
    gap: 0.8rem;
}

.contact-form label {
    display: grid;
    gap: 0.4rem;
}

.contact-form label span {
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.checkbox-row {
    display: flex;
    align-items: start;
    gap: 0.7rem;
    font-size: 0.9rem;
}

.checkbox-row input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: 0.2rem;
    flex: 0 0 auto;
}

.form-feedback {
    min-height: 1.1rem;
    color: var(--accent-secondary);
    margin: 0;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.legal-warning {
    margin-bottom: 0.8rem;
    border-color: rgba(255, 211, 111, 0.15);
}

.legal-card {
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
}

.legal-card span {
    color: var(--muted);
    font-size: 0.85rem;
}

.legal-card strong {
    font-size: 1rem;
}

.is-placeholder {
    color: #ffe6c6;
}

.legal-richtext {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.admin-warning {
    margin-top: 0.8rem;
    color: #ffd2d8;
    font-weight: 700;
}

.site-footer {
    padding: 2rem 0 calc(var(--player-height) + 2.5rem);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(200px, 0.7fr) minmax(240px, 0.8fr);
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.02);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
    color: var(--muted);
}

.site-footer__bar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    padding: 0.8rem 0 0;
    font-size: 0.85rem;
}

.global-player {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(calc(100% - 2rem), 1100px);
    z-index: 1050;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(8, 9, 13, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.player-cover {
    width: 64px;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
}

.player-cover span {
    inset: auto auto 0.6rem 0.6rem;
    font-size: 1.1rem;
}

.player-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.player-copy strong,
.player-copy span,
.player-live-indicator {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.player-copy strong {
    font-size: 0.95rem;
}

.player-copy span {
    color: var(--muted);
    font-size: 0.85rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.player-action {
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #07070a;
    padding: 0.8rem 1rem;
    min-width: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.player-volume {
    display: grid;
    gap: 0.3rem;
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.player-volume input {
    width: 100px;
    padding: 0;
    background: transparent;
    border: 0;
}

.consent-banner {
    position: fixed;
    left: 50%;
    bottom: calc(var(--player-height) + 1.5rem);
    transform: translateX(-50%);
    width: min(calc(100% - 2rem), 900px);
    z-index: 1060;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(10, 11, 17, 0.96);
    box-shadow: var(--shadow);
}

.consent-banner__copy p {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.consent-banner__actions,
.consent-modal__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: end;
}

.consent-modal {
    position: fixed;
    inset: 0;
    z-index: 1150;
}

.consent-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 4, 7, 0.8);
    backdrop-filter: blur(4px);
}

.consent-modal__panel {
    position: relative;
    width: min(calc(100% - 2rem), 800px);
    margin: 8vh auto 0;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(10, 11, 17, 0.98);
    box-shadow: var(--shadow);
}

.consent-modal__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.consent-close {
    border: 0;
    border-radius: var(--radius-full);
    background: var(--surface-alt);
    color: var(--muted);
    padding: 0.6rem 0.8rem;
}

.consent-grid {
    display: grid;
    gap: 0.8rem;
    margin: 1rem 0;
}

.consent-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
}

.consent-card p {
    margin: 0.15rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
}

.toggle input {
    width: 1.05rem;
    height: 1.05rem;
}

.toggle-locked {
    padding: 0.5rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(95, 215, 255, 0.1);
    border: 1px solid rgba(95, 215, 255, 0.2);
    color: var(--accent-secondary);
    font-size: 0.8rem;
}

.consent-history {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.6rem;
}

.consent-history__entry {
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--line);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.admin-shell {
    padding: 2rem 0 3rem;
}

.admin-shell .page-intro h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 0.75rem;
    border-top: 1px solid var(--line);
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-table tr:first-child th,
.admin-table tr:first-child td {
    border-top: 0;
}

.admin-login {
    width: min(500px, calc(100% - 2rem));
    margin: 10vh auto 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1120px) {
    .hero,
    .live-stage,
    .section--split,
    .show-hero,
    .admin-grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }
    
    .podcast-grid,
    .host-grid,
    .legal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .schedule-preview {
        grid-template-columns: 1fr;
    }
    
    .site-footer__bar {
        flex-direction: column;
        gap: 0.6rem;
    }
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
    }
    
    .site-nav {
        position: fixed;
        top: calc(var(--header-height) + 0.6rem);
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.8rem;
        padding: 0.8rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--line);
        background: rgba(8, 9, 13, 0.98);
        transform: scale(0.95) translateY(-0.8rem);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    
    .site-nav.is-open {
        transform: scale(1) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .site-nav > a:not(.button)::after {
        display: none;
    }
    
    .card-grid--shows,
    .podcast-grid,
    .host-grid,
    .legal-grid,
    .legal-richtext {
        grid-template-columns: 1fr;
    }
    
    .show-card,
    .hero-player__media,
    .live-stage__main {
        grid-template-columns: 1fr;
    }
    
    .cover-tile {
        width: 100%;
    }
    
    .program-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .consent-banner {
        grid-template-columns: 1fr;
    }
    
    .wordmark__copy span {
        display: none;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 84px;
        --player-height: 120px;
    }
    
    .site-header__inner,
    .main-shell,
    .site-footer,
    .section,
    .hero,
    .show-hero,
    .live-stage,
    .page-intro {
        width: min(100% - 1rem, var(--max-width));
    }
    
    .hero__copy {
        padding-top: 0.6rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .global-player,
    .consent-banner {
        width: calc(100% - 1rem);
        left: 0.5rem;
        right: 0.5rem;
        transform: none;
    }
    
    .global-player {
        grid-template-columns: auto 1fr;
        align-items: start;
    }
    
    .player-controls {
        grid-column: 1 / -1;
        width: 100%;
        justify-content: space-between;
        margin-top: 0.6rem;
    }
    
    .player-volume input {
        width: 100%;
    }
    
    .consent-modal__panel {
        margin-top: 5vh;
        width: calc(100% - 1rem);
    }
}

@media (max-width: 480px) {
    .global-player {
        padding: 0.6rem;
    }
    
    .player-action {
        min-width: 80px;
        padding: 0.6rem;
        font-size: 0.8rem;
    }
}

/* Menu toggle */
.menu-toggle {
    border: 1px solid var(--line);
    border-radius: var(--radius-full);
    background: var(--surface-alt);
    color: var(--text);
    padding: 0.6rem 0.8rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}