:root {
    color-scheme: dark;
    --ink: #0a0a0a;
    --ink-soft: #131313;
    --paper: #f0ede7;
    --paper-deep: #d8d3ca;
    --red: #ff3341;
    --line-dark: rgba(255, 255, 255, .18);
    --line-light: rgba(10, 10, 10, .2);
    --display: "Unbounded", sans-serif;
    --sans: "Manrope", sans-serif;
    --shell: min(100% - 48px, 1380px);
    --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: .98; letter-spacing: -.055em; }
.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; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: 16px; padding: 10px 16px; background: var(--paper); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 5px; }

.section-shell { width: var(--shell); margin-inline: auto; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 50; height: 72px; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; color: white; background: rgba(8,8,8,.78); backdrop-filter: blur(14px); transition: background .3s, height .3s; }
.site-header.is-solid { height: 66px; background: rgba(8,8,8,.93); backdrop-filter: blur(14px); }
.wordmark { font-family: var(--display); font-size: 25px; font-weight: 600; letter-spacing: -.08em; line-height: 1; }
.wordmark span { color: var(--red); }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.desktop-nav a, .footer-links a { transition: color .2s; }
.desktop-nav a:hover, .footer-links a:hover { color: var(--red); }
.header-actions { display: flex; align-items: center; gap: 22px; }
.listen-link { padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: white; padding: 11px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .25s; }
.mobile-menu { position: fixed; inset: 66px 0 0; z-index: 49; display: none; flex-direction: column; justify-content: center; padding: 32px; background: var(--ink); color: white; font-family: var(--display); font-size: clamp(32px, 11vw, 54px); line-height: 1.6; }
.mobile-menu.is-open { display: flex; }

.hero { position: relative; min-height: 100dvh; overflow: hidden; background: #080808; color: white; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-image { object-position: center center; transform: scale(1.025); }
.hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.08) 65%), linear-gradient(0deg, rgba(0,0,0,.55), transparent 45%); }
.hero-copy { position: absolute; left: max(24px, calc((100vw - 1380px) / 2)); bottom: 10vh; z-index: 2; max-width: 650px; }
.eyebrow, .section-kicker { margin-bottom: 18px; font-size: 11px; line-height: 1.3; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { margin: 0 0 18px; font-size: clamp(76px, 13vw, 194px); letter-spacing: -.09em; text-shadow: 0 10px 80px rgba(0,0,0,.45); }
.hero-copy > p:not(.eyebrow) { max-width: 480px; margin-bottom: 26px; font-size: clamp(18px, 2vw, 24px); }
.hero-actions { display: flex; align-items: center; gap: 28px; }
@media (prefers-reduced-motion: no-preference) {
    .hero-image { animation: hero-drift 16s cubic-bezier(.2,.7,.2,1) both; }
    @keyframes hero-drift { from { transform: scale(1.025) translate3d(0, 0, 0); } to { transform: scale(1.085) translate3d(-1.2%, -.5%, 0); } }
}
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 13px 22px; border: 1px solid transparent; border-radius: var(--radius); font-size: 12px; font-weight: 600; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: #ec1f2e; }
.button-outline { border-color: var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }
.button-light { background: white; color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px, -3px); }
.text-link-light { color: white; }

