
:root{
  --white:#FFFFFF; --ink:#0B0B0B; --grey:#6E6E6E; --rule:#E4E4E4; --grey-on-black:#8F8F8F; --soft:#F4F4F4;
  --g:24px; --side:clamp(16px, 3.4vw, 48px); --max:1600px; --hdr:72px; --player:0px;
  --display:"Archivo","Arial Black","Helvetica Neue",Arial,sans-serif;
  --ui:"Hanken Grotesk","Helvetica Neue",Helvetica,Arial,sans-serif;
  --ease:cubic-bezier(.2,.7,.1,1);
}
@media (max-width:899px){ :root{ --g:16px; --side:16px; } }

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; text-size-adjust:100%; scroll-padding-top:calc(var(--hdr) + 16px); }
body{
  margin:0; background:var(--white); color:var(--ink);
  font:400 16px/1.5 var(--ui);
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden; padding-bottom:var(--player);
}
body.has-player{ --player:64px; }
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button,select,input{ font:inherit; color:inherit; }
button{ background:none; border:0; padding:0; cursor:pointer; border-radius:0; }
h1,h2,h3,p,ul,ol,figure{ margin:0; }
ul,ol{ padding:0; list-style:none; }
:focus-visible{ outline:2px solid var(--ink); outline-offset:3px; }
.on-dark :focus-visible, .on-dark:focus-visible{ outline-color:#fff; }

.sr-only{ position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }
.skip{ position:fixed; left:16px; top:-100px; z-index:200; background:var(--ink); color:#fff; padding:10px 14px; font-weight:500; }
.skip:focus{ top:12px; }

.wrap{ width:100%; max-width:calc(var(--max) + 2 * var(--side)); margin-inline:auto; padding-inline:var(--side); }
.grid12{ display:grid; grid-template-columns:repeat(12, minmax(0,1fr)); column-gap:var(--g); }

.display{
  font-family:var(--display); font-stretch:125%; font-weight:900; text-transform:uppercase;
  letter-spacing:-0.01em; line-height:.9; font-variation-settings:"wdth" 125;
}
.num{ font-variant-numeric:tabular-nums; }
.ulink{ text-underline-offset:4px; text-decoration-thickness:1px; }
.ulink:hover{ text-decoration-line:underline; }

/* ---------- Header ---------- */
.site-header{ position:sticky; top:0; z-index:50; height:var(--hdr); background:var(--white); border-bottom:1px solid var(--rule); }
.hdr-inner{ height:100%; display:flex; align-items:center; justify-content:space-between; }
.logo{ display:block; flex:none; padding:8px 0; }
.logo img{ width:80px; height:auto; aspect-ratio:810/314; }
.logo .logo-w{ display:none; }
.nav-desk ul{ display:flex; align-items:center; gap:28px; }
.nav-desk a{ font-size:15px; font-weight:500; line-height:44px; display:block; text-underline-offset:6px; text-decoration-thickness:1px; }
.nav-desk a:hover, .nav-desk a[]{ text-decoration-line:underline; }
.nav-desk .sep{ width:1px; height:16px; background:currentColor; opacity:.3; }
.nav-desk .ext{ margin-left:3px; }
.menu-btn{ display:none; font-size:15px; font-weight:500; height:44px; padding:0 2px; }
@media (max-width:899px){
  .nav-desk{ display:none; }
  .menu-btn{ display:block; }
  .logo img{ width:72px; }
}

/* overlay variant (home, hero 1) */
.overlay-hdr .site-header{ position:fixed; left:0; right:0; background:transparent; border-bottom-color:transparent; color:#fff;
  transition:background-color .2s linear, border-color .2s linear, color .2s linear; }
.overlay-hdr .site-header .logo-w{ display:block; }
.overlay-hdr .site-header .logo-b{ display:none; }
.overlay-hdr .site-header :focus-visible{ outline-color:#fff; }
.overlay-hdr .site-header.is-solid{ background:var(--white); border-bottom-color:var(--rule); color:var(--ink); }
.overlay-hdr .site-header.is-solid .logo-w{ display:none; }
.overlay-hdr .site-header.is-solid .logo-b{ display:block; }
.overlay-hdr .site-header.is-solid :focus-visible{ outline-color:var(--ink); }

/* ---------- Design-review switch (preview only) ---------- */
.review{ background:var(--soft); border-bottom:1px solid var(--rule); color:var(--grey); font-size:12px; line-height:1; }
.review-in{ display:flex; align-items:center; gap:4px; min-height:32px; flex-wrap:wrap; }
.review-label{ margin-right:6px; }
.review button{ min-width:24px; height:32px; padding:0 4px; font-size:12px; color:var(--grey); }
.review button[aria-pressed="true"]{ color:var(--ink); font-weight:600; text-decoration:underline; text-underline-offset:4px; }
.review button:hover{ color:var(--ink); }
.review-dot{ opacity:.6; }
.review-note{ margin-left:auto; opacity:.8; }
@media (max-width:599px){ .review-note{ display:none; } }
.review.inline{ border:1px solid var(--rule); margin-bottom:28px; }
.review.inline .review-in{ padding-inline:12px; }

/* ---------- Menu (full-screen drop) ---------- */
.menu{
  position:fixed; inset:0; z-index:100; background:var(--white); color:var(--ink);
  overflow-y:auto; overscroll-behavior:contain;
  transform:translateY(-100%); visibility:hidden;
  transition:transform .5s var(--ease), visibility 0s linear .5s;
}
.menu.is-open{ transform:none; visibility:visible; transition:transform .5s var(--ease), visibility 0s; }
.menu-top{ height:var(--hdr); display:flex; align-items:center; justify-content:space-between; }
.menu-close{ font-size:15px; font-weight:500; height:44px; padding:0 2px; }
.menu-list{ padding-top:24px; padding-bottom:48px; }
.menu-list li{ border-top:1px solid var(--rule); opacity:0; transform:translateY(-14px);
  transition:opacity .3s linear, transform .45s var(--ease); transition-delay:0s; }
.menu-list li:last-child{ border-bottom:1px solid var(--rule); }
.menu.is-open .menu-list li{ opacity:1; transform:none; transition-delay:calc(180ms + var(--i) * 50ms); }
.menu-list a{ display:flex; justify-content:space-between; align-items:center; padding:18px 0 16px; font-size:44px; }
.menu-list a[]{ text-decoration:underline; text-decoration-thickness:3px; text-underline-offset:6px; }
.menu-list .arr{ font-family:var(--ui); font-weight:400; font-size:28px; }
.menu-foot{ padding-bottom:32px; color:var(--grey); font-size:15px; }
@media (max-width:380px){ .menu-list a{ font-size:38px; } }

/* ---------- Sections ---------- */
.sec{ padding-top:96px; }
.sec-head{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; border-top:1px solid var(--rule); padding-top:18px; margin-bottom:28px; flex-wrap:wrap; }
.sec-title{ font-family:var(--display); font-stretch:125%; font-variation-settings:"wdth" 125; font-weight:800; font-size:22px; line-height:1.1; text-transform:uppercase; letter-spacing:-0.01em; }
.more{ font-size:15px; font-weight:500; white-space:nowrap; text-underline-offset:5px; text-decoration-thickness:1px; }
.more:hover{ text-decoration-line:underline; }
@media (max-width:899px){ .sec{ padding-top:64px; } .sec-head{ margin-bottom:20px; } }

.page-head{ padding-top:72px; padding-bottom:40px; display:flex; align-items:baseline; gap:18px; flex-wrap:wrap; }
.page-title{ font-size:clamp(40px, 6vw, 88px); }
.page-count{ font-size:22px; color:var(--grey); font-weight:400; font-variant-numeric:tabular-nums; }
@media (max-width:899px){ .page-head{ padding-top:40px; padding-bottom:28px; gap:12px; } }

/* ---------- Round play button ---------- */
.pbtn{ display:inline-grid; place-items:center; flex:none; width:40px; height:40px; border-radius:50%; background:var(--white); color:var(--ink); }
.pbtn svg{ display:block; }
.pbtn .i-pause{ display:none; }
.pbtn.is-playing .i-play{ display:none; }
.pbtn.is-playing .i-pause{ display:block; }
.pbtn.dark{ background:var(--ink); color:#fff; }
.pbtn:hover{ background:var(--ink); color:#fff; }
.pbtn.dark:hover{ background:#333; }

/* ---------- Release tiles ---------- */
.tile{ position:relative; container-type:inline-size; align-self:start; }
.tile-open{ display:flex; flex-direction:column; width:100%; text-align:left; }
.tile-play{ position:absolute; left:12px; top:calc(100cqw - 52px); z-index:2; }
.cover{ display:block; position:relative; aspect-ratio:1/1; background:var(--ink); overflow:hidden; }
.cover > img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.sleeve{ container-type:inline-size; background:#000; }
.sleeve .sl-logo{ position:absolute; top:7cqi; right:7cqi; left:auto; bottom:auto; width:13cqi; height:auto; aspect-ratio:810/314; }
.sl-text{ position:absolute; left:7.5cqi; right:18cqi; bottom:7cqi; }
.sl-title{ display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3; overflow:hidden;
  color:#fff; font-weight:600; font-size:clamp(11px, 5.4cqi, 30px); line-height:1.15; letter-spacing:-0.005em; }
.sl-artist{ display:block; color:var(--grey-on-black); font-size:clamp(10px, 4.3cqi, 23px); line-height:1.25; margin-top:.35em; font-weight:400;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.has-clip .sl-text{ bottom:auto; top:7cqi; right:24cqi; }
.t-title{ display:block; margin-top:14px; font-size:16px; line-height:1.35; font-weight:600; text-underline-offset:4px; text-decoration-thickness:1px; }
.t-artist{ display:block; font-size:15px; line-height:1.4; color:var(--grey); margin-top:2px; }
.t-type{ display:block; font-size:13px; line-height:1.4; color:var(--grey); margin-top:6px; }
.tile-open:hover .t-title{ text-decoration-line:underline; }
@media (max-width:599px){ .t-title{ font-size:15px; margin-top:10px; } .t-artist{ font-size:14px; } .tile-play{ left:8px; top:calc(100cqw - 48px); } }

/* ---------- Sheet (release panel) ---------- */
dialog.sheet{
  position:fixed; inset:0 0 0 auto; margin:0; padding:0; border:0;
  width:min(560px, 100vw); max-width:100vw; height:100%; max-height:100%;
  background:var(--white); color:var(--ink); overflow-y:auto; overscroll-behavior:contain;
  transform:translateX(100%); transition:transform .45s var(--ease);
}
dialog.sheet.is-in{ transform:none; }
dialog.sheet::backdrop{ background:rgba(11,11,11,.4); }
.sheet-top{ position:sticky; top:0; z-index:3; height:var(--hdr); display:flex; align-items:center; justify-content:flex-end; padding:0 32px; background:var(--white); }
.sheet-close{ font-size:15px; font-weight:500; height:44px; padding:0 2px; }
.sheet-body{ padding:0 32px calc(56px + var(--player)); }
.sheet-cover{ margin-bottom:28px; }
.sheet-head{ display:flex; align-items:flex-start; gap:20px; justify-content:space-between; }
.sheet-title{ font-size:clamp(28px, 4.4vw, 40px); line-height:.95; overflow-wrap:anywhere; }
.sheet-head .pbtn{ width:56px; height:56px; margin-top:-4px; }
.sheet-artist{ font-size:20px; line-height:1.3; margin-top:14px; font-weight:500; }
.sheet-type{ font-size:15px; color:var(--grey); margin-top:4px; }
.sheet-sub{ font-size:15px; font-weight:600; margin-top:40px; padding-bottom:10px; }
.tracks li{ display:grid; grid-template-columns:32px minmax(0,1fr) auto auto; column-gap:12px; align-items:start; border-top:1px solid var(--rule); padding:13px 0 12px; }
.tracks li:last-child{ border-bottom:1px solid var(--rule); }
.tracks .tn{ color:var(--grey); font-variant-numeric:tabular-nums; font-size:15px; line-height:1.45; }
.tracks .tt{ display:block; font-size:16px; line-height:1.4; font-weight:500; }
.tracks .tc{ display:block; font-size:15px; line-height:1.45; color:var(--ink); margin-top:2px; }
.tracks .tc a{ text-decoration:underline; text-decoration-color:var(--rule); text-underline-offset:4px; text-decoration-thickness:1px; }
.tracks .tc a:hover{ text-decoration-color:currentColor; }
.role{ color:var(--grey); }
.tracks .tact{ align-self:center; }
.tracks .ts{ align-self:center; font-size:14px; color:var(--grey); white-space:nowrap; display:flex; flex-direction:column; align-items:flex-end; gap:2px; }
.sheet-note{ font-size:13px; line-height:1.45; color:var(--grey); margin-top:12px; }
/* Spotify link next to every Spotify number */
.spot{ display:inline-flex; align-items:center; gap:5px; font-size:13px; font-weight:500; color:var(--ink); white-space:nowrap; line-height:1; padding:6px 0; }
.spot .spot-g{ width:9px; height:9px; border-radius:50%; background:currentColor; flex:none; }
.spot:hover span:nth-child(2){ text-decoration:underline; text-underline-offset:3px; }
.spot.sm{ font-size:12px; padding:2px 0; color:var(--grey); }
.spot.sm:hover{ color:var(--ink); }
.on-dark .spot{ color:#fff; }
.spot-set{ display:inline-flex; flex-wrap:wrap; align-items:center; column-gap:14px; row-gap:0; }
.spot-set .spot.sm{ padding:3px 0; }
.sheet-streams .spot-set{ margin-left:6px; }
.tracks .tl{ display:block; margin-top:4px; }
.tracks .tl .spot-set{ column-gap:12px; }
.sheet-streams{ font-size:15px; color:var(--grey); margin-top:2px; }
.tracks .pbtn{ width:36px; height:36px; background:var(--ink); color:#fff; }
.listen{ font-size:14px; color:var(--grey); white-space:nowrap; display:inline-block; padding:8px 0; }
.listen:hover{ color:var(--ink); text-decoration:underline; text-underline-offset:4px; }
.onrel li{ display:grid; grid-template-columns:48px minmax(0,1fr); column-gap:14px; align-items:center; border-top:1px solid var(--rule); padding:12px 0; }
.onrel li:last-child{ border-bottom:1px solid var(--rule); }
.onrel .nm{ display:block; font-size:16px; font-weight:600; line-height:1.3; }
.onrel a{ display:inline-block; font-size:15px; color:var(--grey); line-height:1.4; text-decoration:underline; text-underline-offset:4px; text-decoration-thickness:1px; text-decoration-color:var(--rule); }
.onrel a:hover{ color:var(--ink); text-decoration-color:currentColor; }
@media (max-width:599px){ .sheet-top{ padding:0 16px; } .sheet-body{ padding:0 16px calc(40px + var(--player)); } }

/* avatar: round photo or initials */
.av{ display:block; width:48px; height:48px; border-radius:50%; overflow:hidden; background:var(--ink); color:#fff; flex:none; position:relative; }
.av img{ width:100%; height:100%; object-fit:cover; }
.av .ini{ position:absolute; inset:0; display:grid; place-items:center; font-family:var(--display); font-stretch:125%; font-variation-settings:"wdth" 125; font-weight:900; font-size:15px; text-transform:uppercase; }

/* ---------- Player (mini bar) ---------- */
.player{ position:fixed; left:0; right:0; bottom:0; z-index:90; background:var(--white); border-top:1px solid var(--rule); height:64px; }
.player[hidden]{ display:none; }
.pl-inner{ height:100%; display:flex; align-items:center; gap:6px; }
.ibtn{ width:40px; height:40px; display:grid; place-items:center; flex:none; color:var(--ink); }
.ibtn:hover{ opacity:.6; }
.pl-toggle{ width:40px; height:40px; background:var(--ink); color:#fff; margin:0 2px; }
.pl-toggle:hover{ background:#333; color:#fff; }
.pl-open{ flex:1; min-width:0; display:flex; align-items:center; gap:12px; text-align:left; height:48px; margin-left:10px; }
.pl-thumb{ width:40px; height:40px; flex:none; background:#000; position:relative; overflow:hidden; }
.pl-thumb img{ width:100%; height:100%; object-fit:cover; }
.pl-thumb .pl-sl{ position:absolute; inset:0; display:grid; place-items:center; }
.pl-thumb .pl-sl img{ width:60%; height:auto; }
.pl-meta{ min-width:0; font-size:15px; line-height:1.3; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.pl-meta .pl-title{ font-weight:600; }
.pl-meta .pl-artist{ color:var(--grey); }
.pl-open:hover .pl-title{ text-decoration:underline; text-underline-offset:4px; }
.pl-time{ font-size:14px; color:var(--grey); margin:0 8px; }
.pl-close{ font-size:15px; font-weight:500; height:44px; padding:0 2px; margin-left:6px; }
.seek{ width:100%; height:14px; margin:0; background:transparent; -webkit-appearance:none; appearance:none; cursor:pointer; }
.pl-seek{ position:absolute; left:0; right:0; top:-7px; }
.seek::-webkit-slider-runnable-track{ height:2px; background:linear-gradient(to right, var(--ink) var(--p,0%), var(--rule) var(--p,0%)); }
.seek::-moz-range-track{ height:2px; background:var(--rule); }
.seek::-moz-range-progress{ height:2px; background:var(--ink); }
.seek::-webkit-slider-thumb{ -webkit-appearance:none; width:12px; height:12px; margin-top:-5px; border-radius:50%; background:var(--ink); border:0; }
.seek::-moz-range-thumb{ width:12px; height:12px; border-radius:50%; background:var(--ink); border:0; }
.seek:focus{ outline:none; }
.seek:focus-visible::-webkit-slider-thumb{ outline:2px solid var(--ink); outline-offset:2px; }
@media (max-width:599px){ .pl-time, .pl-expand{ display:none; } .pl-open{ margin-left:4px; gap:10px; } .pl-thumb{ width:36px; height:36px; } }

/* ---------- Full player panel (slides up) ---------- */
dialog.fp{ position:fixed; inset:auto 0 0 0; margin:0; padding:0; border:0; width:100%; max-width:100%; height:min(88vh, 860px); max-height:100%;
  background:var(--white); color:var(--ink); overflow-y:auto; overscroll-behavior:contain; border-top:1px solid var(--rule);
  transform:translateY(100%); transition:transform .4s var(--ease); }
dialog.fp.is-in{ transform:none; }
dialog.fp::backdrop{ background:rgba(11,11,11,.4); }
.fp-top{ position:sticky; top:0; z-index:2; height:var(--hdr); display:flex; align-items:center; justify-content:space-between; background:var(--white); }
.fp-label{ font-size:15px; color:var(--grey); }
.fp-close{ font-size:15px; font-weight:500; height:44px; padding:0 2px; }
.fp-body{ display:grid; grid-template-columns:repeat(12, minmax(0,1fr)); column-gap:var(--g); row-gap:32px; padding-bottom:48px; align-items:start; }
.fp-art{ grid-column:1 / span 5; position:relative; aspect-ratio:1/1; background:#000; overflow:hidden; max-height:calc(min(88vh, 860px) - var(--hdr) - 48px); }
.fp-art > img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.fp-art .cover{ position:absolute; inset:0; aspect-ratio:auto; }
.fp-info{ grid-column:6 / span 4; display:flex; flex-direction:column; min-width:0; }
.fp-title{ font-size:clamp(28px, 3.4vw, 48px); line-height:.95; overflow-wrap:anywhere; }
.fp-credits{ font-size:18px; line-height:1.4; margin-top:14px; }
.fp-credits a{ text-decoration:underline; text-decoration-color:var(--rule); text-underline-offset:4px; text-decoration-thickness:1px; }
.fp-credits a:hover{ text-decoration-color:currentColor; }
.fp-rel{ font-size:15px; color:var(--grey); margin-top:10px; }
.fp-rel-btn{ color:var(--ink); font-weight:500; text-decoration:underline; text-underline-offset:4px; text-decoration-thickness:1px; }
.fp-streams{ font-size:15px; color:var(--grey); margin-top:2px; }
.fp-prog{ margin-top:32px; }
.fp-times{ display:flex; justify-content:space-between; font-size:14px; color:var(--grey); margin-top:6px; font-variant-numeric:tabular-nums; }
.fp-ctl{ display:flex; align-items:center; gap:18px; margin-top:20px; }
.fp-ctl .ibtn{ width:48px; height:48px; }
.fp-toggle{ width:64px; height:64px; background:var(--ink); color:#fff; }
.fp-toggle:hover{ background:#333; color:#fff; }
.fp-toggle svg{ transform:scale(1.2); }
.fp-links{ display:flex; flex-wrap:wrap; gap:8px 24px; margin-top:28px; font-size:15px; font-weight:500; }
.fp-links a{ text-decoration:underline; text-underline-offset:5px; text-decoration-thickness:1px; }
.fp-links a[hidden]{ display:none; }
.fp-queue{ grid-column:10 / span 3; }
.fp-queue h3{ font-size:15px; font-weight:600; padding-bottom:10px; }
.fp-queue li{ border-top:1px solid var(--rule); }
.fp-queue li:last-child{ border-bottom:1px solid var(--rule); }
.fq{ display:grid; grid-template-columns:28px minmax(0,1fr); column-gap:8px; width:100%; text-align:left; padding:10px 0; }
.fq-n{ grid-row:1 / span 2; color:var(--grey); font-size:14px; line-height:1.45; }
.fq-t{ font-size:15px; font-weight:500; line-height:1.35; }
.fq-a{ font-size:14px; color:var(--grey); line-height:1.35; }
.fq:hover .fq-t{ text-decoration:underline; text-underline-offset:4px; }
.fp-queue li.is-current .fq-t{ font-weight:700; }
.fp-queue li.is-current .fq-n{ color:var(--ink); }
@media (max-width:1099px){ .fp-art{ grid-column:1 / span 5; } .fp-info{ grid-column:6 / -1; } .fp-queue{ grid-column:1 / -1; } }
@media (max-width:899px){
  dialog.fp{ height:100%; border-top:0; }
  .fp-art{ grid-column:1 / -1; max-height:none; }
  .fp-info, .fp-queue{ grid-column:1 / -1; }
  .fp-body{ row-gap:24px; }
  .fp-prog{ margin-top:24px; }
}

/* ---------- Footer ---------- */
.site-footer{ border-top:1px solid var(--rule); margin-top:120px; padding:48px 0 32px; font-size:15px; line-height:1.5; }
.ft-grid{ row-gap:32px; }
.ft-brand{ grid-column:1 / span 4; }
.ft-brand img{ width:64px; height:auto; aspect-ratio:810/314; margin-bottom:20px; }
.ft-col{ grid-column:span 2; }
.ft-col:first-of-type{ grid-column:7 / span 2; }
.ft-col li + li{ margin-top:4px; }
.ft-col a{ text-underline-offset:4px; text-decoration-thickness:1px; }
.ft-col a:hover{ text-decoration-line:underline; }
.ft-copy{ grid-column:1 / -1; color:var(--grey); margin-top:40px; }
@media (max-width:899px){
  .site-footer{ margin-top:88px; padding-top:40px; }
  .ft-brand{ grid-column:1 / -1; }
  .ft-col, .ft-col:first-of-type{ grid-column:span 6; }
  .ft-copy{ margin-top:16px; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ transition-duration:0s!important; transition-delay:0s!important; animation:none!important; }
}


.filters{ display:flex; align-items:center; flex-wrap:wrap; gap:0 36px; border-top:1px solid var(--rule); padding:10px 0; margin-bottom:40px; }
.f{ display:flex; align-items:center; gap:10px; font-size:15px; }
.f label{ color:var(--grey); }
.f select{ appearance:none; -webkit-appearance:none; background:transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%230B0B0B' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 2px center;
  border:0; border-bottom:2px solid transparent; border-radius:0; padding:10px 24px 8px 0; font-size:15px; font-weight:500; color:var(--ink); cursor:pointer; max-width:260px; text-overflow:ellipsis; }
.f select:hover{ border-bottom-color:var(--rule); }
.f select:focus{ outline:none; border-bottom-color:var(--ink); }
.f-sort{ margin-left:auto; }
.rel-grid{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:48px 40px; }
@media (max-width:1099px){ .rel-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:36px 20px; } }
.more-wrap{ margin-top:56px; border-top:1px solid var(--rule); border-bottom:1px solid var(--rule); }
.more-wrap[hidden]{ display:none; }
.show-more{ display:block; width:100%; padding:22px 0; font-size:16px; font-weight:600; text-align:center; }
.show-more:hover{ text-decoration:underline; text-underline-offset:5px; text-decoration-thickness:1px; }
.empty{ padding:72px 0 24px; font-size:20px; }
.empty button{ font-weight:600; text-decoration:underline; text-underline-offset:5px; text-decoration-thickness:1px; }
@media (max-width:899px){
  .filters{ gap:0 20px; padding:4px 0; margin-bottom:28px; }
  .f select{ max-width:170px; }
  .f-sort{ margin-left:0; }
}


/* ---------- Oct 2026 data refresh ---------- */
.ft-about{ margin-top:12px; max-width:52ch; color:var(--grey); font-size:14px; line-height:1.55; }
.ft-about a{ text-decoration:underline; text-decoration-color:var(--rule); text-underline-offset:3px; }
.ft-about a:hover{ text-decoration-color:currentColor; }
.t40{ display:grid; grid-template-columns:minmax(0,200px) minmax(0,1fr); gap:32px; align-items:center; background:var(--ink); color:#fff; padding:40px 48px; }
.t40-art{ display:block; aspect-ratio:1/1; background:#000; overflow:hidden; }
.t40-art img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.t40-art:hover img{ transform:scale(1.03); }
.t40-kick{ font-size:13px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--grey-on-black); }
.t40-title{ font-size:clamp(34px, 4.6vw, 72px); line-height:.9; margin-top:12px; }
.t40-sub{ margin-top:14px; font-size:18px; line-height:1.4; color:#E6E6E6; max-width:52ch; }
.t40-act{ display:flex; flex-wrap:wrap; align-items:center; gap:14px 22px; margin-top:24px; }
.t40-btn{ display:inline-flex; align-items:center; gap:10px; height:52px; padding:0 26px; border-radius:999px; background:#fff; color:var(--ink); font-weight:700; font-size:16px; }
.t40-btn:hover{ background:#E6E6E6; }
.t40-btn .dot{ width:10px; height:10px; border-radius:50%; background:currentColor; }
.t40-meta{ font-size:14px; color:var(--grey-on-black); }
.tabs{ gap:10px; flex-wrap:wrap; overflow:visible; }
.tabs button{ height:48px; padding:0 22px; border:2px solid var(--ink); border-radius:999px; color:var(--ink); font-family:var(--display); font-stretch:125%; font-variation-settings:"wdth" 125; font-weight:900; text-transform:uppercase; font-size:15px; letter-spacing:-.01em; }
.tabs button:hover{ background:var(--soft); }
.tabs button[aria-selected="true"]{ background:var(--ink); color:#fff; border-bottom-color:var(--ink); }
@media (max-width:599px){ .tabs button{ height:42px; padding:0 14px; font-size:12px; } .tabs{ gap:6px; } }
@media (max-width:699px){ .t40{ grid-template-columns:1fr; padding:24px 20px; gap:20px; } .t40-art{ width:160px; } .t40-sub{ font-size:16px; } }

/* ---------- launch: review bars off, sign-up, release + artist pages ---------- */
.review, .hc-review, .n360-review{ display:none!important; }
.nl{ background:var(--ink); color:#fff; padding:56px 0; margin-top:96px; }
.nl-in{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:24px 48px; align-items:center; }
.nl-title{ font-size:clamp(30px, 4vw, 56px); line-height:.92; }
.nl-sub{ margin-top:12px; color:#E6E6E6; max-width:46ch; font-size:17px; line-height:1.45; }
.nl-row{ display:flex; gap:10px; flex-wrap:wrap; }
.nl-row input{ flex:1 1 240px; height:52px; padding:0 18px; border:1.5px solid #fff; border-radius:999px; background:transparent; color:#fff; font-size:16px; }
.nl-row input::placeholder{ color:#BDBDBD; }
.nl-btn{ height:52px; padding:0 28px; border-radius:999px; background:#fff; color:var(--ink); font-weight:700; font-size:16px; }
.nl-btn:hover{ background:#E6E6E6; }
.nl-legal{ margin-top:12px; font-size:13px; color:var(--grey-on-black); line-height:1.45; }
.nl-legal a{ text-decoration:underline; text-underline-offset:3px; }
.nl + .site-footer, .nl ~ .site-footer{ margin-top:0; }
@media (max-width:799px){ .nl-in{ grid-template-columns:1fr; } .nl{ padding:40px 0; } }
.cc{ position:fixed; left:16px; bottom:calc(16px + var(--player)); z-index:150; max-width:420px; background:var(--ink); color:#fff; padding:16px 18px; font-size:14px; line-height:1.45; box-shadow:0 6px 24px rgba(0,0,0,.25); }
.cc a{ text-decoration:underline; text-underline-offset:3px; }
.cc-b{ display:flex; gap:8px; margin-top:12px; }
.cc-b button{ height:40px; padding:0 16px; border:1px solid #fff; color:#fff; font-weight:600; }
.cc-b button[data-c="granted"]{ background:#fff; color:var(--ink); }
@media (max-width:599px){ .cc{ left:8px; right:8px; max-width:none; } }
.an-opt{ background:none; border:0; padding:0; color:inherit; text-decoration:underline; text-underline-offset:3px; cursor:pointer; font:inherit; }
.crumbs{ font-size:14px; color:var(--grey); padding-top:28px; }
.crumbs ol{ display:flex; flex-wrap:wrap; gap:6px; }
.crumbs li + li::before{ content:"›"; margin-right:6px; color:var(--grey); }
.crumbs a{ text-decoration:underline; text-decoration-color:var(--rule); text-underline-offset:3px; }
.crumbs a:hover{ text-decoration-color:currentColor; }
.rp{ display:grid; grid-template-columns:minmax(0,5fr) minmax(0,7fr); gap:48px; align-items:start; padding-top:28px; }
.rp-cover{ position:relative; aspect-ratio:1/1; background:var(--ink); overflow:hidden; }
.rp-cover img{ width:100%; height:100%; object-fit:cover; }
.rp-photo{ position:relative; aspect-ratio:4/5; background:var(--soft); overflow:hidden; }
.rp-photo img{ width:100%; height:100%; object-fit:cover; }
.rp-kick{ font-size:13px; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--grey); }
.rp-title{ font-size:clamp(40px, 5.6vw, 92px); line-height:.9; margin-top:14px; overflow-wrap:anywhere; }
.rp-by{ font-size:clamp(19px, 1.8vw, 24px); line-height:1.35; margin-top:16px; font-weight:600; }
.rp-by a, .rp-fact a, .rp-with a{ text-decoration:underline; text-decoration-color:var(--rule); text-underline-offset:4px; text-decoration-thickness:1px; }
.rp-by a:hover, .rp-fact a:hover, .rp-with a:hover{ text-decoration-color:currentColor; }
.rp-fact{ margin-top:18px; max-width:62ch; font-size:17px; line-height:1.55; }
.rp-meta{ margin-top:18px; display:grid; grid-template-columns:auto minmax(0,1fr); gap:6px 18px; font-size:15px; max-width:520px; }
.rp-meta dt{ color:var(--grey); }
.rp-meta dd{ margin:0; font-variant-numeric:tabular-nums; }
.rp-act{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; margin-top:26px; }
.rp-play{ display:inline-flex; align-items:center; gap:12px; height:52px; padding:0 22px 0 6px; border-radius:999px; background:var(--ink); color:#fff; font-weight:700; }
.rp-play .pbtn{ width:40px; height:40px; background:#fff; color:var(--ink); }
.rp-listen{ display:flex; flex-wrap:wrap; gap:10px; }
.rp-listen a{ display:inline-flex; align-items:center; gap:8px; height:44px; padding:0 18px; border:1.5px solid var(--ink); border-radius:999px; font-weight:600; font-size:15px; }
.rp-listen a:hover{ background:var(--ink); color:#fff; }
.rp-listen .d{ width:9px; height:9px; border-radius:50%; background:currentColor; }
.rp-sec{ padding-top:72px; }
.rp .tracks{ margin-top:0; }
.rp-note{ font-size:13px; line-height:1.45; color:var(--grey); margin-top:12px; max-width:70ch; }
.rp-vids{ display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:40px var(--g); }
.rp-grid{ display:grid; grid-template-columns:repeat(5, minmax(0,1fr)); gap:40px var(--g); }
.rp-with{ columns:4 200px; column-gap:24px; }
.rp-with li{ break-inside:avoid; padding:4px 0; }
.vcard{ display:block; }
.vcard .fr{ display:block; position:relative; aspect-ratio:16/9; overflow:hidden; background:var(--ink); }
.vcard .fr img, .vcard .fr iframe{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border:0; }
.vcard .dur{ position:absolute; right:8px; bottom:8px; background:rgba(11,11,11,.8); color:#fff; font-size:12px; font-weight:600; line-height:1; padding:4px 6px; }
.vcard .play{ position:absolute; left:50%; top:50%; width:56px; height:56px; margin:-28px 0 0 -28px; border:1.5px solid #fff; border-radius:50%; display:grid; place-items:center; color:#fff; }
.vcard .play svg{ margin-left:3px; }
.vt{ display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; margin-top:12px; font-size:15px; line-height:1.4; font-weight:600; }
.vd{ display:block; margin-top:4px; font-size:14px; color:var(--grey); }
.rp-yt-link{ display:inline-block; margin-top:6px; font-size:14px; color:var(--grey); text-decoration:underline; text-underline-offset:3px; }
@media (max-width:1099px){ .rp-grid{ grid-template-columns:repeat(3, minmax(0,1fr)); } .rp-vids{ grid-template-columns:repeat(2, minmax(0,1fr)); } }
.rp-sec .tracks .tl .spot{ white-space:normal; line-height:1.35; max-width:100%; overflow-wrap:anywhere; }
@media (max-width:799px){ .rp{ grid-template-columns:1fr; gap:28px; } .rp-grid{ grid-template-columns:repeat(2, minmax(0,1fr)); gap:28px 12px; } .rp-vids{ grid-template-columns:1fr; } .rp-cover, .rp-photo{ max-width:520px; } }
