/* ============================================
   robworksmusic.com — Custom Styles
   ============================================ */

:root {
    --bg-deep: #0a0a0f;
    --bg-surface: #12121a;
    --bg-elevated: #1a1a26;
    --accent-primary: #f0a030;
    --accent-hover: #ffb347;
    --accent-muted: rgba(240, 160, 48, 0.15);
    --accent-secondary: #6366f1;
    --text-primary: #e8e6e3;
    --text-secondary: #9ca3af;
    --text-tertiary: #6b7280;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(240, 160, 48, 0.3);
    --font-display: 'Staatliches', Impact, sans-serif;
    --font-body: 'Space Grotesk', system-ui, sans-serif;

    /* Neon palette */
    --neon-primary: #ff3c64;
    --neon-secondary: #06b6d4;
    --neon-inner: #ff6b9d;
    --neon-core: #fff0f5;
    --neon-muted: rgba(255, 60, 100, 0.15);
    --border-neon: rgba(255, 60, 100, 0.4);

    /* Neon glow presets */
    --glow-text-sm: 0 0 7px #ff3c64, 0 0 20px rgba(255, 60, 100, 0.6);
    --glow-text-md: 0 0 7px #ff3c64, 0 0 20px #ff3c64, 0 0 42px rgba(255, 60, 100, 0.4);
    --glow-box-sm: 0 0 5px #ff3c64, 0 0 15px rgba(255, 60, 100, 0.4);
    --glow-box-md: 0 0 5px #ff3c64, 0 0 15px rgba(255, 60, 100, 0.5), 0 0 30px rgba(255, 60, 100, 0.2);
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-primary);
    background: var(--bg-deep);
    line-height: 1.6;
    position: relative;
    z-index: 0;
    overflow-x: hidden;
}

::selection {
    background: var(--neon-primary);
    color: var(--bg-deep);
}

img, video {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--neon-primary);
    text-decoration: none;
    transition: color 0.2s, text-shadow 0.2s;
}

a:hover {
    color: var(--neon-inner);
    text-shadow: 0 0 8px rgba(255, 60, 100, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--neon-core);
    line-height: 0.95;
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-text-md);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    margin-bottom: 3rem;
}

section {
    padding: 6rem 0;
    position: relative;
    z-index: 3;
}

/* ---- Navigation ---- */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease, opacity 0.4s ease-out;
}
body.has-splash .site-nav { opacity: 0; }
body.splash-done .site-nav,
body.splash-skipped .site-nav { opacity: 1; }

.site-nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav__brand {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.site-nav__brand:hover {
    opacity: 0.7;
    color: var(--text-primary);
}

.site-nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.site-nav__links .nav-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
}

.site-nav__links .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--neon-primary);
    box-shadow: 0 0 8px var(--neon-primary), 0 0 16px rgba(255, 60, 100, 0.4);
    transition: width 0.3s ease;
    margin-top: 2px;
}

.site-nav__links .nav-link:hover,
.site-nav__links .nav-link.active {
    color: var(--neon-core);
    text-shadow: var(--glow-text-sm);
}

.site-nav__links .nav-link:hover::after,
.site-nav__links .nav-link.active::after {
    width: 100%;
}

/* ---- Splash ---- */
.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-deep);
    pointer-events: auto;
    transition: background 0.8s ease-out;
}
.splash canvas { width: 100%; height: 100%; position: absolute; inset: 0; }

/* Hero content reveal after splash */
body.has-splash .hero__text-canvas { opacity: 0; }
body.has-splash .hero__lockup-text > * { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
body.has-splash .now-playing { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
body.has-splash .hero__scroll { opacity: 0; transition: opacity 0.5s ease-out; }

body.splash-done .hero__text-canvas { opacity: 1; transition: opacity 0.8s ease-out; }
body.splash-done .hero__lockup-text > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.2s; }
body.splash-done .hero__lockup-text > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.35s; }
body.splash-done .now-playing { opacity: 1; transform: none; transition-delay: 0.5s; }
body.splash-done .hero__scroll { opacity: 1; transition-delay: 0.7s; }

