:root {
    --bg: #090a0d;
    --bg-elevated: #151116;
    --bg-soft: #1f1714;
    --bg-contrast: #2a1f1a;
    --line: rgba(255, 183, 132, 0.16);
    --text: #f6f3ed;
    --muted: #b8b3a8;
    --orange: #ff6a13;
    --orange-bright: #ff9142;
    --orange-deep: #c74900;
    --orange-soft: rgba(255, 106, 19, 0.2);
    --orange-glow: rgba(255, 106, 19, 0.3);
    --cream: #fff4e9;
    --success: #72d79b;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: min(1120px, calc(100vw - 2rem));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 19, 0.34), transparent 24rem),
        radial-gradient(circle at 84% 16%, rgba(255, 145, 66, 0.24), transparent 22rem),
        radial-gradient(circle at 52% 78%, rgba(255, 106, 19, 0.18), transparent 26rem),
        radial-gradient(circle at 78% 62%, rgba(255, 196, 130, 0.12), transparent 18rem),
        linear-gradient(140deg, #070809 0%, #110d0b 22%, #181017 48%, #0d1016 72%, #090a0d 100%);
    background-size: 150% 150%, 140% 140%, 170% 170%, 160% 160%, 100% 100%;
    color: var(--text);
    font-family: "Sora", sans-serif;
    line-height: 1.6;
    animation: ambientGlow 18s ease-in-out infinite alternate;
}

img {
    display: block;
    max-width: 100%;
}

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

iframe {
    width: 100%;
    border: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page-shell {
    min-height: 100vh;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(15, 11, 9, 0.94), rgba(10, 11, 14, 0.82));
    border-bottom: 1px solid rgba(255, 126, 37, 0.22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex: 1 1 auto;
    min-width: 0;
}

.brand img {
    width: clamp(120px, 34vw, 220px);
    height: auto;
    max-height: 58px;
    object-fit: contain;
    object-position: left center;
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-copy strong {
    font-size: 0.98rem;
    font-weight: 700;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.82rem;
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.28rem;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text);
}

.menu-toggle span:not(.visually-hidden) {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 99px;
}

.site-nav {
    position: fixed;
    inset: 80px 1rem auto 1rem;
    padding: 1rem;
    background: rgba(18, 19, 24, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
}

.site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-nav ul {
    display: grid;
    gap: 0.35rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    color: var(--muted);
    font-size: 0.96rem;
}

.site-nav a.is-active,
.site-nav a:hover {
    background: var(--orange-soft);
    box-shadow: inset 0 0 0 1px rgba(255, 145, 66, 0.18);
    color: var(--text);
}

.site-main {
    display: grid;
    gap: 1.25rem;
    padding: 1.25rem 0 0;
}

.hero-section,
.page-hero,
.content-section,
.site-footer {
    position: relative;
}

.hero-section {
    padding: 1rem 0 0;
}

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

.hero-copy,
.hero-player-card,
.split-card,
.player-panel,
.stack-card,
.event-grid,
.sponsor-card,
.store-card,
.empty-state,
.chat-panel,
.schedule-tabs,
.footer-top {
    background: linear-gradient(180deg, rgba(255, 120, 32, 0.12), rgba(255, 255, 255, 0.03) 18%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 1.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 128, 38, 0.12);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: #ffb27f;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.4rem, 7vw, 4.8rem);
    letter-spacing: -0.04em;
}

h2 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.15rem;
}

.hero-subtitle,
.page-hero p,
.section-intro p,
.split-copy p,
.feature-card p,
.person-card p,
.event-lines p,
.event-promoter,
.store-card p,
.empty-state p,
.footer-brand p,
.footer-column li,
.stack-card p {
    color: var(--muted);
}

.hero-highlights {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 1.1rem 0 0;
    list-style: none;
}

.hero-highlights li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--cream);
    font-size: 0.95rem;
}

.hero-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 14px rgba(255, 106, 19, 0.7);
}

.listen-buttons {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.listen-button {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 129, 41, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 152, 77, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.listen-button:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(255, 129, 41, 0.22), rgba(255, 255, 255, 0.04));
    border-color: rgba(255, 166, 101, 0.28);
}

.listen-label {
    color: #ffb27f;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.hero-player-card,
.player-panel,
.chat-panel {
    padding: 1rem;
}

.player-panel {
    display: grid;
    gap: 0.8rem;
}

.player-panel__label {
    color: #ffb27f;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-player-card iframe,
.player-panel iframe {
    min-height: 330px;
    background: #fff;
    border-radius: 18px;
}

.live-now-card {
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 150, 72, 0.26);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 106, 19, 0.18), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 0 1px rgba(255, 168, 105, 0.08);
}

.live-now-card__label {
    color: #ffb27f;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.live-now-card strong {
    font-size: 1rem;
    line-height: 1.35;
}

.live-now-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.content-section {
    padding: 0.25rem 0;
}

.split-card {
    display: grid;
    gap: 1rem;
    padding: 1.3rem;
}

