:root {
    --ink: #0e0e0e;
    --paper: #ffffff;
    --warm: #f5f1e9;
    --lilac: #e5abf3;
    --acid: #d9ff55;
    --blue: #3aa7ff;
    --grey: #666666;
    --line: #d9d7d2;
    --display: "DM Sans", sans-serif;
    --body: "Inter", sans-serif;
    --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    padding-bottom: 92px;
}

body.player-hidden { padding-bottom: 0; }

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

a { color: inherit; }

button, input { font: inherit; }

button { color: inherit; }

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

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: 12px;
    transform: translateY(-160%);
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--acid);
    color: var(--ink);
    font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.site-header {
    position: relative;
    z-index: 100;
    height: 80px;
    background: var(--ink);
    color: white;
}

.header-inner {
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 223px 1fr auto;
    align-items: center;
    gap: 32px;
}

.brand img, .footer-logo img {
    width: 223px;
    height: auto;
}

.primary-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
}

.primary-nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .2s ease;
}

.primary-nav a:hover { color: var(--lilac); }

.contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 25px;
    color: var(--ink);
    background: var(--lilac);
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}

.contact-pill:hover { transform: translateY(-2px); background: var(--acid); }

.nav-toggle { display: none; }

.album-bar {
    position: sticky;
    top: 0;
    z-index: 90;
    min-height: 58px;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgba(14,14,14,.12);
    backdrop-filter: blur(16px);
}

.album-bar-inner {
    width: var(--shell);
    min-height: 58px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.album-wordmark {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--display);
    font-weight: 700;
}

.album-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--lilac);
    box-shadow: 16px 0 0 var(--acid);
    margin-right: 16px;
}

.album-bar-note { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

.album-bar-listen {
    justify-self: end;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.album-hero {
    position: relative;
    isolation: isolate;
    min-height: 690px;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 16% 12%, rgba(229,171,243,.26), transparent 27%),
        radial-gradient(circle at 86% 78%, rgba(217,255,85,.17), transparent 26%),
        var(--ink);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(410px, .95fr);
    gap: 64px;
    align-items: center;
    padding: 80px max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
}

.hero-noise,
.song-hero::before,
.manifesto::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: .18;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow span {
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    color: white;
}

.eyebrow.dark { color: #5d5d5d; }

.album-hero h1,
.song-copy h1,
.manifesto h2,
.album-signoff h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -.065em;
    line-height: .92;
}

.album-hero h1 { max-width: 700px; font-size: clamp(65px, 7.6vw, 112px); }

.album-hero h1 em,
.manifesto h2 em {
    color: var(--lilac);
    font-style: normal;
}

.hero-lead {
    max-width: 650px;
    margin: 34px 0 0;
    color: rgba(255,255,255,.72);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.hero-actions, .song-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.button {
    min-height: 56px;
    padding: 0 23px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-accent { background: var(--lilac); color: var(--ink); }
.button-accent:hover { background: var(--acid); }
.button-ghost { border-color: rgba(255,255,255,.26); background: transparent; color: white; }
.button-ghost:hover { background: white; color: var(--ink); }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--acid); }
.button-icon { font-size: 12px; }

.hero-proof {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 50px;
}

.hero-proof-mark {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
}

.hero-proof p { margin: 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.5; }
.hero-proof strong { color: white; }

.hero-art { position: relative; max-width: 540px; justify-self: end; }

.hero-cover {
    position: relative;
    z-index: 3;
    display: block;
    box-shadow: 0 42px 90px rgba(0,0,0,.48);
    transform: rotate(1.2deg);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
}

.hero-cover:hover { transform: rotate(0) scale(1.018); }

.hero-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.hero-cover-sticker {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    padding: 12px;
    text-align: center;
    color: var(--ink);
    background: var(--acid);
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: rotate(10deg);
}

.cover-shadow {
    position: absolute;
    width: 74%;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.25);
}

