:root {
    --wsu-burgundy: #570e17;
    --wsu-burgundy-mid: #6e1420;
    --wsu-burgundy-deep: #481018;
    --accent-gold: #c9a227;
    --accent-apricot: #d97757;
    --accent-rose: #e11d48;
    --accent-mint: #0d9488;
    --accent-ice: #0284c7;
    --bg: #f5f1eb;
    --bg-wash: #faf8f5;
    --text: #1c1917;
    --text-soft: rgba(28, 25, 23, 0.68);
    --text-muted: rgba(28, 25, 23, 0.5);
    --card: #ffffff;
    --card-edge: rgba(87, 14, 23, 0.08);
    --stroke: rgba(28, 25, 23, 0.09);
    --radius: 22px;
    --radius-sm: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(87, 14, 23, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 65% 55% at 100% 15%, rgba(13, 148, 136, 0.06) 0%, transparent 42%),
        radial-gradient(ellipse 50% 45% at 0% 85%, rgba(201, 162, 39, 0.08) 0%, transparent 40%),
        linear-gradient(175deg, var(--bg-wash) 0%, #f0ebe3 40%, #f7f4ef 100%);
}

/* Animated background elements */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sound-wave {
    position: absolute;
    width: 5px;
    background: linear-gradient(180deg, var(--wsu-burgundy), var(--accent-apricot), var(--accent-mint));
    border-radius: 3px;
    animation: wave 2.4s ease-in-out infinite;
    opacity: 0.1;
    box-shadow: 0 0 10px rgba(87, 14, 23, 0.12);
}

.sound-wave:nth-child(1) { left: 10%; height: 60px; animation-delay: 0s; }
.sound-wave:nth-child(2) { left: 20%; height: 80px; animation-delay: 0.2s; }
.sound-wave:nth-child(3) { left: 30%; height: 40px; animation-delay: 0.4s; }
.sound-wave:nth-child(4) { left: 40%; height: 100px; animation-delay: 0.6s; }
.sound-wave:nth-child(5) { left: 50%; height: 70px; animation-delay: 0.8s; }
.sound-wave:nth-child(6) { left: 60%; height: 90px; animation-delay: 1s; }
.sound-wave:nth-child(7) { left: 70%; height: 50px; animation-delay: 1.2s; }
.sound-wave:nth-child(8) { left: 80%; height: 110px; animation-delay: 1.4s; }
.sound-wave:nth-child(9) { left: 90%; height: 75px; animation-delay: 1.6s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1.5); }
}

