/* ============================================
   ALEXANDER — V11 · The Offsite
   One purpose. The hero listens. Stories are earned.
   Three strengths of warm. Every default is a decision.
   ============================================ */

:root {
    /* Three strengths of warm — Ive's discipline */
    --warm:       #D19A6A;                        /* Full — dates, active borders, progress */
    --warm-mid:   rgba(209, 154, 106, 0.40);      /* Medium — stories, meta, secondary */
    --warm-ghost: rgba(209, 154, 106, 0.12);      /* Ghost — borders, backgrounds, dividers */

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; overflow: hidden; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================
   HERO — The room the music plays in.
   Silent = still, muted, almost gone.
   Playing = warmth bleeds in, the room breathes.
   ============================================ */
.hero {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    /* Silent state: desaturated, dim */
    filter: saturate(0.15) brightness(0.55);
    transform: scale(1);
    transition: filter 1.8s var(--ease-out), transform 0.3s linear;
    /* Zoom driven by --audio-energy in JS, but starts with gentle CSS animation */
    animation: slowZoom 30s ease-in-out infinite alternate;
}

/* When audio is playing, the hero wakes up */
body.audio-playing .hero__img {
    filter: saturate(calc(0.15 + var(--audio-energy, 0) * 1.2)) brightness(calc(0.55 + var(--audio-energy, 0) * 0.3));
    animation: slowZoomAlive 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.02); }
}

@keyframes slowZoomAlive {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero__wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.92) 100%),
        radial-gradient(ellipse at center top, transparent 50%, rgba(0,0,0,0.2) 100%);
    /* Wash responds to bass — room breathes with the beat */
    opacity: calc(1 - var(--audio-bass, 0) * 0.3);
    transition: opacity 0.15s linear;
}

/* Warm tint overlay — only visible when music plays */
.hero__warm {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 70%, rgba(209, 154, 106, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 2s var(--ease-out);
    pointer-events: none;
}
body.audio-playing .hero__warm {
    opacity: calc(0.4 + var(--audio-mids, 0) * 0.8);
}

/* ============================================
   HEADER — Logo as mark, nav says one thing at a time
   Virgil: "Pick two whisper signals, not four."
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

/* Logo: 28px mark — let it be a symbol, not a word */
.header__logo {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.header__logo:hover { opacity: 1; }

.nav {
    display: flex;
    gap: 28px;
}

/* Nav: lowercase + reduced opacity. That's two signals. Enough. */
.nav__link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
    padding: 12px 4px;
    position: relative;
    text-decoration: none;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--warm);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-out);
}

.nav__link--active { color: rgba(255, 255, 255, 0.7); }
.nav__link--active::after { transform: scaleX(1); }
.nav__link:hover { color: rgba(255, 255, 255, 0.6); }

.header__socials {
    display: flex;
    gap: 14px;
}

.header__socials a {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s;
    padding: 10px;
    margin: -10px -4px;
}
.header__socials a:hover { color: rgba(255, 255, 255, 0.8); }

/* ============================================
   MAIN — Content floats at the bottom
   ============================================ */
.main {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 8%, rgba(0,0,0,0.98) 22%);
    pointer-events: none;
}
.main > * { pointer-events: auto; }

.section {
    display: none;
    animation: sectionIn 0.6s var(--ease-out);
}

.section--active { display: block; }

@keyframes sectionIn {
    from { opacity: 0; transform: translateY(8px); filter: blur(2px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.section__inner {
    max-width: 520px;
    margin: 0 auto;
    padding: 8px 24px 28px;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    scrollbar-width: none;
}
.section__inner::-webkit-scrollbar { display: none; }

/* When player is visible, add bottom padding so content scrolls past it */
body.player-active .section__inner {
    padding-bottom: 80px;
}

.section__footer {
    display: block;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.2);
    padding: 20px 0 0;
    transition: color 0.3s;
}
.section__footer:hover { color: var(--warm); }

/* ============================================
   FEATURED TRACK — Canvas bleed is the one rule-break.
   Everything else: restraint.
   Killed: ::before radial glow, ::after sheen,
   letter-spacing animation, excessive shadows.
   ============================================ */
.featured {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.5s;
    position: relative;
}

.featured:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--warm-ghost);
}

.featured--playing {
    border-color: var(--warm-mid);
}