.cover-shadow-one { top: -28px; left: -36px; transform: rotate(-8deg); background: #382b3d; }
.cover-shadow-two { right: -32px; bottom: 45px; transform: rotate(8deg); background: #273414; }

.hero-art-caption {
    position: relative;
    z-index: 4;
    margin-top: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    font-size: 13px;
}

.hero-art-caption span { color: var(--acid); font-weight: 800; }
.hero-art-caption small { color: rgba(255,255,255,.56); }

.ticker {
    overflow: hidden;
    border-block: 1px solid var(--ink);
    background: var(--acid);
}

.ticker-track {
    width: max-content;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 26px;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    animation: ticker 30s linear infinite;
}

.ticker-track i { font-style: normal; font-size: 13px; }

@keyframes ticker { to { transform: translateX(-50%); } }

.track-section { width: var(--shell); margin: 0 auto; padding: 120px 0 135px; }

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 62px;
}

.section-heading h2 {
    max-width: 780px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: .98;
    letter-spacing: -.055em;
}

.section-heading > p { margin: 0; color: var(--grey); font-size: 16px; }

.track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 58px 26px;
}

.track-card { min-width: 0; }

.track-cover-wrap {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.track-cover-wrap > a { display: block; }

.track-cover-wrap img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2,.8,.2,1), filter .3s ease;
}

.track-card:hover .track-cover-wrap img { transform: scale(1.035); filter: saturate(1.08); }

.track-number {
    position: absolute;
    top: 14px;
    left: 14px;
    min-width: 39px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: white;
    font-size: 11px;
    font-weight: 900;
}

.cover-play {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--card-accent);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,.28);
    transform: translateY(6px);
    transition: transform .2s ease;
}

.cover-play span { margin-left: 3px; font-size: 16px; }
.track-card:hover .cover-play, .cover-play:hover { transform: translateY(0) scale(1.05); }

.track-card-copy { padding-top: 20px; }

.track-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--grey);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.track-card h3 {
    margin: 10px 0 12px;
    font-family: var(--display);
    font-size: clamp(23px, 2vw, 31px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.track-card h3 a { text-decoration: none; }
.track-card h3 a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.track-card p { margin: 0; color: var(--grey); font-size: 14px; line-height: 1.65; }

.track-link {
    display: inline-flex;
    gap: 7px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 800;
    text-underline-offset: 4px;
}

.manifesto {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    align-items: center;
    gap: 90px;
    min-height: 650px;
    padding: 100px max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
    color: white;
    background: var(--ink);
}

.manifesto-copy { position: relative; z-index: 2; }
.manifesto h2 { font-size: clamp(50px, 5.8vw, 84px); }
.manifesto-copy > p:not(.eyebrow) { max-width: 660px; color: rgba(255,255,255,.67); font-size: 18px; }

.manifesto-orbit {
    position: absolute;
    right: -12vw;
    top: -25%;
    width: 62vw;
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
}

.manifesto-orbit::before,
.manifesto-orbit::after {
    position: absolute;
    inset: 13%;
    content: "";
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
}

.manifesto-orbit::after { inset: 28%; }

.manifesto-orbit span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--lilac);
}

.manifesto-orbit span:nth-child(1) { top: 9%; left: 28%; }
.manifesto-orbit span:nth-child(2) { top: 49%; left: 3%; background: var(--acid); }
.manifesto-orbit span:nth-child(3) { bottom: 8%; right: 26%; background: var(--blue); }

.manifesto-quote {
    position: relative;
    z-index: 2;
    padding: 48px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    transform: rotate(2deg);
}

.manifesto-quote blockquote {
    margin: 0 0 28px;
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 43px);
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -.04em;
}

.manifesto-quote span { color: var(--acid); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.album-signoff {
    position: relative;
    min-height: 600px;
    padding: 110px 24px;
    display: grid;
    place-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(229,171,243,.42), transparent 34%),
        var(--warm);
}

