:root {
    --font: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --bg: #200a25;
    --bg-deep: #160b1c;
    --surface: #2c1233;
    --surface-hover: #371a40;
    --text: #f2edf4;
    --text-soft: #c5b4cc;
    --text-muted: #8a7492;
    --orange: #fba918;
    --red: #de2027;
    --line: rgba(242, 237, 244, .11);
    --max: 1320px;
    --radius: 18px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg-deep);
}

body {
    min-height: 100vh;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    font-size: 18px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

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

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

.site-header {
    width: min(calc(100% - 48px), var(--max));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 10;
}

.brand img {
    width: 166px;
    height: auto;
}

.studio-link,
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--text-soft);
    font-weight: 600;
    transition: color 180ms ease, transform 180ms ease;
}

.studio-link:hover,
.back-link:hover { color: var(--orange); }
.back-link:hover { transform: translateX(-3px); }

.eyebrow {
    color: var(--orange);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

/* Archive */
.archive-page {
    background:
        radial-gradient(circle at 86% 10%, rgba(127, 45, 110, .27), transparent 31rem),
        var(--bg);
}

.archive-hero {
    width: min(calc(100% - 48px), var(--max));
    margin: 0 auto;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 48px;
    padding: 96px 0 72px;
}

.archive-hero h1 {
    max-width: 850px;
    margin-top: 16px;
    font-size: clamp(4.5rem, 10.5vw, 9rem);
    font-weight: 300;
    letter-spacing: -.055em;
    line-height: .76;
}

.archive-intro {
    max-width: 600px;
    margin-top: 38px;
    color: var(--text-soft);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 400;
}

.archive-stats {
    width: 190px;
    min-height: 190px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: translateY(-8px);
}

.archive-stats strong {
    color: var(--orange);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
}

.archive-stats span {
    margin-top: 8px;
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .09em;
    line-height: 1.25;
    text-transform: uppercase;
}

.release-archive {
    padding: 76px max(24px, calc((100vw - var(--max)) / 2)) 120px;
    background: var(--bg-deep);
    color: var(--text);
}

.archive-tools {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 38px;
}

.archive-tools .eyebrow { color: var(--red); }

.archive-tools h2 {
    margin-top: 7px;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    font-weight: 300;
    letter-spacing: -.04em;
    line-height: 1;
}

.search-field {
    width: min(100%, 400px);
    min-height: 54px;
    padding: 0 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.search-field:focus-within {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(251, 169, 24, .55);
    box-shadow: 0 0 0 4px rgba(251, 169, 24, .14);
}

.search-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    border: 1.7px solid var(--text-soft);
    border-radius: 50%;
    position: relative;
}

.search-icon::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 1.7px;
    right: -5px;
    bottom: -3px;
    background: var(--text-soft);
    transform: rotate(45deg);
    transform-origin: left center;
}

.search-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 1rem;
}

.search-field input::placeholder { color: var(--text-muted); }
.search-result { min-height: 1.5em; color: var(--text-muted); font-size: .95rem; }

.release-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 46px 22px;
}

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

.release-tile-link {
    display: block;
    outline: none;
}

.tile-cover-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--surface);
    border-radius: 4px;
    position: relative;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.tile-cover-wrap::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: var(--card-accent);
}

.tile-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(.2, .65, .25, 1);
}

.tile-open {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: rgba(22, 11, 28, .82);
    color: #fff;
    border-radius: 50%;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.release-tile-link:hover .tile-cover-wrap,
.release-tile-link:focus-visible .tile-cover-wrap {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .38);
}

.release-tile-link:hover .tile-cover,
.release-tile-link:focus-visible .tile-cover { transform: scale(1.025); }

.release-tile-link:hover .tile-open,
.release-tile-link:focus-visible .tile-open {
    opacity: 1;
    transform: translateY(0);
}

.tile-meta {
    padding: 16px 2px 0;
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
}

.tile-meta h3 {
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.15;
}

.tile-meta p {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: .98rem;
    line-height: 1.25;
}

.tile-year {
    flex: 0 0 auto;
    color: var(--text-muted);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .05em;
}