body.splash-skipped .hero__lockup-text > *,
body.splash-skipped .now-playing,
body.splash-skipped .hero__scroll { opacity: 1; transform: none; transition: none; }

/* ---- Hero ---- */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 12vh;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
}

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

/* Full-page fixed background canvas — above video backdrop */
#heroCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* ---- Video Backdrop (below canvas, above body bg) ---- */
.video-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.video-backdrop__player {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-backdrop__player.is-active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .video-backdrop { display: none; }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.4) 0%,
        rgba(10, 10, 15, 0.7) 60%,
        var(--bg-deep) 100%
    );
}

.hero__overlay--canvas {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 70%,
        var(--bg-deep) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 3;
}

.hero__lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero__text-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}

.hero__lockup-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero__descriptor {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin: 0.5rem 0 0;
}

.hero__tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
    margin: 0.4rem 0 0;
}

.hero__cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--neon-core);
    background: transparent;
    border: 2px solid var(--neon-primary);
    box-shadow: var(--glow-box-md), inset 0 0 15px rgba(255, 60, 100, 0.15);
    text-shadow: var(--glow-text-sm);
    text-decoration: none;
    transition: transform 0.2s ease-out, box-shadow 0.3s ease-out, text-shadow 0.3s ease-out, background 0.3s;
}

.hero__cta:hover {
    color: var(--neon-core);
    background: rgba(255, 60, 100, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 8px #ff3c64, 0 0 20px rgba(255, 60, 100, 0.6), 0 0 40px rgba(255, 60, 100, 0.3), inset 0 0 20px rgba(255, 60, 100, 0.2);
    text-shadow: var(--glow-text-md);
}

/* Now Playing */
.now-playing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0.5rem;
    padding-right: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 440px;
    transition: border-color 0.3s, background 0.3s;
}

.now-playing:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.07);
}

.now-playing.is-playing {
    border-color: var(--border-neon);
    box-shadow: 0 0 8px rgba(255, 60, 100, 0.2), 0 0 20px rgba(255, 60, 100, 0.08);
}

/* Album art with play overlay */
.now-playing__art {
    width: 64px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

.now-playing__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.2s;
}

.now-playing__art:hover img {
    filter: brightness(0.6);
}

.now-playing__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.now-playing__play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.now-playing.is-playing .now-playing__play-overlay {
    background: rgba(0, 0, 0, 0.15);
}

/* Track details */
.now-playing__details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.now-playing__label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-tertiary);
    transition: color 0.3s;
}

.now-playing.is-playing .now-playing__label {
    color: var(--neon-primary);
}

.now-playing__track {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.now-playing__artist {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Progress bar */
.now-playing__progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    margin-top: 0.4rem;
    overflow: hidden;
    cursor: pointer;
    padding: 6px 0;
    margin-top: 0.15rem;
    background-clip: content-box;
}

.now-playing__progress-bar {
    height: 100%;
    width: 0%;
    background: var(--neon-primary);
    border-radius: 2px;
    transition: width 0.15s linear;
    pointer-events: none;
}

/* Controls */
.now-playing__controls {
    display: flex;
    gap: 0.25rem;
    flex-shrink: 0;
}

.now-playing__btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s, background 0.2s;
}

.now-playing__btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.now-playing__btn.is-muted {
    color: var(--neon-primary);
}

/* FX Knobs — fixed top-right of hero */
.fx-knobs {
    position: fixed;
    top: 5rem;
    right: 2rem;
    display: flex;
    gap: 1.25rem;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fx-knobs.is-visible {
    opacity: 1;
}

.fx-knob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    -webkit-user-select: none;
    user-select: none;
    touch-action: none;
}

.fx-knob__body {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    position: relative;
    cursor: grab;
    background:
        radial-gradient(circle at 38% 35%,
            rgba(255, 80, 120, 0.8) 0%,
            rgba(255, 60, 100, 0.45) 50%,
            rgba(180, 30, 60, 0.25) 100%);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 60, 100, 0.2),
        0 0 20px rgba(255, 60, 100, 0.25);
    transition: box-shadow 0.15s ease;
}