/* Art wrap — contains static art + Canvas video */
.featured__art-wrap {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.featured__art {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.featured__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.featured--playing .featured__canvas,
.featured--canvas-active .featured__canvas {
    opacity: 1;
}

/* Virgil's one broken rule — Canvas bleeds past its container when alive */
.featured--playing .featured__art-wrap,
.featured--canvas-active .featured__art-wrap {
    overflow: visible;
}

.featured--playing .featured__canvas,
.featured--canvas-active .featured__canvas {
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(209, 154, 106, 0.15);
}

.featured__text { flex: 1; min-width: 0; }

.featured__name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.featured__meta {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.01em;
}

/* Stories: hidden by default, earned after listening (JS adds .story--revealed) */
.featured__story {
    display: block;
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    color: var(--warm-mid);
    line-height: 1.5;
    margin-top: 3px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s var(--ease-out), opacity 0.8s var(--ease-out), margin-top 0.5s;
}

.featured__story.story--revealed {
    max-height: 40px;
    opacity: 1;
    margin-top: 4px;
}

.featured__play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: none;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.2s, border-color 0.3s, color 0.3s;
}
.featured__play svg {
    margin-left: 2px;
    width: 16px;
    height: 16px;
}

.featured:hover .featured__play {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.featured--playing .featured__play {
    border-color: var(--warm-mid);
    color: var(--warm);
}

/* ============================================
   TRACKS — with Canvas video reveals
   ============================================ */
.tracks {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 6px;
}

.track {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.track:last-child { border-bottom: none; }
.track:hover { background: rgba(255, 255, 255, 0.05); }
/* Track playing state — Canvas video in the art is the only signal. Quiet. */

/* Track art wrap — contains static art + Canvas video */
.track__art-wrap {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.track__art {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
}

.track__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.track--canvas-active .track__canvas {
    opacity: 1;
}

.track--canvas-active .track__art {
    opacity: 0;
}

.track__text {
    flex: 1;
    min-width: 0;
}

.track__name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stories: earned after listening (JS adds .story--revealed) */
.track__story {
    display: block;
    font-size: 9.5px;
    font-weight: 300;
    font-style: italic;
    color: var(--warm-mid);
    line-height: 1.45;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s var(--ease-out), opacity 0.8s var(--ease-out), margin-top 0.5s;
}

.track__story.story--revealed {
    max-height: 60px;
    opacity: 1;
    margin-top: 3px;
}


/* ============================================
   SPOTIFY CTA — Warm handoff, not an afterthought.
   Chesky: "The end of the music should feel like
   the end of a great meal. Not a door — an invitation."
   ============================================ */
.cta-spotify {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--warm-mid);
    transition: color 0.3s;
    border-top: 1px solid var(--warm-ghost);
    margin-top: 8px;
}
.cta-spotify:hover {
    color: var(--warm);
}
.cta-spotify svg {
    opacity: 0.7;
    transition: opacity 0.3s;
}
.cta-spotify:hover svg {
    opacity: 1;
}

/* ============================================
   LIVE — Show rows + forward-looking notify
   Chesky: "Sold out = social proof. But give them
   a reason to come back."
   ============================================ */
.shows {
    display: flex;
    flex-direction: column;
}

.show {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: opacity 0.2s;
}
.show:first-child { border-top: 1px solid rgba(255, 255, 255, 0.06); }
.show:hover { opacity: 0.8; }

.show__date {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--warm);
    min-width: 44px;
    flex-shrink: 0;
}

.show__venue {
    flex: 1;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.show__badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    background: var(--warm-ghost);
    border-radius: 4px;
    color: var(--warm);
    flex-shrink: 0;
}

.show__status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid var(--warm);
    border-radius: 100px;
    color: var(--warm);
    flex-shrink: 0;
    transition: all 0.2s;
}
.show:hover .show__status {
    background: var(--warm);
    color: #000;
}

.show__status--sold {
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
}
.show:hover .show__status--sold {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.35);
}

/* Notify — the forward-looking element */
.notify {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s;
}
.notify:focus-within {
    border-color: var(--warm-mid);
}

.notify__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
}
.notify__input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.notify__btn {
    padding: 14px 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm);
    transition: color 0.3s, background 0.3s;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}
.notify__btn:hover {
    background: var(--warm-ghost);
}

.notify--sent {
    justify-content: center;
    padding: 14px 16px;
    border-color: var(--warm-ghost);
}
.notify--sent .notify__confirm {
    font-size: 11px;
    font-weight: 400;
    color: var(--warm-mid);
    letter-spacing: 0.02em;
}


/* Video */
.video {
    position: relative;
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
    cursor: pointer;
}

.video__el,
.video__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video__thumb {
    display: block;
    filter: saturate(0.4) brightness(0.65) contrast(1.05);
}

.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s;
}

.video:hover .video__overlay { background: rgba(0, 0, 0, 0.05); }

.video__play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s, border-color 0.3s, color 0.3s;
}
.video__play svg {
    margin-left: 2px;
}
.video:hover .video__play {
    transform: scale(1.06);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.video__label {
    position: absolute;
    bottom: 14px;
    left: 16px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.4);
}

/* Mix link */
.mix {
    display: block;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: background 0.3s, border-color 0.3s;
}
.mix:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1);
}

.mix__label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm);
    margin-bottom: 4px;
}

.mix__name {
    font-size: 15px;
    font-weight: 500;
}

/* ============================================
   ABOUT — "Started producing at 10.
   Still searching for the perfect moment."
   That's the line. — Chesky
   ============================================ */