.album-signoff p { margin: 0 0 28px; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.album-signoff h2 { font-size: clamp(72px, 11vw, 158px); }
.album-signoff h2 span { color: transparent; -webkit-text-stroke: 2px var(--ink); }

.round-play {
    justify-self: center;
    width: 84px;
    height: 84px;
    margin-top: 40px;
    border: 0;
    border-radius: 50%;
    color: white;
    background: var(--ink);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.round-play:hover { transform: scale(1.08); background: #593f60; }

.site-footer {
    position: relative;
    color: white;
    background: var(--ink);
    padding: 90px max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2)) 24px;
}

.footer-intro {
    padding-bottom: 55px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.footer-intro p { max-width: 480px; margin: 0; color: rgba(255,255,255,.55); text-align: right; }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 58px 0 70px;
}

.footer-grid section { display: flex; flex-direction: column; gap: 11px; }
.footer-grid h2 { margin: 0 0 13px; color: var(--lilac); font-family: var(--display); font-size: 18px; }
.footer-grid a { width: fit-content; color: rgba(255,255,255,.68); text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: white; text-decoration: underline; }
.beta { margin-left: 5px; padding: 3px 6px; border-radius: 999px; color: var(--ink); background: var(--acid); font-size: 8px; font-weight: 900; text-transform: uppercase; }

.footer-bottom {
    min-height: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.45);
    font-size: 12px;
}

.footer-bottom a { color: white; text-underline-offset: 4px; }

/* Song pages */
.song-hero {
    --song-accent: var(--lilac);
    position: relative;
    isolation: isolate;
    min-height: 690px;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--song-accent) 27%, transparent), transparent 38%),
        var(--ink);
    padding: 38px max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2)) 88px;
}

.song-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.5);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.song-breadcrumbs a { color: white; text-underline-offset: 4px; }

.song-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(340px, 510px) minmax(0, 1fr);
    gap: clamp(55px, 7vw, 110px);
    align-items: center;
    margin-top: 48px;
}

.song-cover-frame { position: relative; box-shadow: 0 42px 90px rgba(0,0,0,.5); }
.song-cover-frame::before { position: absolute; inset: -14px 14px 14px -14px; z-index: -1; content: ""; background: var(--song-accent); transform: rotate(-2deg); }
.song-cover-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.song-cover-play {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 50%;
    background: var(--song-accent);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
    transition: transform .2s ease;
}

.song-cover-play:hover { transform: scale(1.08); }

.cover-caption { margin-top: 18px; display: flex; justify-content: space-between; color: rgba(255,255,255,.48); font-size: 10px; letter-spacing: .14em; }

.song-kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.song-kicker span { padding: 7px 10px; border-radius: 999px; color: var(--ink); background: var(--song-accent); }

.song-copy h1 { max-width: 760px; font-size: clamp(57px, 7vw, 100px); }

.song-description { max-width: 690px; margin: 28px 0 0; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.8vw, 22px); }

.song-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 720px;
    margin: 48px 0 0;
    background: rgba(255,255,255,.14);
}