.fx-knob__body:active {
    cursor: grabbing;
}

.fx-knob__body.is-dragging {
    cursor: grabbing;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 60, 100, 0.2),
        0 0 24px rgba(255, 60, 100, 0.3);
}

.fx-knob__indicator {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 14px;
    margin-left: -1.5px;
    border-radius: 1.5px;
    background: #fff;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.fx-knob__label {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    opacity: 0.6;
}

/* Cyan variant for audio knobs */
.fx-knob__body--cyan {
    background:
        radial-gradient(circle at 38% 35%,
            rgba(30, 200, 230, 0.75) 0%,
            rgba(6, 182, 212, 0.4) 50%,
            rgba(4, 120, 140, 0.2) 100%);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(6, 182, 212, 0.2),
        0 0 20px rgba(6, 182, 212, 0.25);
}

.fx-knob__body--cyan.is-dragging {
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(6, 182, 212, 0.2),
        0 0 24px rgba(6, 182, 212, 0.3);
}

.fx-knob__indicator--cyan {
    background: #fff;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-tertiary);
    border-radius: 12px;
}

.hero__scroll::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--neon-primary);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--neon-primary), 0 0 12px rgba(255, 60, 100, 0.4);
    animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
}

/* ---- Releases ---- */
.releases {
    background: rgba(10, 10, 15, 0.88);
}

.releases__filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.releases__filter {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.releases__filter.active {
    background: var(--neon-muted);
    border-color: var(--neon-primary);
    color: var(--neon-primary);
    box-shadow: var(--glow-box-sm);
}

.releases__filter:hover:not(.active) {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
}

/* ---- Featured Release ---- */
.releases__featured {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(18, 18, 26, 0.92);
    border: 1px solid var(--border-subtle);
    transition: border-color 0.3s;
}

.releases__featured:hover {
    border-color: var(--border-neon);
}

.releases__featured-art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.releases__featured-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.releases__featured:hover .releases__featured-art img {
    transform: scale(1.03);
}

.releases__featured-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.5);
    border: none;
    color: var(--neon-core);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s;
}

.releases__featured:hover .releases__featured-play {
    opacity: 1;
}

.releases__featured-play svg {
    filter: drop-shadow(0 0 8px rgba(255, 60, 100, 0.6));
}

.releases__featured-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.75rem;
    background: var(--neon-muted);
    color: var(--neon-primary);
    border: 1px solid var(--border-neon);
    margin-bottom: 1rem;
}

.releases__featured-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.releases__featured-meta {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}

.releases__featured-desc {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 420px;
}

.releases__featured-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.releases__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
}

.releases__link:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.releases__link--spotify:hover {
    border-color: #1DB954;
    color: #1DB954;
    box-shadow: 0 0 8px rgba(29, 185, 84, 0.3);
}

.releases__link--apple:hover {
    border-color: #fc3c44;
    color: #fc3c44;
    box-shadow: 0 0 8px rgba(252, 60, 68, 0.3);
}

.releases__link--soundcloud:hover {
    border-color: #ff5500;
    color: #ff5500;
    box-shadow: 0 0 8px rgba(255, 85, 0, 0.3);
}

.releases__link--bandcamp:hover {
    border-color: #1da0c3;
    color: #1da0c3;
    box-shadow: 0 0 8px rgba(29, 160, 195, 0.3);
}

/* ---- Featured Release Embed ---- */
.releases__featured-embed {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s;
}

.releases__featured-embed.is-open {
    max-height: 400px;
    padding-top: 1.5rem;
}

.releases__featured-embed iframe {
    width: 100%;
    border: none;
    display: block;
}

/* ---- Release Cards Grid ---- */
.releases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.release-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: transform 0.25s ease-out, border-color 0.3s;
}