.empty-state {
    padding: 100px 24px;
    text-align: center;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
}

.empty-state p { font-size: 1.35rem; }
.empty-state button {
    margin-top: 14px;
    padding: 10px 18px;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
}

.site-footer {
    background: var(--bg-deep);
    color: var(--text-soft);
}

.archive-footer {
    min-height: 220px;
    padding: 58px max(24px, calc((100vw - var(--max)) / 2));
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.archive-footer img { width: 160px; }
.archive-footer p { margin-top: 17px; color: var(--text-muted); }
.footer-links { display: flex; gap: 28px; }
.footer-links a:hover { color: var(--orange); }

.show-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--orange);
    font-weight: 600;
}

.show-all-link:hover { gap: 15px; }

/* Release detail */
.release-page {
    --release-accent: var(--orange);
    --pointer-x: 50vw;
    --pointer-y: 35vh;
    --detail-ink: #fff;
    --detail-soft: rgba(255, 255, 255, .74);
    --detail-muted: rgba(255, 255, 255, .54);
    --detail-line: rgba(255, 255, 255, .2);
    --detail-panel: rgba(0, 0, 0, .16);
    color: var(--detail-ink);
    background-color: var(--release-accent);
    background-image: linear-gradient(135deg,
        color-mix(in srgb, var(--release-accent) 72%, #160b1c) 0%,
        var(--release-accent) 52%,
        color-mix(in srgb, var(--release-accent) 82%, white) 130%);
    overflow-x: hidden;
    position: relative;
}

.release-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle 360px at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, .13), transparent 72%);
    opacity: .72;
    z-index: 1;
}

.release-page.text-dark {
    --detail-ink: #160b1c;
    --detail-soft: rgba(22, 11, 28, .76);
    --detail-muted: rgba(22, 11, 28, .58);
    --detail-line: rgba(22, 11, 28, .22);
    --detail-panel: rgba(255, 255, 255, .2);
}

.release-ambient {
    position: fixed;
    inset: -40px;
    background-image:
        linear-gradient(110deg, transparent 15%, var(--release-accent) 78%),
        var(--release-cover);
    background-position: center;
    background-size: cover;
    filter: blur(34px) saturate(1.35);
    opacity: .34;
    mix-blend-mode: multiply;
    transform: scale(1.08);
    animation: ambient-drift 18s ease-in-out infinite alternate;
    z-index: 0;
}

.release-shell {
    width: min(calc(100% - 64px), 1360px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 64px 0 110px;
    display: grid;
    align-items: start;
    position: relative;
    z-index: 1;
}

.release-card {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: start;
}

.release-artwork-wrap {
    --cover-rotate-x: 0deg;
    --cover-rotate-y: 0deg;
    --cover-shift: 0px;
    aspect-ratio: 1;
    position: relative;
    isolation: isolate;
    perspective: 1400px;
    animation: reveal-cover 900ms cubic-bezier(.2, .8, .2, 1) both;
}

.release-artwork-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-image: var(--release-cover);
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .34);
    transform: translateY(var(--cover-shift)) rotateX(var(--cover-rotate-x)) rotateY(var(--cover-rotate-y));
    transform-style: preserve-3d;
    transition: transform 280ms cubic-bezier(.2, .8, .2, 1);
}

.release-artwork {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.release-content { padding-top: 0; }
.release-content--upcoming { padding-top: 0; }

.release-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    animation: reveal-copy 700ms 160ms ease both;
}

.sound-bars {
    height: 15px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}

.sound-bars i {
    width: 2px;
    height: 35%;
    display: block;
    background: currentColor;
    border-radius: 2px;
    animation: sound-bar 1.05s ease-in-out infinite alternate;
}

.sound-bars i:nth-child(2) { height: 80%; animation-delay: -650ms; }
.sound-bars i:nth-child(3) { height: 55%; animation-delay: -300ms; }
.sound-bars i:nth-child(4) { height: 100%; animation-delay: -850ms; }

.release-content .eyebrow { color: var(--detail-ink); opacity: .62; }