.intro { padding: 150px 0 170px; display: grid; grid-template-columns: 1fr 4.8fr 1.2fr; gap: 34px; align-items: start; }
.intro .section-kicker { padding-top: 12px; }
.intro h2 { margin-bottom: 0; font-size: clamp(43px, 6.2vw, 94px); }
.intro-note { align-self: end; margin-bottom: 5px; font-size: 14px; color: #4d4a46; }
.release-feature { padding-bottom: 170px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(48px, 7vw, 104px); align-items: center; }
.release-feature-art { aspect-ratio: 1 / 1; overflow: hidden; background: #111; }
.release-feature-art img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.release-feature-art:hover img { transform: scale(1.025); }
.release-feature-copy { min-width: 0; }
.release-feature-copy h2 { margin-bottom: 28px; font-size: clamp(48px, 5.2vw, 76px); }
.release-feature-copy > p:not(.section-kicker) { max-width: 430px; margin-bottom: 34px; font-size: 18px; }
.section-heading { margin-bottom: 60px; display: grid; grid-template-columns: 1fr 3fr; align-items: end; }
.section-heading > * { margin-bottom: 0; }
.section-heading h2 { font-size: clamp(40px, 5vw, 76px); }
.catalog { padding-bottom: 160px; }
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.release-cover { position: relative; display: block; overflow: hidden; aspect-ratio: 1; background: #141414; }
.release-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .4s; }
.release-cover:hover img { transform: scale(1.035); filter: brightness(.74); }
.cover-action { position: absolute; right: 16px; top: 16px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: white; color: black; opacity: 0; transform: translateY(7px); transition: opacity .25s, transform .25s; }
.release-cover:hover .cover-action { opacity: 1; transform: none; }
.release-meta { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding: 16px 2px; }
.release-meta h3 { margin: 0; font-size: clamp(20px, 2vw, 30px); }
.release-meta p { margin: 0; color: #69655f; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }

.playlist-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 780px; background: var(--ink); color: white; }
.playlist-image { overflow: hidden; }
.playlist-image img { width: 100%; height: 100%; object-fit: cover; }
.playlist-content { align-self: center; max-width: 610px; padding: 90px clamp(36px, 7vw, 120px); }
.playlist-content h2 { margin-bottom: 24px; font-size: clamp(52px, 6vw, 94px); }
.playlist-content > p:not(.section-kicker) { max-width: 440px; color: #c7c3bd; }
.track-list { margin: 42px 0; padding: 0; list-style-position: inside; }
.track-list li { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-dark); font-size: 14px; }
.track-list small { color: #8f8b85; }
.playlist-status { margin: 28px 0 0; color: #8f8b85; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.journal-preview { padding: 160px 0; }
.journal-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; align-items: start; }
.journal-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; filter: saturate(.85); transition: filter .3s; }
.journal-card:nth-child(2) { margin-top: 120px; }
.journal-card:hover img { filter: saturate(1.15); }
.journal-card div { padding: 22px 0; }
.journal-card p { margin-bottom: 12px; color: #6a6761; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }
.journal-card h3 { max-width: 620px; margin-bottom: 20px; font-size: clamp(26px, 3vw, 46px); }
.journal-card span { font-size: 13px; font-weight: 600; }
.closing-portrait { position: relative; min-height: 92vh; overflow: hidden; background: #090909; color: white; }
.closing-portrait > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .82; }
.closing-portrait::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.04)); }
.closing-copy { position: absolute; z-index: 2; left: max(24px, calc((100vw - 1380px) / 2)); bottom: 11%; max-width: 758px; }
.closing-copy > p { font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.closing-copy h2 { margin-bottom: 36px; font-size: clamp(48px, 7vw, 108px); }

.page-hero { min-height: 520px; padding-top: 190px; padding-bottom: 100px; display: grid; grid-template-columns: 1fr 3fr; align-content: end; }
.page-hero h1 { margin: 0; font-size: clamp(72px, 12vw, 180px); }
.page-hero > p:last-child { grid-column: 2; max-width: 520px; margin: 28px 0 0; font-size: 18px; }
.music-gallery { padding-bottom: 150px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 52px 20px; }
.music-tile { min-width: 0; }
.music-tile-cover { display: block; aspect-ratio: 1; overflow: hidden; background: #111; }
.music-tile-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .35s; }
.music-tile:hover .music-tile-cover img { transform: scale(1.035); filter: brightness(.82); }
.music-tile-copy { padding-top: 16px; }
.music-tile-copy h2 { margin: 0 0 9px; font-size: clamp(20px, 2.2vw, 31px); letter-spacing: -.045em; }
.music-tile-copy p { margin: 0; color: #6a6761; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.music-row { display: grid; grid-template-columns: 50px 116px 1fr 100px 52px; gap: 24px; align-items: center; padding: 22px 0; border-top: 1px solid var(--line-light); }
.music-row:last-child { border-bottom: 1px solid var(--line-light); }
.music-index-number { font-family: var(--display); font-size: 11px; }
.music-row-cover { overflow: hidden; aspect-ratio: 1; }
.music-row-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.music-row:hover .music-row-cover img { transform: scale(1.06); }
.music-row-title h2 { margin: 0 0 9px; font-size: clamp(28px, 4vw, 55px); }
.music-row-title p, .music-row-duration { margin: 0; color: #6a6761; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.circle-link { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; transition: background .2s, color .2s; }
.circle-link:hover { background: var(--ink); color: white; }
.playlist-callout { margin-bottom: 150px; padding: 32px; display: grid; grid-template-columns: 180px 1fr auto; gap: 36px; align-items: center; background: #e2ded6; }
.playlist-callout img { width: 180px; aspect-ratio: 1; object-fit: cover; }
.playlist-callout h2 { margin-bottom: 16px; font-size: clamp(35px, 5vw, 64px); }
.playlist-callout p:last-child { margin-bottom: 0; }

.release-page { min-height: 100dvh; padding: 120px max(24px, calc((100vw - 1380px) / 2)) 70px; display: grid; grid-template-columns: minmax(340px, 1.1fr) minmax(340px, .9fr); gap: clamp(50px, 9vw, 150px); align-items: center; background: color-mix(in srgb, var(--release-accent) 22%, #080808); color: white; }
.release-page-art { box-shadow: 0 36px 100px rgba(0,0,0,.45); }
.release-page-art img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.release-page-info h1 { margin-bottom: 32px; font-size: clamp(60px, 8vw, 126px); }
.release-story { max-width: 470px; margin-bottom: 42px; font-size: 20px; color: rgba(255,255,255,.78); }
.service-links { max-width: 560px; }
.service-links a { display: flex; justify-content: space-between; align-items: center; padding: 17px 2px; border-top: 1px solid var(--line-dark); font-size: 14px; font-weight: 600; }
.service-links a:last-child { border-bottom: 1px solid var(--line-dark); }
.service-links a span:last-child { transition: transform .2s; }
.service-links a:hover span:last-child { transform: translate(3px, -3px); }
.release-footnote { margin-top: 20px; color: rgba(255,255,255,.48); font-size: 11px; }
.release-listen { padding: 130px 0 30px; }
.release-listen-copy { margin-bottom: 46px; }
.release-listen-copy h2 { margin: 0; font-size: clamp(48px, 6vw, 92px); }
.stream-embed { display: block; width: 100%; border: 0; border-radius: var(--radius); background: #161616; }
.stream-embed.is-spotify { height: 152px; }
.stream-embed.is-apple { height: 450px; }
.stream-embed.is-apple.is-single { height: 175px; }
.release-tracklist { margin: 42px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.release-tracklist li { display: grid; grid-template-columns: 44px minmax(0, 1fr) 60px minmax(180px, auto); gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line-light); }
.release-tracklist strong { font-family: var(--display); font-size: clamp(17px, 2vw, 24px); font-weight: 500; letter-spacing: -.035em; }
.track-number, .track-duration { color: #747069; font-size: 11px; }
.track-services { display: flex; justify-content: flex-end; gap: 16px; }
.track-services a { padding-bottom: 2px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.more-music { padding: 140px 0; }
.more-music > h2 { margin-bottom: 55px; font-size: clamp(50px, 6vw, 90px); }

.artist-player { display: grid; grid-template-columns: 230px minmax(0, 1fr); min-height: 230px; overflow: hidden; background: #0b0b0b; color: white; box-shadow: 0 28px 70px rgba(31, 22, 16, .16); }
.player-cover img { width: 100%; height: 100%; object-fit: cover; }
.player-main { min-width: 0; padding: 26px 32px 22px; display: flex; flex-direction: column; }
.player-heading { display: flex; justify-content: space-between; gap: 24px; align-items: start; }
.player-heading p { margin: 0 0 5px; color: #8f8b85; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.player-heading h3 { margin: 0; font-size: clamp(21px, 3vw, 37px); }
.player-heading > span { padding: 5px 9px; border: 1px solid #3a3936; color: #908d87; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.artist-player.is-playing .player-heading > span { border-color: rgba(255,51,65,.55); color: var(--red); }
.player-visualizer { width: 100%; height: 82px; margin: 16px 0 10px; }
.player-controls { display: grid; grid-template-columns: 42px 42px minmax(80px,1fr) 42px 42px; gap: 12px; align-items: center; }
.player-play { display: grid; width: 42px; height: 42px; place-items: center; border: 0; border-radius: 50%; background: var(--red); color: white; cursor: pointer; }
.player-volume { border: 0; background: transparent; color: #c2beb8; font-size: 9px; letter-spacing: .08em; cursor: pointer; }
.player-controls > span { color: #96928c; font-size: 10px; font-variant-numeric: tabular-nums; }
.player-controls input { width: 100%; accent-color: var(--red); cursor: pointer; }
.player-empty { padding: 45px; border: 1px solid var(--line-light); background: #e7e2da; }
.player-empty h3 { max-width: 700px; margin-bottom: 13px; font-size: clamp(27px, 4vw, 52px); }
.player-empty > p:last-child { margin: 0; color: #68645f; }
.track-select { min-width: 0; padding: 0; display: flex; flex-direction: column; align-items: start; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.track-select span { margin-top: 4px; color: #7a756e; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.track-select:hover strong, .track-select.is-current strong { color: var(--red); }

.journal-index { padding-bottom: 150px; }
.journal-entry { padding: 50px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; border-top: 1px solid var(--line-light); }
.journal-entry-image { overflow: hidden; }
.journal-entry-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .7s; }
.journal-entry:hover img { transform: scale(1.025); }
.journal-entry h2 { margin-bottom: 24px; font-size: clamp(36px, 5vw, 72px); }
.journal-entry div > p:not(.section-kicker) { max-width: 500px; margin-bottom: 28px; color: #4f4c47; font-size: 17px; }
.article-header { padding-top: 190px; padding-bottom: 95px; max-width: 1180px; }
.article-header h1 { max-width: 1050px; margin-bottom: 38px; font-size: clamp(58px, 9vw, 130px); }
.article-header > p:last-child { max-width: 720px; font-size: 21px; }
.article-image { width: min(100% - 48px, 1520px); margin: 0 auto; }
.article-image img { width: 100%; max-height: 86vh; object-fit: cover; }
.article-body { width: min(100% - 48px, 730px); margin: 0 auto; padding: 90px 0 150px; }
.article-body p { margin-bottom: 28px; font-size: 20px; line-height: 1.8; }

.about-hero { min-height: 100dvh; padding-top: 66px; display: grid; grid-template-columns: 1.1fr .9fr; background: var(--ink); color: white; }
.about-image img { width: 100%; height: calc(100dvh - 66px); object-fit: cover; object-position: center 20%; }
.about-copy { align-self: center; max-width: 650px; padding: 70px clamp(34px, 8vw, 130px); }
.about-copy h1 { margin-bottom: 32px; font-size: clamp(60px, 8vw, 120px); }
.about-copy .about-lead { font-size: 22px; color: white; }
.about-copy p { color: #aaa59e; }
.about-copy .button { margin-top: 22px; }
.not-found { min-height: 80vh; padding-top: 180px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.not-found h1 { margin-bottom: 24px; font-size: clamp(64px, 11vw, 150px); }

.site-footer { padding: 75px max(24px, calc((100vw - 1380px) / 2)) 36px; display: grid; grid-template-columns: 1fr auto; gap: 60px; background: var(--ink); color: white; }
.wordmark-footer { display: inline-block; margin-bottom: 15px; }
.site-footer p { margin-bottom: 0; color: #8e8a84; font-size: 13px; }
.footer-links { display: flex; gap: 28px; align-items: start; font-size: 13px; }
.copyright { grid-column: 1 / -1; padding-top: 30px; border-top: 1px solid var(--line-dark); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s var(--delay, 0ms), transform .75s var(--delay, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
    :root { --shell: min(100% - 32px, 1380px); }
    .site-header { height: 66px; padding: 0 16px; }
    .desktop-nav, .listen-link { display: none; }
    .menu-toggle { display: block; }
    .hero-copy { bottom: 8vh; }
    .intro { padding: 100px 0; grid-template-columns: 1fr; gap: 15px; }
    .intro .section-kicker { padding: 0; }
    .intro-note { max-width: 500px; }
    .release-feature { padding-bottom: 110px; grid-template-columns: 1fr; gap: 42px; }
    .release-feature-copy { max-width: 620px; }
    .section-heading { display: block; margin-bottom: 38px; }
    .section-heading .section-kicker { margin-bottom: 16px; }
    .release-grid { grid-template-columns: repeat(2, 1fr); }
    .release-card:nth-child(3) { grid-column: span 2; width: calc(50% - 11px); }
    .playlist-panel { grid-template-columns: 1fr; }
    .playlist-image { max-height: 75vh; }
    .playlist-content { max-width: none; }
    .journal-grid { grid-template-columns: 1fr; }
    .journal-card:nth-child(2) { margin: 0; width: 72%; margin-left: auto; }
    .page-hero { min-height: 440px; padding-top: 140px; grid-template-columns: 1fr; }
    .page-hero > p:last-child { grid-column: 1; }
    .music-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .playlist-callout { grid-template-columns: 130px 1fr; }
    .playlist-callout img { width: 130px; }
    .playlist-callout .button { grid-column: 2; justify-self: start; }
    .release-page { grid-template-columns: 1fr; padding-top: 110px; }
    .release-page-art { width: min(100%, 700px); }
    .journal-entry { grid-template-columns: 1fr; gap: 34px; }
    .about-hero { grid-template-columns: 1fr; }
    .about-image img { height: 70vh; }
    .artist-player { grid-template-columns: 165px minmax(0, 1fr); min-height: 190px; }
    .player-main { padding: 22px; }
}

@media (max-width: 620px) {
    .hero-image { object-position: 64% center; }
    .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.82), rgba(0,0,0,.02) 72%); }
    .hero-copy { left: 16px; right: 16px; }
    .hero h1 { font-size: clamp(66px, 24vw, 110px); }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .intro h2 { font-size: 39px; }
    .release-grid { grid-template-columns: 1fr; }
    .release-card:nth-child(3) { grid-column: auto; width: auto; }
    .playlist-content { padding: 70px 18px; }
    .journal-card:nth-child(2) { width: 100%; }
    .closing-copy { left: 16px; right: 16px; }
    .music-row { grid-template-columns: 34px 76px 1fr 42px; gap: 12px; }
    .music-row-duration { display: none; }
    .music-row-title h2 { font-size: 22px; letter-spacing: -.04em; }
    .circle-link { width: 40px; height: 40px; }
    .playlist-callout { padding: 20px; grid-template-columns: 86px 1fr; gap: 18px; }
    .playlist-callout img { width: 86px; }
    .playlist-callout .button { grid-column: 1 / -1; width: 100%; }
    .release-page { padding-inline: 16px; }
    .release-page-info h1 { font-size: 53px; }
    .music-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 12px; }
    .music-tile-copy h2 { font-size: 19px; }
    .music-tile-copy p { font-size: 9px; }
    .release-listen { padding-top: 90px; }
    .stream-embed.is-apple.is-multitrack { height: 410px; }
    .release-tracklist li { grid-template-columns: 30px minmax(0, 1fr) 44px; gap: 10px; }
    .track-services { grid-column: 2 / -1; justify-content: flex-start; }
    .artist-player { grid-template-columns: 1fr; }
    .player-cover { display: none; }
    .player-main { padding: 22px 16px; }
    .player-controls { grid-template-columns: 42px 35px minmax(60px, 1fr) 35px; gap: 8px; }
    .player-volume { display: none; }
    .article-header { padding-top: 140px; }
    .article-body p { font-size: 18px; }
    .about-copy { padding: 60px 18px 80px; }
    .site-footer { grid-template-columns: 1fr; gap: 36px; }
    .footer-links { flex-wrap: wrap; }
    .copyright { grid-column: 1; }
}

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