.release-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-neon);
    box-shadow: var(--glow-box-sm);
}

.release-card[hidden] {
    display: none;
}

.release-card--hidden {
    display: none;
}

/* Art-forward card artwork */
.release-card__art {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-elevated);
}

.release-card__art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.release-card:hover .release-card__art img {
    transform: scale(1.05);
}

/* Placeholder for cards without artwork */
.release-card__art--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-deep) 100%);
    padding: 1.5rem;
}

.release-card__art-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--text-tertiary);
    text-align: center;
    line-height: 1.2;
}

/* Play button overlay on art */
.release-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(10, 10, 15, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s, box-shadow 0.3s;
    padding-left: 3px;
}

.release-card:hover .release-card__play {
    opacity: 1;
}

.release-card__play:hover {
    border-color: var(--neon-primary);
    box-shadow: var(--glow-box-sm);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Card info section */
.release-card__info {
    padding: 0.875rem 1rem;
}

.release-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    margin: 0 0 0.2rem;
}

.release-card__meta {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

/* Platform link icons row */
.release-card__links {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.release-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    color: var(--text-tertiary);
    transition: all 0.2s;
}

.release-card__link:hover {
    color: var(--text-primary);
    border-color: var(--text-tertiary);
    transform: scale(1.1);
}

.release-card__link--spotify:hover {
    color: #1DB954;
    border-color: #1DB954;
}

.release-card__link--soundcloud:hover {
    color: #ff5500;
    border-color: #ff5500;
}

.release-card__link--bandcamp:hover {
    color: #1da0c3;
    border-color: #1da0c3;
}

/* Expandable embed */
.release-card__embed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.release-card__embed.is-open {
    max-height: 400px;
}

.release-card__embed iframe {
    width: 100%;
    border: none;
    display: block;
    background: var(--bg-elevated);
}

/* SoundCloud embed darkening */
.release-card[data-platform="soundcloud"] .release-card__embed iframe {
    filter: brightness(0.82) contrast(1.1) saturate(1.2);
}

.release-card[data-platform="soundcloud"] .release-card__embed {
    position: relative;
    background: var(--bg-deep);
}

/* Dark overlay to blend SoundCloud's white chrome into the site */
.release-card[data-platform="soundcloud"] .release-card__embed::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 15, 0.35), rgba(10, 10, 15, 0.5));
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Show More button */
.releases__show-more {
    display: block;
    margin: 2.5rem auto 0;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: all 0.2s;
    min-height: 48px;
}

.releases__show-more:hover {
    color: var(--neon-core);
    border-color: var(--neon-primary);
    box-shadow: var(--glow-box-sm);
}

.releases__count {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-tertiary);
}

/* ---- Platforms strip ---- */
.platforms {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: 3rem;
    flex-wrap: wrap;
}

.platforms__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    white-space: nowrap;
}

.platforms__links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.platforms__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--text-tertiary);
    transition: color 0.2s, transform 0.2s;
    font-size: 1.4rem;
}

.platforms__link:hover {
    color: var(--neon-primary);
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px rgba(255, 60, 100, 0.5));
}

.platforms__link img {
    width: 28px;
    height: 28px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.platforms__link:hover img {
    opacity: 1;
}

/* ---- Mailing List Signup ---- */
.signup {
    background: rgba(14, 14, 20, 0.90);
    text-align: center;
    padding: 4rem 0;
}

.signup__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--neon-core);
    text-shadow: var(--glow-text-sm);
    margin-bottom: 0.75rem;
}

.signup__desc {
    color: var(--text-secondary);
    max-width: 440px;
    margin: 0 auto 1.5rem;
    font-weight: 300;
}

.signup__form {
    display: flex;
    max-width: 440px;
    margin: 0 auto;
    gap: 0;
}

.signup__input {
    flex: 1;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-right: none;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 48px;
}

.signup__input:focus {
    border-color: var(--neon-primary);
    box-shadow: 0 0 0 3px var(--neon-muted);
}

.signup__input::placeholder {
    color: var(--text-tertiary);
}