.release-kicker--published {
    width: fit-content;
    min-height: 40px;
    padding: 6px 7px 6px 12px;
    background: var(--detail-panel);
    border: 1px solid var(--detail-line);
    border-radius: 999px;
    backdrop-filter: blur(14px);
}

.release-kicker--published .eyebrow {
    opacity: .78;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.release-year-badge {
    min-width: 55px;
    padding: 5px 10px 4px;
    color: var(--release-accent);
    background: var(--detail-ink);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-align: center;
}

.release-kicker--upcoming {
    width: 100%;
    min-height: 58px;
    padding: 10px 17px;
    justify-content: center;
    gap: 13px;
    color: var(--release-accent);
    background: var(--detail-ink);
    border-radius: 13px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
}

.release-kicker--upcoming .eyebrow {
    color: currentColor;
    opacity: 1;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.release-kicker--upcoming .sound-bars {
    height: 20px;
    color: currentColor;
}

.release-kicker--upcoming .sound-bars i { width: 3px; }

.release-content h1 {
    margin-top: 13px;
    font-size: clamp(3.4rem, 6.6vw, 6.8rem);
    font-weight: 300;
    letter-spacing: -.05em;
    line-height: .92;
    overflow-wrap: anywhere;
    animation: reveal-copy 780ms 230ms cubic-bezier(.2, .8, .2, 1) both;
}

.release-artist {
    margin-top: 22px;
    color: var(--detail-soft);
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    line-height: 1.25;
    animation: reveal-copy 720ms 310ms ease both;
}

.artist-archive-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    padding-bottom: 3px;
    color: var(--detail-ink);
    border-bottom: 1px solid var(--detail-line);
    font-size: .92rem;
    font-weight: 600;
    transition: gap 180ms ease, border-color 180ms ease;
    animation: reveal-copy 720ms 370ms ease both;
}

.artist-archive-link:hover { gap: 14px; border-color: var(--detail-ink); }
.artist-archive-link--upcoming { margin-top: 21px; }

.release-date {
    margin-top: 14px;
    color: var(--detail-muted);
    font-size: .94rem;
    font-weight: 500;
    letter-spacing: .04em;
    animation: reveal-copy 720ms 420ms ease both;
}

.upcoming-release {
    margin-top: 38px;
    padding: clamp(24px, 3vw, 34px);
    overflow: hidden;
    color: var(--release-accent);
    background: var(--detail-ink);
    border: 1px solid color-mix(in srgb, var(--release-accent) 25%, transparent);
    border-radius: 26px;
    box-shadow: 0 28px 75px rgba(0, 0, 0, .28);
    position: relative;
    animation: reveal-copy 760ms 420ms cubic-bezier(.2, .8, .2, 1) both;
}

.upcoming-release::before,
.upcoming-release::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.upcoming-release::before {
    width: 250px;
    height: 250px;
    top: -135px;
    right: -105px;
    border: 36px solid var(--release-accent);
    opacity: .14;
    animation: release-orbit 4s ease-in-out infinite;
}

.upcoming-release::after {
    width: 120px;
    height: 120px;
    right: -40px;
    bottom: -50px;
    background: var(--release-accent);
    filter: blur(35px);
    opacity: .24;
}

.upcoming-status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: currentColor;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.release-pulse {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 0 currentColor;
    animation: release-pulse 1.6s ease-out infinite;
}

.release-countdown {
    margin-left: auto;
    padding-left: 14px;
    opacity: .68;
    letter-spacing: .08em;
}

.upcoming-date-display {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    line-height: .74;
    position: relative;
    z-index: 1;
}

.upcoming-date-display strong {
    font-size: clamp(6rem, 12vw, 9.5rem);
    font-weight: 300;
    letter-spacing: -.09em;
}

.upcoming-date-display > span {
    padding-left: 13px;
    display: grid;
    gap: 9px;
    border-left: 2px solid currentColor;
}

.upcoming-date-display b {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -.05em;
}

.upcoming-date-display small {
    font-size: .86rem;
    font-weight: 600;
    letter-spacing: .15em;
}

.upcoming-release h2 {
    max-width: none;
    margin-top: 25px;
    font-size: clamp(1.5rem, 2.8vw, 2.15rem);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.02;
    position: relative;
    z-index: 1;
}

.upcoming-copy {
    max-width: 31em;
    margin-top: 10px;
    color: currentColor;
    opacity: .72;
    font-size: .98rem;
    position: relative;
    z-index: 1;
}

.calendar-reminder {
    width: fit-content;
    min-height: 48px;
    margin-top: 23px;
    padding: 10px 17px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--detail-ink);
    background: var(--release-accent);
    border-radius: 999px;
    font-size: .9rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: gap 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.calendar-reminder:hover,
.calendar-reminder:focus-visible {
    gap: 13px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
    outline: none;
    transform: translateY(-2px);
}

.platform-section {
    margin-top: 42px;
    padding: 22px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .12), transparent 58%),
        var(--detail-panel);
    border: 1px solid var(--detail-line);
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px) saturate(1.2);
    position: relative;
    animation: reveal-copy 760ms 480ms cubic-bezier(.2, .8, .2, 1) both;
}