.section-intro {
    max-width: 42rem;
    margin-bottom: 1.25rem;
}

.section-intro--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.people-grid,
.feature-grid,
.store-grid,
.sponsor-grid {
    display: grid;
    gap: 1rem;
}

.person-card,
.feature-card,
.store-card,
.sponsor-card {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 129, 41, 0.1), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    border-radius: 22px;
}

.person-card__media img,
.store-card img,
.sponsor-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.sponsor-card img {
    aspect-ratio: auto;
    max-height: 320px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.02);
}

.person-card__body,
.store-card__body,
.feature-card {
    padding: 1rem;
}

.person-card__meta {
    color: #ffb27f;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.feature-grid {
    grid-template-columns: 1fr;
}

.feature-card {
    position: relative;
    min-height: 100%;
}

.feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-grid {
    display: grid;
    gap: 1rem;
    padding: 1rem;
}

.event-poster img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

.event-copy {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.event-meta {
    display: grid;
    gap: 0.8rem;
}

.event-meta div {
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, rgba(255, 132, 48, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    border-radius: 16px;
}

.event-meta span {
    display: block;
    color: #ffb27f;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-meta strong {
    display: block;
    margin-top: 0.2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-bright));
    color: #170d07;
    font-weight: 700;
    transition: 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 106, 19, 0.3);
}

.button-secondary {
    background: rgba(255, 128, 38, 0.08);
    border-color: rgba(255, 154, 78, 0.2);
    color: var(--text);
}

.button-secondary:hover {
    background: rgba(255, 128, 38, 0.16);
}

.schedule-tabs {
    padding: 1rem;
}

.schedule-tabs__controls {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}

.schedule-tab {
    flex: 0 0 auto;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 153, 76, 0.16);
    border-radius: 999px;
    background: rgba(255, 118, 24, 0.06);
    color: var(--muted);
    font: inherit;
}

.schedule-tab.is-active {
    background: linear-gradient(135deg, rgba(255, 106, 19, 0.22), rgba(255, 160, 86, 0.14));
    color: var(--text);
    border-color: rgba(255, 106, 19, 0.45);
    box-shadow: 0 8px 20px rgba(255, 106, 19, 0.16);
}

.schedule-panel {
    display: none;
    gap: 0.8rem;
}

.schedule-panel.is-active {
    display: grid;
}

.schedule-entry {
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 164, 94, 0.14);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 120, 32, 0.08), rgba(255, 255, 255, 0.025));
}

.schedule-entry__time {
    color: #ffb27f;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.schedule-entry__copy p {
    margin: 0.25rem 0 0;
}

.page-hero {
    padding: 1rem 0 0;
}

.page-hero--compact .container,
.page-hero .container {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.player-page__grid,
.chat-page__grid {
    display: grid;
    gap: 1rem;
}

.chat-launch-grid {
    display: grid;
    gap: 1rem;
}

.player-panel--wide iframe {
    min-height: 360px;
}

.chat-panel iframe {
    min-height: 450px;
    background: #fff;
    border-radius: 18px;
}

.stack-card {
    padding: 1.2rem;
}

.mixcloud-chat-card {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.mixcloud-chat-card h2 {
    font-size: clamp(1.55rem, 4vw, 2.3rem);
}

.chat-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

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

.store-card__meta span {
    color: var(--orange);
    font-weight: 700;
}

.pill {
    display: inline-flex;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(114, 215, 155, 0.16);
    color: var(--success);
    font-size: 0.82rem;
    font-weight: 600;
}

.empty-state {
    padding: 2rem;
    text-align: center;
}

.site-footer {
    padding: 0.25rem 0 2rem;
}

.footer-top {
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
}

.footer-brand img {
    width: min(100%, 240px);
    max-height: 96px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 0.85rem;
}

.footer-column h3 {
    margin-bottom: 0.85rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.footer-bottom {
    padding-top: 1rem;
    color: var(--muted);
    text-align: center;
}

@keyframes ambientGlow {
    0% {
        background-position: 8% 14%, 92% 16%, 50% 78%, 80% 62%, 50% 50%;
    }
    50% {
        background-position: 18% 22%, 82% 10%, 58% 86%, 72% 56%, 50% 50%;
    }
    100% {
        background-position: 12% 18%, 88% 20%, 46% 74%, 78% 66%, 50% 50%;
    }
}

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

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

@media (min-width: 700px) {
    .hero-grid,
    .split-card,
    .event-grid,
    .chat-launch-grid,
    .player-page__grid,
    .chat-page__grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

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

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

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

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

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

@media (max-width: 520px) {
    .brand {
        gap: 0.7rem;
    }

    .brand img {
        width: clamp(110px, 40vw, 170px);
        max-height: 52px;
    }

    .brand-copy small {
        display: none;
    }
}

@media (min-width: 980px) {
    .menu-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        inset: auto;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

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

    .site-nav a {
        padding: 0.7rem 0.95rem;
    }

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

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

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

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

    .footer-top {
        grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
        align-items: start;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }

    body {
        animation: none;
    }
}