.song-facts div { padding: 18px 20px; background: var(--ink); }
.song-facts dt { color: rgba(255,255,255,.42); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.song-facts dd { margin: 4px 0 0; font-size: 13px; font-weight: 700; }

.song-title-ghost {
    position: absolute;
    left: 50%;
    bottom: -4vw;
    transform: translateX(-50%);
    width: max-content;
    max-width: 130vw;
    overflow: hidden;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,.08);
    font-family: var(--display);
    font-size: clamp(100px, 15vw, 250px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.07em;
    white-space: nowrap;
    pointer-events: none;
}

.lyrics-layout {
    width: var(--shell);
    margin: 0 auto;
    padding: 120px 0 145px;
    display: grid;
    grid-template-columns: minmax(230px, .55fr) minmax(0, 1.45fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: start;
}

.lyrics-aside { position: sticky; top: 105px; }
.lyrics-aside h2 { margin: 0; font-family: var(--display); font-size: clamp(45px, 5vw, 68px); line-height: .95; letter-spacing: -.055em; }
.lyrics-aside > p:not(.eyebrow) { color: var(--grey); font-size: 14px; }

.lyrics-play {
    margin-top: 25px;
    padding: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 5px;
    cursor: pointer;
}

.lyrics-play span { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; color: white; background: var(--ink); font-size: 10px; text-decoration: none; }

.lyrics-sheet {
    max-width: 740px;
    padding: 74px clamp(30px, 6vw, 82px);
    background: var(--warm);
    box-shadow: 0 28px 70px rgba(14,14,14,.09);
}

.lyric-section {
    width: fit-content;
    margin: 58px 0 22px;
    padding: 7px 10px;
    color: var(--ink);
    background: var(--lilac);
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    transform: rotate(-1deg);
}

.lyric-section:first-child { margin-top: 0; }

.lyric-verse { margin: 0 0 26px; font-size: clamp(17px, 1.8vw, 21px); line-height: 1.65; }
.lyric-verse span { display: block; }

.track-navigation {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    background: var(--ink);
}

.track-navigation-card {
    min-height: 220px;
    padding: 26px;
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    color: white;
    text-decoration: none;
    border-block: 1px solid rgba(255,255,255,.12);
    transition: background .25s ease;
}

.track-navigation-card.next { grid-template-columns: minmax(0, 1fr) 145px; text-align: right; }
.track-navigation-card:hover { background: color-mix(in srgb, var(--nav-accent) 24%, var(--ink)); }
.track-navigation-card img { width: 145px; aspect-ratio: 1; object-fit: cover; }
.track-navigation-card span { min-width: 0; }
.track-navigation-card small { display: block; margin-bottom: 8px; color: rgba(255,255,255,.5); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.track-navigation-card strong { display: block; font-family: var(--display); font-size: clamp(20px, 2vw, 30px); line-height: 1.05; }

.all-tracks-link {
    width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: white;
    border-inline: 1px solid rgba(255,255,255,.12);
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.all-tracks-link span { color: var(--lilac); letter-spacing: 4px; }

/* Persistent player */
.player {
    --track-accent: var(--lilac);
    position: fixed;
    z-index: 500;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 92px;
    padding: 10px 22px;
    display: grid;
    grid-template-columns: 72px minmax(160px, 260px) auto minmax(220px, 1fr) 120px 30px;
    align-items: center;
    gap: 17px;
    color: white;
    background: rgba(14,14,14,.97);
    border-top: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 -12px 40px rgba(0,0,0,.2);
    backdrop-filter: blur(18px);
    transition: transform .3s ease;
}

body.player-hidden .player { transform: translateY(110%); }

.player-art-wrap { position: relative; width: 72px; height: 72px; }
.player-art-wrap img { width: 72px; height: 72px; object-fit: cover; }

.playing-bars {
    position: absolute;
    inset: auto 5px 5px auto;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: none;
    align-items: end;
    justify-content: center;
    gap: 2px;
    padding: 7px;
    background: var(--track-accent);
}

.is-playing .playing-bars { display: flex; }
.playing-bars i { width: 3px; min-height: 5px; background: var(--ink); animation: bars .7s ease-in-out infinite alternate; }
.playing-bars i:nth-child(2) { animation-delay: -.25s; }
.playing-bars i:nth-child(3) { animation-delay: -.5s; }
@keyframes bars { to { height: 13px; } }

.player-copy { min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.player-kicker { color: rgba(255,255,255,.45); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.player-copy a { margin-top: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-decoration: none; font-family: var(--display); font-size: 15px; font-weight: 700; }

.player-controls { display: flex; align-items: center; gap: 8px; }
.player-controls button { width: 34px; height: 34px; padding: 0; border: 0; border-radius: 50%; color: white; background: transparent; font-size: 25px; cursor: pointer; }
.player-controls button:hover { color: var(--track-accent); }

.player-controls .player-main-button { width: 48px; height: 48px; display: grid; place-items: center; color: var(--ink); background: var(--track-accent); }
.player-main-button svg { width: 19px; height: 19px; fill: currentColor; }
.player-main-button .icon-pause { display: none; }
.is-playing .player-main-button .icon-play { display: none; }
.is-playing .player-main-button .icon-pause { display: block; }

.player-progress-wrap { display: grid; grid-template-columns: 38px minmax(100px, 1fr) 38px; align-items: center; gap: 9px; color: rgba(255,255,255,.52); font-size: 9px; font-variant-numeric: tabular-nums; }
.player-progress-wrap span:last-child { text-align: right; }

input[type="range"] {
    --range-progress: 0%;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(to right, var(--track-accent) var(--range-progress), rgba(255,255,255,.2) var(--range-progress));
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb { appearance: none; width: 13px; height: 13px; border-radius: 50%; background: white; box-shadow: 0 0 0 3px rgba(255,255,255,.1); }
input[type="range"]::-moz-range-thumb { width: 13px; height: 13px; border: 0; border-radius: 50%; background: white; }

.player-volume-wrap { display: grid; grid-template-columns: 20px 1fr; align-items: center; gap: 8px; }
.player-volume-wrap svg { width: 18px; height: 18px; fill: rgba(255,255,255,.58); }

.player-close { border: 0; color: rgba(255,255,255,.55); background: transparent; font-size: 22px; cursor: pointer; }
.player-close:hover { color: white; }

.player-reopen {
    position: fixed;
    z-index: 490;
    right: 18px;
    bottom: 18px;
    display: none;
    padding: 11px 16px;
    border: 0;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lilac);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

body.player-hidden .player-reopen { display: block; }

@media (max-width: 1120px) {
    .header-inner { grid-template-columns: 190px 1fr auto; gap: 20px; }
    .brand img { width: 190px; }
    .primary-nav { gap: 15px; }
    .primary-nav a { font-size: 13px; }
    .contact-pill { min-height: 43px; padding-inline: 20px; font-size: 14px; }
    .album-hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr); gap: 45px; }
    .track-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .player { grid-template-columns: 62px minmax(140px, 220px) auto minmax(160px, 1fr) 30px; min-height: 82px; }
    .player-art-wrap, .player-art-wrap img { width: 62px; height: 62px; }
    .player-volume-wrap { display: none; }
    body { padding-bottom: 82px; }
}

@media (max-height: 780px) and (min-width: 861px) {
    .album-hero { min-height: 585px; padding-block: 48px; }
    .album-hero h1 { font-size: clamp(64px, 6.5vw, 88px); }
    .hero-lead { margin-top: 22px; font-size: 18px; }
    .hero-actions { margin-top: 24px; }
    .hero-proof { display: none; }
    .hero-art { max-width: 445px; }
}

@media (max-width: 860px) {
    :root { --shell: min(100% - 36px, 720px); }
    .site-header { height: 72px; }
    .header-inner { grid-template-columns: 1fr auto; }
    .brand img { width: 205px; }
    .contact-pill { display: none; }
    .nav-toggle { width: 46px; height: 46px; padding: 10px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; flex-direction: column; justify-content: center; gap: 5px; background: transparent; }
    .nav-toggle span:not(.sr-only) { width: 100%; height: 2px; background: white; }
    .primary-nav { position: absolute; top: 72px; left: 0; right: 0; display: none; padding: 24px; flex-direction: column; align-items: flex-start; gap: 4px; background: var(--ink); border-top: 1px solid rgba(255,255,255,.14); }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { width: 100%; padding: 10px 0; font-size: 18px; }
    .album-bar-note { display: none; }
    .album-bar-inner { grid-template-columns: 1fr auto; }
    .album-hero { min-height: auto; grid-template-columns: 1fr; gap: 80px; padding-block: 70px 90px; }
    .hero-art { width: min(84vw, 540px); justify-self: center; }
    .section-heading { grid-template-columns: 1fr; gap: 25px; }
    .manifesto { grid-template-columns: 1fr; gap: 60px; }
    .manifesto-orbit { width: 100vw; }
    .song-hero-grid { grid-template-columns: minmax(0, 520px); justify-content: center; }
    .song-copy { padding-top: 18px; }
    .lyrics-layout { grid-template-columns: 1fr; }
    .lyrics-aside { position: static; }
    .track-navigation { grid-template-columns: 1fr 86px 1fr; }
    .track-navigation-card { min-height: 170px; grid-template-columns: 88px minmax(0, 1fr); padding: 16px; gap: 15px; }
    .track-navigation-card.next { grid-template-columns: minmax(0, 1fr) 88px; }
    .track-navigation-card img { width: 88px; }
    .all-tracks-link { width: 86px; }
    .footer-intro { align-items: flex-start; flex-direction: column; }
    .footer-intro p { text-align: left; }
    .player { grid-template-columns: 58px minmax(90px, 1fr) auto 30px; gap: 12px; min-height: 78px; padding: 8px 12px; }
    .player-art-wrap, .player-art-wrap img { width: 58px; height: 58px; }
    .player-progress-wrap { position: absolute; left: 0; right: 0; top: -4px; display: block; }
    .player-progress-wrap span { display: none; }
    .player-progress-wrap input { display: block; height: 4px; }
    .player-close { grid-column: 4; }
    body { padding-bottom: 78px; }
}

@media (max-width: 620px) {
    :root { --shell: calc(100% - 28px); }
    .album-bar-listen { font-size: 12px; }
    .album-wordmark { font-size: 14px; }
    .album-hero { padding-inline: 20px; }
    .album-hero h1 { font-size: clamp(58px, 20vw, 82px); }
    .hero-lead { font-size: 17px; }
    .hero-actions, .song-actions { flex-direction: column; align-items: stretch; }
    .button { width: 100%; }
    .hero-proof { display: none; }
    .hero-cover-sticker { width: 68px; height: 68px; top: 12px; right: 12px; font-size: 8px; }
    .track-section { padding-block: 85px 100px; }
    .track-grid { grid-template-columns: 1fr; gap: 50px; }
    .track-card h3 { font-size: 29px; }
    .manifesto { padding-block: 86px; }
    .manifesto-quote { padding: 32px; }
    .album-signoff { min-height: 480px; }
    .album-signoff h2 { font-size: clamp(62px, 22vw, 100px); }
    .footer-grid { grid-template-columns: 1fr; gap: 44px; }
    .footer-bottom { flex-direction: column; }
    .song-hero { padding-inline: 18px; }
    .song-hero-grid { display: flex; flex-direction: column; gap: 48px; }
    .song-cover-column { width: 100%; }
    .song-copy h1 { font-size: clamp(54px, 16vw, 80px); }
    .song-facts { grid-template-columns: 1fr; }
    .lyrics-layout { padding-block: 85px 100px; gap: 45px; }
    .lyrics-sheet { padding: 52px 24px; }
    .lyric-verse { font-size: 17px; }
    .track-navigation { grid-template-columns: 1fr; }
    .track-navigation-card { min-height: 130px; }
    .track-navigation-card.next { order: 3; }
    .all-tracks-link { width: 100%; min-height: 64px; flex-direction: row; border: 1px solid rgba(255,255,255,.12); }
    .player { grid-template-columns: 52px minmax(0, 1fr) auto 24px; }
    .player-art-wrap, .player-art-wrap img { width: 52px; height: 52px; }
    .player-copy a { font-size: 13px; }
    .player-controls button:not(.player-main-button) { display: none; }
    .player-controls .player-main-button { width: 44px; height: 44px; }
}

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