.platform-section::before {
    content: '';
    width: 190px;
    height: 190px;
    position: absolute;
    top: -125px;
    right: -55px;
    background: var(--detail-ink);
    border-radius: 50%;
    filter: blur(8px);
    opacity: .1;
    pointer-events: none;
}

.platform-heading {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    position: relative;
}

.platform-section h2 {
    color: var(--detail-muted);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.platform-heading > span {
    color: var(--detail-muted);
    font-size: .76rem;
    font-weight: 500;
}

.platform-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.platform-link {
    min-height: 68px;
    padding: 10px 15px 10px 10px;
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 12px;
    color: var(--detail-ink);
    background: color-mix(in srgb, var(--detail-panel) 72%, transparent);
    border: 1px solid var(--detail-line);
    border-radius: 15px;
    font-size: .98rem;
    font-weight: 500;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
    position: relative;
    animation: reveal-platform 520ms cubic-bezier(.2, .8, .2, 1) both;
}

.platform-link:nth-child(2) { animation-delay: 70ms; }
.platform-link:nth-child(3) { animation-delay: 140ms; }
.platform-link:nth-child(4) { animation-delay: 210ms; }
.platform-link:nth-child(5) { animation-delay: 280ms; }
.platform-link:nth-child(6) { animation-delay: 350ms; }
.platform-link:nth-child(n+7) { animation-delay: 420ms; }

.platform-link:hover,
.platform-link:focus-visible {
    background: color-mix(in srgb, var(--detail-panel) 70%, var(--detail-ink) 12%);
    border-color: var(--detail-ink);
    transform: translateY(-2px);
    outline: none;
}

.platform-icon-wrap {
    width: 46px;
    height: 46px;
    padding: 6px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border-radius: 9px;
}

.platform-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
}

.platform-arrow {
    color: var(--detail-muted);
    font-size: 1.1rem;
    transition: color 180ms ease, transform 180ms ease;
}

.platform-link:hover .platform-icon { transform: scale(1.08) rotate(-3deg); }
.platform-link:hover .platform-arrow { color: var(--detail-ink); transform: translate(2px, -2px); }
.platform-empty { margin-top: 36px; color: var(--detail-muted); }

.artist-socials {
    margin-top: 32px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--detail-soft);
    border-top: 1px solid var(--detail-line);
    font-size: 1.08rem;
    font-weight: 600;
    animation: reveal-copy 720ms 560ms ease both;
}