/* Header */
header {
    background: linear-gradient(180deg, var(--wsu-burgundy) 0%, var(--wsu-burgundy-deep) 100%);
    border-bottom: 1px solid rgba(232, 196, 104, 0.22);
    box-shadow: 0 4px 20px rgba(87, 14, 23, 0.2);
    padding: 14px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

header.is-scrolled {
    background: linear-gradient(180deg, var(--wsu-burgundy-deep) 0%, #34060c 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(232, 196, 104, 0.12);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.logo img {
    height: 44px;
    width: auto;
    max-width: min(280px, 58vw);
    object-fit: contain;
    display: block;
}

.logo:hover,
.logo:focus {
    text-decoration: none;
    opacity: 0.94;
    filter: drop-shadow(0 2px 12px rgba(232, 196, 104, 0.25));
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    padding: 10px 18px;
    border-radius: 999px;
    position: relative;
    border: 1px solid transparent;
}

nav a:hover {
    color: #fff;
    background: rgba(232, 196, 104, 0.14);
    border-color: rgba(232, 196, 104, 0.22);
    transform: translateY(-1px);
}

/* Hero Section — split layout + local imagery */
.hero-wrap {
    position: relative;
    z-index: 10;
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(40px, 6vw, 72px) 24px 48px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wsu-burgundy);
    margin-bottom: 18px;
    opacity: 0.92;
}

.hero-copy h1 {
    font-size: clamp(2.6rem, 7.5vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.04;
    margin-bottom: 22px;
    background: linear-gradient(
        125deg,
        var(--wsu-burgundy) 0%,
        #9a3412 18%,
        var(--accent-gold) 38%,
        var(--accent-apricot) 58%,
        var(--accent-mint) 78%,
        var(--accent-ice) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy .hero-lead {
    font-size: clamp(1.05rem, 2.4vw, 1.32rem);
    margin-bottom: 28px;
    color: var(--text-soft);
    max-width: 36rem;
    line-height: 1.65;
}

.hero-copy .cta-button {
    margin-top: 8px;
}

.hero-figure {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.hero-on-air {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(87, 14, 23, 0.92);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-on-air span.rec {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-figure-main {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    box-shadow:
        0 24px 48px rgba(87, 14, 23, 0.15),
        0 0 0 1px var(--card-edge);
}

.hero-figure-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-figure-inset {
    position: absolute;
    bottom: -12px;
    left: -8px;
    width: 42%;
    max-width: 200px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--bg-wash);
    box-shadow: 0 16px 36px rgba(28, 25, 23, 0.15);
    z-index: 1;
}

.hero-figure-inset img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

/* “Radio at a glance” image strip */
.radio-strip {
    position: relative;
    z-index: 10;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.radio-strip-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.radio-strip-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 10px 28px rgba(87, 14, 23, 0.1);
    border: 1px solid var(--card-edge);
}

.radio-strip-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.radio-strip-card:hover img {
    transform: scale(1.05);
}

.radio-strip-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 16px;
    background: linear-gradient(transparent, rgba(28, 25, 23, 0.85));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.cta-button {
    background: linear-gradient(135deg, var(--wsu-burgundy-mid) 0%, #8b2d3a 45%, var(--accent-apricot) 100%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 999px;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(87, 14, 23, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 40px rgba(87, 14, 23, 0.5),
        0 0 0 1px rgba(232, 196, 104, 0.35) inset;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.55s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Shows Section */
.shows-section {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 40px 110px;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    text-align: center;
    margin-bottom: 52px;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    color: var(--text);
}

.section-title::after {
    content: '';
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, var(--wsu-burgundy), var(--accent-mint));
    display: block;
    margin: 22px auto 0;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(87, 14, 23, 0.15);
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 28px;
}

.show-card {
    background: var(--card);
    border: 1px solid var(--card-edge);
    border-radius: var(--radius);
    padding: 28px 28px 26px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(87, 14, 23, 0.08), 0 2px 8px rgba(28, 25, 23, 0.04);
}

.show-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-apricot), var(--accent-mint));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.show-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 48px rgba(87, 14, 23, 0.12),
        0 8px 16px rgba(28, 25, 23, 0.06);
    border-color: rgba(13, 148, 136, 0.28);
}

.show-card:hover::before {
    opacity: 1;
}

.show-title {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--wsu-burgundy);
}

.show-description {
    color: var(--text-soft);
    line-height: 1.65;
    margin-bottom: 22px;
    font-size: 0.96rem;
}

.audio-player {
    width: 100%;
    height: 52px;
    margin-bottom: 0;
    border-radius: 999px;
    background: #f0ebe4;
    border: 1px solid var(--stroke);
}

.audio-player::-webkit-media-controls-panel {
    background: linear-gradient(90deg, #faf6f1, #e8e2da);
    border-radius: 999px;
}

.audio-player-wrap {
    margin-bottom: 18px;
}

.beat-visualizer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 12px;
    padding: 8px 12px 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(87, 14, 23, 0.06) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 1px solid rgba(87, 14, 23, 0.08);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.beat-wave {
    display: block;
    width: 100%;
    height: 40px;
    border-radius: 10px;
    background: rgba(87, 14, 23, 0.04);
    vertical-align: middle;
}

.beat-bars-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    height: 44px;
}

.beat-bar {
    width: 5px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent-mint) 0%, var(--wsu-burgundy) 100%);
    transform-origin: bottom center;
    transform: scaleY(0.2);
    opacity: 0.55;
    will-change: transform;
}

.show-card.is-now-playing .beat-visualizer {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 0 24px rgba(13, 148, 136, 0.15);
    background: linear-gradient(180deg, rgba(87, 14, 23, 0.08) 0%, rgba(13, 148, 136, 0.1) 100%);
}

.show-card.is-now-playing .beat-bar {
    opacity: 1;
    box-shadow: 0 0 10px rgba(13, 148, 136, 0.35);
}

.show-card.is-now-playing {
    border-color: rgba(13, 148, 136, 0.45);
    box-shadow:
        0 12px 40px rgba(87, 14, 23, 0.12),
        0 0 0 1px rgba(13, 148, 136, 0.2),
        0 0 40px rgba(13, 148, 136, 0.12);
    animation: nowPlayingGlow 1.6s ease-in-out infinite;
}

.show-card.is-now-playing::before {
    opacity: 1;
}

@keyframes nowPlayingGlow {
    0%, 100% {
        box-shadow:
            0 12px 40px rgba(87, 14, 23, 0.12),
            0 0 0 1px rgba(13, 148, 136, 0.18),
            0 0 28px rgba(13, 148, 136, 0.1);
    }
    50% {
        box-shadow:
            0 16px 48px rgba(87, 14, 23, 0.14),
            0 0 0 1px rgba(13, 148, 136, 0.35),
            0 0 48px rgba(13, 148, 136, 0.22);
    }
}

/* Live indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(201, 162, 39, 0.12));
    border: 1px solid rgba(225, 29, 72, 0.22);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    color: #be123c;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-apricot);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--accent-apricot);
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(1.25); }
    100% { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 12px 18px;
    }

    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    nav {
        justify-content: center;
        gap: 6px;
    }

    nav a {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy {
        text-align: center;
        order: 1;
    }

    .hero-copy .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-figure {
        order: 0;
        max-width: 420px;
    }

    .hero-figure-inset {
        left: auto;
        right: 8px;
        bottom: -8px;
    }

    .hero-on-air {
        right: 12px;
        top: 12px;
    }

    .radio-strip-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .radio-strip-card {
        aspect-ratio: 16 / 9;
    }

    .shows-section {
        padding: 0 18px 72px;
    }

    .shows-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .show-card {
        padding: 22px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .show-card.is-now-playing {
        animation: none;
    }

    .beat-bar {
        transform: scaleY(0.35) !important;
    }
}