.signup__submit {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--neon-core);
    border: 2px solid var(--neon-primary);
    box-shadow: var(--glow-box-sm);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.3s;
    white-space: nowrap;
    min-height: 48px;
}

.signup__submit:hover {
    background: rgba(255, 60, 100, 0.1);
    box-shadow: var(--glow-box-md);
}

.signup__note {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    margin-top: 0.75rem;
}

/* ---- About ---- */
.about {
    background: rgba(18, 18, 26, 0.92);
}

.about__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about__lead {
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--text-primary);
    border-left: 3px solid var(--neon-primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: -4px 0 12px rgba(255, 60, 100, 0.15);
}

.about__body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.about__visual {
    position: relative;
}

.about__visual img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 20%;
    filter: contrast(1.05) brightness(0.9);
    border: 1px solid var(--border-subtle);
    transition: filter 0.4s, border-color 0.3s;
}

.about__visual:hover img {
    filter: contrast(1.1) brightness(1);
    border-color: var(--border-neon);
}

.about__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    max-width: 320px;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(255, 60, 100, 0.08) 70%,
        rgba(10, 10, 15, 0.4) 100%
    );
    pointer-events: none;
}

.about__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.about__proof-item {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
    transition: border-color 0.2s, color 0.2s;
}

.about__proof-item:hover {
    border-color: var(--border-neon);
    color: var(--text-secondary);
}