@keyframes ambient-drift {
    from { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
    to { transform: scale(1.16) translate3d(1.5%, 1%, 0); }
}

@keyframes reveal-cover {
    from { opacity: 0; transform: translate3d(-28px, 22px, 0) scale(.96); }
    to { opacity: 1; transform: none; }
}

@keyframes reveal-copy {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@keyframes reveal-platform {
    from { opacity: 0; transform: translateY(10px) scale(.985); }
    to { opacity: 1; transform: none; }
}

@keyframes release-pulse {
    70%, 100% { box-shadow: 0 0 0 10px transparent; }
}

@keyframes release-orbit {
    0%, 100% { transform: scale(.92) rotate(-8deg); }
    50% { transform: scale(1.08) rotate(8deg); }
}

@keyframes sound-bar {
    from { transform: scaleY(.35); }
    to { transform: scaleY(1); }
}

.artist-socials a {
    width: 44px;
    height: 44px;
    padding: 8px;
    display: grid;
    place-items: center;
    background: var(--detail-panel);
    border-radius: 50%;
    transition: background 180ms ease, transform 180ms ease;
}

.artist-socials a:hover { background: color-mix(in srgb, var(--detail-panel) 60%, var(--detail-ink) 15%); transform: translateY(-2px); }
.artist-socials img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer--detail {
    width: min(calc(100% - 64px), 1360px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: transparent;
    border-top: 1px solid var(--detail-line);
    color: var(--detail-ink);
    font-size: .92rem;
    position: relative;
    z-index: 1;
}

.detail-footer-link {
    min-height: 170px;
    padding: 34px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-content: center;
    gap: 5px 18px;
    border-right: 1px solid var(--detail-line);
}

.detail-footer-link:last-child { padding-left: 44px; border-right: 0; }
.detail-footer-label { grid-column: 1 / -1; color: var(--detail-muted); letter-spacing: .1em; text-transform: uppercase; }
.detail-footer-link strong { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 400; }
.detail-footer-link > span:last-child { align-self: center; font-size: 1.5rem; transition: transform 180ms ease; }
.detail-footer-link:hover > span:last-child { transform: translateX(5px); }

@media (max-width: 1050px) {
    .release-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .release-card { grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr); gap: 48px; }
    .platform-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    body { font-size: 17px; }
    .site-header { width: min(calc(100% - 32px), var(--max)); min-height: 74px; }
    .brand img { width: 140px; }

    .archive-hero {
        width: min(calc(100% - 32px), var(--max));
        min-height: 430px;
        grid-template-columns: 1fr;
        align-items: end;
        padding: 72px 0 52px;
    }

    .archive-hero h1 { font-size: clamp(4.2rem, 20vw, 6.5rem); }
    .archive-stats { display: none; }
    .archive-tools { align-items: stretch; flex-direction: column; }
    .search-field { width: 100%; max-width: none; }
    .release-archive { padding-top: 56px; }
    .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 14px; }
    .tile-meta { display: block; }
    .tile-year { display: block; margin-top: 7px; }
    .tile-open { opacity: 1; transform: none; width: 36px; height: 36px; }
    .archive-footer { align-items: flex-start; flex-direction: column; }

    .release-shell {
        width: min(calc(100% - 32px), 600px);
        padding: 16px 0 70px;
    }

    .release-card { grid-template-columns: 1fr; gap: 45px; }
    .release-artwork-frame { border-radius: 13px; }
    .release-content { padding-top: 0; }
    .release-content h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
    .release-kicker--upcoming { margin-inline: auto; }
    .upcoming-release { margin-top: 32px; border-radius: 22px; }
    .is-upcoming .upcoming-date-display { justify-content: center; }
    .is-upcoming .upcoming-release h2,
    .is-upcoming .upcoming-copy,
    .is-upcoming .artist-archive-link--upcoming,
    .is-upcoming .artist-socials { display: none; }
    .is-upcoming .calendar-reminder {
        width: 100%;
        min-height: 58px;
        margin-top: 25px;
        justify-content: center;
        font-size: 1rem;
    }
    .platform-section { margin-top: 34px; padding: 18px; border-radius: 22px; }
    .platform-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .site-footer--detail { width: min(calc(100% - 32px), var(--max)); grid-template-columns: 1fr; }
    .detail-footer-link { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--detail-line); }
    .detail-footer-link:last-child { padding-left: 0; border-bottom: 0; }
}

@media (max-width: 500px) {
    .studio-link { font-size: .92rem; }
    .archive-intro { margin-top: 28px; }
    .release-grid { grid-template-columns: 1fr; gap: 38px; }
    .tile-meta h3 { font-size: 1.35rem; }
    .tile-meta p { font-size: 1.05rem; }
    .platform-list { grid-template-columns: 1fr; }
    .platform-heading > span { display: none; }
    .site-footer--detail { padding: 0; }
}

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