.about { margin-bottom: 40px; }

.about__lead {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-wrap: balance;
}

.about__body {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.4);
    text-wrap: pretty;
}

.about__story {
    display: inline-block;
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.30);
    text-decoration: none;
    transition: color 0.3s;
}
.about__story:hover {
    color: var(--warm);
}

/* Press — as featured in, not résumé bullets */
.about__press {
    display: flex;
    gap: 0;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex-wrap: wrap;
    align-items: center;
}

.about__press-label {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    margin-right: 14px;
}

.about__press a {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    transition: color 0.3s;
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.about__press a:last-child { border-right: none; }
.about__press a:hover {
    color: rgba(255, 255, 255, 0.6);
}

.about__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.about__contact a {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.3s;
}
.about__contact a:hover { color: var(--warm); }

/* ============================================
   PLAYER — Part of the music, not part of the UI.
   Near-opaque. Glow at the leading edge.
   Full track name — slow scroll if needed.
   ============================================ */
.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--warm-ghost);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}
.player--visible { transform: translateY(0); }

/* Progress bar — smooth RAF-driven width, subtle glow at leading edge */
.player__fill {
    height: 2px;
    width: 0%;
    background: var(--warm);
    position: relative;
    will-change: width;
}
.player__fill::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--warm);
    box-shadow: 0 0 8px var(--warm), 0 0 16px rgba(209, 154, 106, 0.2);
    opacity: 0;
    transition: opacity 0.5s;
}
body.audio-playing .player__fill::after {
    opacity: 0.8;
}

.player__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px calc(10px + env(safe-area-inset-bottom, 0px));
    max-width: 520px;
    margin: 0 auto;
}

.player__meta {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

/* Track name — no ellipsis. Slow marquee scroll if it overflows. */
.player__track {
    display: block;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}
.player__track--scrolling {
    display: inline-block;
    animation: playerScroll 12s linear infinite;
    padding-right: 60px;
}
@keyframes playerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.player__artist {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
}

.player__toggle {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 768px) {
    .header { padding: 28px 40px; }
    .nav { gap: 36px; }
    .nav__link { font-size: 12px; }
    .section__inner { padding: 8px 40px 36px; max-width: 560px; }
    .header__logo { width: 32px; height: 32px; }
    .featured__art-wrap { width: 72px; height: 72px; }
    .featured__name { font-size: 19px; }
    .about__lead { font-size: 24px; }
}

@media (min-width: 1200px) {
    .header { padding: 32px 56px; }
    .section__inner { max-width: 600px; }
    .section__inner { max-height: 48vh; max-height: 48dvh; }
    .header__logo { width: 34px; height: 34px; }
}

/* Mobile — Ive: "Why is this photograph the hero at all on a 375px screen?"
   The crowd photo tells a story of scale that a phone can't hold.
   On mobile, the hero disappears. The music IS the page. */
@media (max-width: 480px) {
    .hero { background: #000; }
    .hero__img { display: none; }
    .hero__wash { display: none; }
    .hero__warm { display: none; }
    .main {
        background: none;
    }
    .section__inner { max-height: calc(100dvh - 60px); padding: 8px 18px 24px; }
    .featured { padding: 12px 14px; gap: 12px; }
    .featured__art-wrap { width: 56px; height: 56px; }
    .featured__name { font-size: 15px; }
    .featured__meta { font-size: 10px; }
    .featured__play { width: 38px; height: 38px; }
    .track { padding: 8px 12px; }
    .track__art-wrap { width: 32px; height: 32px; }
    .track__name { font-size: 12px; }
    .show { padding: 14px 0; gap: 12px; }
    .show__date { font-size: 13px; }
    .show__venue { font-size: 11px; }
    .show__status { font-size: 9px; padding: 4px 10px; }
    .show__badge { font-size: 8px; padding: 2px 6px; }
    .video { margin-top: 16px; }
    .about__lead { font-size: 17px; }
    .about__body { font-size: 12px; }
    .notify__input { font-size: 11px; padding: 12px 14px; }
    .notify__btn { font-size: 9px; padding: 12px 14px; }
}

@media (max-width: 380px) {
    .header { padding: 14px 14px; }
    .nav { gap: 16px; }
    .nav__link { font-size: 10px; }
    .header__socials { gap: 10px; }
    .section__inner { padding: 8px 14px 20px; }
    .featured { padding: 10px 12px; gap: 10px; }
    .featured__art-wrap { width: 44px; height: 44px; }
    .featured__play { width: 34px; height: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus — visible ring for keyboard users, invisible for mouse */
:focus-visible {
    outline: 1.5px solid var(--warm-mid);
    outline-offset: 2px;
    border-radius: 4px;
}
.featured:focus-visible { outline-offset: 4px; border-radius: 16px; }
.track:focus-visible { border-radius: 12px; }
.player__toggle:focus-visible { border-radius: 50%; }

::selection { background: rgba(209, 154, 106, 0.3); color: white; }