.about__collab {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.about__collab h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

/* ---- Gallery ---- */
.gallery {
    background: rgba(10, 10, 15, 0.90);
    padding-bottom: 3rem;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-top: 2rem;
}

.gallery__item {
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.gallery__item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery__item video,
.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.3s, transform 0.4s;
}

.gallery__item:hover video,
.gallery__item:hover img {
    filter: brightness(1.1) contrast(1.05);
    transform: scale(1.03);
}

.gallery__item:hover {
    box-shadow: inset 0 0 0 1px var(--border-neon), 0 0 10px rgba(255, 60, 100, 0.15);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(transparent, rgba(10, 10, 15, 0.85));
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.gallery__item:hover .gallery__caption {
    opacity: 1;
}

.gallery__caption-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.gallery__caption-desc {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    margin: 0.15rem 0 0;
}

/* ---- Booking ---- */
.booking {
    background: rgba(18, 18, 26, 0.95);
}

.booking__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking__desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.booking__services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.booking__service {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.booking__email {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--accent-primary);
    margin-bottom: 2rem;
    text-shadow: none;
}

.booking__email-direct {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1.25rem;
}

.booking__email-direct a {
    color: var(--neon-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.booking__email-direct a:hover {
    border-bottom-color: var(--neon-primary);
}

.booking__support {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}

.booking__support-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

.booking__coffee-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.booking__coffee-link:hover {
    color: var(--accent-primary);
    text-shadow: none;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
    border-color: var(--neon-primary);
    box-shadow: 0 0 0 3px var(--neon-muted), 0 0 12px rgba(255, 60, 100, 0.15);
}

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

.form-submit {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--neon-core);
    border: 2px solid var(--neon-primary);
    box-shadow: var(--glow-box-sm);
    text-shadow: var(--glow-text-sm);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.3s;
    min-height: 48px;
}

.form-submit:hover {
    background: rgba(255, 60, 100, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--glow-box-md);
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ---- Footer ---- */
.site-footer {
    padding: 3rem 0;
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 3;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__brand img {
    opacity: 0.5;
    transition: opacity 0.2s;
}

.footer__brand:hover img {
    opacity: 0.8;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.footer__links {
    display: flex;
    gap: 1.5rem;
}

.footer__links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--text-primary);
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.footer__social a:hover {
    color: var(--neon-primary);
    filter: drop-shadow(0 0 5px rgba(255, 60, 100, 0.5));
}

/* ---- Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .releases__featured {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .releases__featured-art {
        max-height: 300px;
        aspect-ratio: auto;
    }
    .about__grid {
        grid-template-columns: 1fr;
    }
    .about__visual {
        order: -1;
        text-align: center;
    }
    .about__visual img {
        aspect-ratio: 3/4;
        max-height: 360px;
        max-width: 260px;
    }
    .about__visual::after {
        max-width: 260px;
        margin: 0 auto;
    }
    .booking__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 4rem 0;
    }

    .site-nav {
        top: auto;
        bottom: 0;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid var(--border-subtle);
        border-bottom: none;
        padding: 0;
    }

    .site-nav.scrolled {
        padding: 0;
        border-bottom: none;
    }

    .site-nav__brand {
        display: none;
    }

    .site-nav__links {
        justify-content: space-around;
        padding: 0.75rem 0;
        gap: 0;
        width: 100%;
    }

    .site-nav__links .nav-link {
        font-size: 0.7rem;
        text-align: center;
        padding: 0.25rem 0.75rem;
    }

    .site-nav__links .nav-link::after {
        display: none;
    }

    html {
        scroll-padding-top: 0;
        scroll-padding-bottom: 70px;
    }

    .hero {
        padding-bottom: 20vh;
    }

    .hero__content {
        text-align: center;
    }

    .hero__lockup {
        align-items: center;
        text-align: center;
    }

    .hero__lockup-text {
        align-items: center;
    }

    .hero__text-canvas {
        width: 100%;
    }

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

    .gallery__item--wide {
        grid-column: span 2;
    }

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

    .signup__form {
        flex-direction: column;
    }

    .signup__input {
        border-right: 1px solid var(--border-subtle);
    }

    .gallery__caption {
        opacity: 1;
    }

    .releases__featured-play {
        opacity: 1;
    }

    .release-card__play {
        opacity: 1;
    }

    /* Reduce neon glow intensity on mobile for performance */
    .section-title {
        text-shadow: 0 0 7px #ff3c64, 0 0 15px rgba(255, 60, 100, 0.4);
    }

    body:has(.subpage) .site-footer {
        padding-bottom: 5rem;
    }
}

@media (max-width: 575.98px) {
    .platforms {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- Subpages ---- */
body:has(.subpage) {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body:has(.subpage) .subpage {
    flex: 1;
}

.subpage {
    padding: 8rem 0 4rem;
}

.subpage h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--neon-core);
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
    text-shadow: var(--glow-text-sm);
}

.subpage h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.subpage h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.subpage p,
.subpage address,
.subpage ul {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 48rem;
}

.subpage address {
    font-style: normal;
    margin-bottom: 1rem;
}

.subpage a {
    color: var(--neon-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, text-shadow 0.2s;
}

.subpage a:hover {
    border-bottom-color: var(--neon-primary);
    text-shadow: 0 0 8px rgba(255, 60, 100, 0.3);
}

.subpage ul {
    padding-left: 1.5rem;
}

.subpage ul li {
    margin-bottom: 0.25rem;
}

.subpage em {
    color: var(--text-primary);
    font-style: italic;
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .reveal-stagger > * {
        opacity: 1;
        transform: none;
    }
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(10, 10, 15, 0.97);
    border-top: 1px solid var(--border-neon);
    padding: 1.25rem 1.5rem;
    backdrop-filter: blur(12px);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.cookie-banner--hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner__content {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.cookie-banner__text a {
    color: var(--neon-primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-banner__accept {
    background: var(--neon-primary);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: var(--glow-box-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-banner__accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--glow-box-md);
}

.cookie-banner__reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.cookie-banner__reject:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

/* Embed placeholder (shown when consent rejected) */
.embed-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    text-align: center;
    background: var(--bg-elevated);
    border-radius: 8px;
    min-height: 166px;
}

.link-btn {
    background: none;
    border: none;
    color: var(--neon-primary);
    font-family: var(--font-body);
    font-size: inherit;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.embed-placeholder__btn {
    background: none;
    border: none;
    color: var(--neon-primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

@media (max-width: 767.98px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner {
        padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    }
}
