:root {
  --bg: #080808;
  --bg-soft: #101010;
  --paper: #d9d6d0;
  --ink: #f3f0ea;
  --muted: #9b9892;
  --line: rgba(255,255,255,.14);
  --red: #ff1616;
  --red-dark: #b60707;
  --green-grey: #516361;
  --platform-color: #1ed760;
  --container: 1240px;
  --header-h: 78px;
  --ease: cubic-bezier(.22,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}
body.is-loading { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--red); color: #fff; }

.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;
}
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: clamp(96px, 11vw, 180px) 0; }

.page-noise {
  position: fixed; inset: 0; z-index: 1000; pointer-events: none;
  background-image: url("assets/noise.png"); opacity: .15; mix-blend-mode: soft-light;
}
.cursor-light {
  position: fixed; width: 420px; height: 420px; border-radius: 50%; z-index: 0;
  pointer-events: none; opacity: .15;
  background: radial-gradient(circle, rgba(255,25,25,.20), rgba(255,25,25,0) 67%);
  transform: translate(-50%, -50%); transition: opacity .3s ease;
}

/* PRELOADER + PLATFORM CHOICE */
.preloader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  padding: 32px 0; overflow-y: auto; background: #050505;
  opacity: 1; visibility: visible; transition: opacity .7s var(--ease), visibility .7s;
}
.preloader::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 74% 18%, color-mix(in srgb, var(--platform-color) 13%, transparent), transparent 31%), linear-gradient(125deg, transparent 44%, rgba(255,255,255,.025) 45%, transparent 46%);
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__noise { position: absolute; inset: 0; background: url("assets/noise.png"); opacity: .22; }
.preloader__chooser { position: relative; z-index: 2; width: min(900px, calc(100% - 48px)); transition: opacity .32s ease, transform .45s var(--ease), visibility .32s; }
.preloader__chooser[aria-hidden="true"] { opacity: 0; visibility: hidden; transform: translateY(-22px); pointer-events: none; }
.preloader__inner { width: min(520px, calc(100% - 56px)); position: relative; z-index: 2; }
.preloader__loading { position: absolute; left: 50%; top: 50%; opacity: 0; visibility: hidden; transform: translate(-50%, calc(-50% + 18px)); transition: opacity .32s ease, transform .45s var(--ease), visibility .32s; }
.preloader__loading[aria-hidden="false"] { opacity: 1; visibility: visible; transform: translate(-50%, -50%); }
.preloader .wordmark-glitch--preloader {
  width: min(100%, 640px);
  max-width: 100%;
  margin: 0;
}
.preloader .wordmark-glitch--chooser { width: min(68vw, 640px); }
.preloader .wordmark-glitch--loading { width: min(100%, 500px); }
.preloader .wordmark-glitch--preloader .wordmark--base {
  filter: drop-shadow(0 0 22px rgba(255,0,0,.13));
}
.preloader__eyebrow { margin: 34px 0 8px; color: var(--platform-color); font-size: 9px; letter-spacing: .28em; transition: color .3s ease; }
.preloader__chooser h1 { margin: clamp(38px, 5vh, 58px) 0 clamp(32px, 4vh, 46px); font: italic clamp(44px, 7.8vw, 92px)/.9 Impact, "Arial Narrow", sans-serif; letter-spacing: -.035em; text-transform: uppercase; }
.preloader__copy { max-width: 620px; margin: 20px 0 34px; color: #96928c; font-size: 14px; line-height: 1.7; }
.preloader__status { display: flex; justify-content: space-between; gap: 30px; margin: 38px 0 10px; color: #c8c5bf; font-size: 10px; letter-spacing: .24em; }
.preloader__bar { height: 2px; background: rgba(255,255,255,.14); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--platform-color); box-shadow: 0 0 24px var(--platform-color); transition: background .3s ease; }
.platform-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.platform-card {
  min-width: 0; min-height: 88px; display: grid; grid-template-columns: 48px minmax(0,1fr) auto; align-items: center; gap: 16px;
  padding: 16px 18px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.025); color: #fff; text-align: left; cursor: pointer;
  transition: transform .28s var(--ease), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.platform-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.055); }
.platform-card.is-active { border-color: var(--platform-color); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--platform-color) 48%, transparent), 0 12px 34px rgba(0,0,0,.28); }
.platform-card__icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; color: #fff; background: rgba(0,0,0,.24); }
.platform-card__icon > i { color: currentColor; font-size: 23px; line-height: 1; }
.platform-card > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.platform-card strong { font-size: 14px; font-weight: 620; }
.platform-card small { overflow: hidden; color: #7e7a74; font-size: 9px; letter-spacing: .08em; white-space: nowrap; text-overflow: ellipsis; }
.platform-card > i { color: #74706a; font-size: 14px; font-style: normal; transition: color .2s, transform .25s var(--ease); }
.platform-card:hover > i, .platform-card.is-active > i { color: var(--platform-color); transform: translate(2px,-2px); }
.platform-card:hover .platform-card__icon > i, .platform-card.is-active .platform-card__icon > i { color: #fff; transform: none; }
.platform-skip {
  width: 100%; min-height: 54px; display: flex; align-items: center; justify-content: center;
  margin: 8px 0 0; padding: 16px 20px; border: 0; background: transparent; color: rgba(255,255,255,.47);
  text-transform: uppercase; font-size: 9px; font-weight: 600; letter-spacing: .24em; cursor: pointer;
  transition: color .22s ease, letter-spacing .28s var(--ease), opacity .22s ease;
}
.platform-skip:hover { color: #fff; letter-spacing: .3em; }
.platform-skip:focus-visible { outline: 1px solid var(--platform-color); outline-offset: -5px; color: #fff; }
.platform-skip:active { opacity: .62; }
@keyframes preloadGlitch { 0%, 90%, 100% { transform: translate(0); } 91% { transform: translate(6px,-2px) skewX(-7deg); } 93% { transform: translate(-9px,1px); } 95% { transform: translate(2px,3px) skewX(5deg); } }

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 38px;
  border-bottom: 1px solid transparent; transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled { height: 66px; background: rgba(7,7,7,.84); backdrop-filter: blur(18px); border-color: var(--line); }
.mini-logo {
  justify-self: start;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: transform .28s var(--ease), filter .28s ease;
}
.mini-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255,22,22,.18));
  transition: width .3s var(--ease), height .3s var(--ease), filter .28s ease;
}
.mini-logo:hover {
  transform: translateY(-2px) scale(1.035);
  filter: brightness(1.16);
}
.site-header.is-scrolled .mini-logo img { width: 43px; height: 43px; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { position: relative; color: rgba(255,255,255,.72); text-decoration: none; text-transform: uppercase; font-size: 10px; letter-spacing: .22em; transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 1px; background: var(--red); transition: right .25s var(--ease); }
.main-nav a:hover { color: #fff; }
.main-nav a:hover::after { right: 0; }
.main-nav a.is-active {
  color: var(--red);
  text-shadow: 0 0 18px rgba(255,22,22,.28);
}
.main-nav a.is-active::after {
  right: 0;
  height: 2px;
  box-shadow: 0 0 14px rgba(255,22,22,.72);
}
.header-actions { justify-self: end; display: flex; align-items: center; gap: 13px; }
.platform-switcher {
  height: 38px; display: inline-flex; align-items: center; gap: 9px; padding: 0 11px 0 8px;
  border: 1px solid rgba(255,255,255,.25); background: rgba(5,5,5,.18); color: #fff; cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s var(--ease);
}
.platform-switcher:hover { border-color: var(--platform-color); background: rgba(255,255,255,.04); transform: translateY(-2px); }
.platform-switcher__icon { width: 22px; height: 22px; display: grid; place-items: center; color: var(--platform-color); transition: color .3s ease; }
.platform-switcher__icon > i { font-size: 20px; line-height: 1; }
.platform-switcher__label { font-size: 8px; text-transform: uppercase; letter-spacing: .17em; white-space: nowrap; }
.platform-switcher__chevron { color: rgba(255,255,255,.55); font-size: 10px; line-height: 1; }
.header-cta { border: 1px solid rgba(255,255,255,.35); padding: 10px 15px; text-decoration: none; text-transform: uppercase; font-size: 9px; letter-spacing: .2em; transition: .25s ease; }
.header-cta:hover { background: #fff; color: #080808; border-color: #fff; }
.social-icon { display: inline-grid; place-items: center; flex: 0 0 auto; color: rgba(255,255,255,.72); text-decoration: none; transition: color .22s ease, border-color .22s ease, transform .22s var(--ease), background .22s ease; }
.social-icon > i { font-size: 19px; line-height: 1; }
.social-icon--header { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.25); }
.social-icon--header:hover { color: #fff; border-color: var(--red); background: rgba(255,22,22,.08); transform: translateY(-2px); }
.menu-toggle { display: none; }

/* HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; isolation: isolate; background: #080808; }
.hero-video, .hero-fallback, .hero-vignette, .scanlines, .hero-video-shield { position: absolute; inset: 0; }
.hero-video { z-index: -5; overflow: hidden; opacity: .48; filter: saturate(.45) contrast(1.18); }
.hero-video iframe { position: absolute; left: 50%; top: 50%; width: max(100vw, 177.78vh); height: max(56.25vw, 100vh); transform: translate(-50%,-50%) scale(1.08); border: 0; pointer-events: none; user-select: none; }
.hero-fallback { z-index: -6; background: url("assets/band.webp") center 28% / cover no-repeat; filter: grayscale(1) contrast(1.2); opacity: 1; visibility: visible; transition: opacity .55s ease, visibility 0s linear .55s; }
html.hero-video-playing .hero-fallback { opacity: 0; visibility: hidden; }
.hero-vignette { z-index: -4; background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.48) 52%, rgba(0,0,0,.7) 100%), linear-gradient(0deg, #080808 0%, transparent 30%, rgba(0,0,0,.32) 100%); }
.scanlines { z-index: -3; opacity: .18; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.7) 4px); mix-blend-mode: multiply; }
.hero-video-shield { z-index: 1; background: transparent; cursor: default; user-select: none; -webkit-user-select: none; }
.hero-content { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 40px); padding-bottom: 90px; }
.eyebrow, .section-kicker { margin: 0 0 25px; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 650; letter-spacing: .29em; }
.wordmark-glitch { position: relative; width: min(900px, 87vw); margin-left: -1.4vw; }
.wordmark { width: 100%; user-select: none; }
.wordmark--ghost { position: absolute; inset: 0; pointer-events: none; opacity: 0; }
.wordmark--ghost-a { filter: hue-rotate(165deg) saturate(3); animation: glitchA 5.1s steps(1,end) infinite; }
.wordmark--ghost-b { filter: hue-rotate(310deg) saturate(2); animation: glitchB 4.3s steps(1,end) infinite; }
.wordmark--base { animation: titleJump 7s steps(1,end) infinite; filter: drop-shadow(0 0 18px rgba(255,0,0,.08)); }
@keyframes glitchA {
  0%, 89%, 92%, 100% { opacity: 0; clip-path: inset(0); transform: translate(0); }
  90% { opacity: .6; clip-path: inset(8% 0 67%); transform: translate(-7px,1px); }
  91% { opacity: .5; clip-path: inset(72% 0 10%); transform: translate(10px,-1px); }
}
@keyframes glitchB {
  0%, 73%, 76%, 100% { opacity: 0; transform: translate(0); }
  74% { opacity: .5; clip-path: inset(45% 0 34%); transform: translate(8px); }
  75% { opacity: .35; clip-path: inset(19% 0 65%); transform: translate(-5px,2px); }
}
@keyframes titleJump { 0%, 61%, 64%, 100% { transform: translate(0); } 62% { transform: translate(-2px,1px) skewX(-.6deg); } 63% { transform: translate(2px,-1px); } }
.hero-release { display: flex; gap: 20px; align-items: center; margin-top: clamp(24px, 4vw, 48px); color: #c7c4be; font-size: 10px; letter-spacing: .2em; }
.hero-release strong { color: #fff; font-size: 14px; letter-spacing: .3em; }
.hero-release span + strong, .hero-release strong + span { border-left: 1px solid rgba(255,255,255,.28); padding-left: 20px; }
.hero-actions { display: flex; gap: 13px; margin-top: 35px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 22px; padding: 0 22px; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; font-size: 10px; font-weight: 700; letter-spacing: .18em; transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s; }
.button:hover { transform: translateY(-3px); }
.button--red { background: var(--red); color: #fff; }
.button--red:hover { background: #ff3939; }
.button--red > i { font-size: 14px; }
.button--ghost { border-color: rgba(255,255,255,.36); background: rgba(0,0,0,.16); backdrop-filter: blur(8px); }
.button--ghost:hover { border-color: #fff; background: #fff; color: #080808; }
.hero-footer { position: absolute; z-index: 2; left: 38px; right: 38px; bottom: 25px; display: flex; justify-content: center; color: rgba(255,255,255,.43); font-size: 8px; letter-spacing: .22em; }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue i { width: 56px; height: 1px; background: rgba(255,255,255,.38); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: #fff; transform: translateX(-100%); animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%); } 50%,100% { transform: translateX(100%); } }

/* SHARED */
.section-kicker { color: var(--red); margin-bottom: 18px; }
.display-heading { margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-style: italic; font-weight: 400; font-size: clamp(74px, 10vw, 154px); line-height: .78; letter-spacing: -.035em; }
.section-title { margin: 0; font-size: clamp(48px, 6vw, 92px); line-height: .95; font-weight: 500; letter-spacing: -.055em; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 58px; }
.text-link { display: inline-flex; align-items: center; gap: 18px; color: #d6d3ce; text-decoration: none; text-transform: uppercase; font-size: 9px; font-weight: 700; letter-spacing: .2em; border-bottom: 1px solid rgba(255,255,255,.26); padding: 0 0 9px; transition: color .2s, border-color .2s; }
.text-link:hover { color: var(--red); border-color: var(--red); }
.text-link--button { background: none; border-top: 0; border-left: 0; border-right: 0; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ALBUM */
.album-section { background: radial-gradient(circle at 76% 43%, rgba(83,100,98,.18), transparent 38%), #0a0a0a; overflow: hidden; }
.album-section::before { content: "SURREALIST"; position: absolute; left: -2vw; bottom: -6vw; color: rgba(255,255,255,.018); font: italic 24vw/.7 Impact, "Arial Narrow", sans-serif; white-space: nowrap; pointer-events: none; }
.album-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: clamp(55px, 8vw, 130px); }
.album-copy { position: relative; z-index: 2; }
.album-copy .lead { max-width: 510px; margin: 40px 0 0; color: #b8b4ae; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.75; }
.countdown { display: grid; grid-template-columns: repeat(4, minmax(60px, 1fr)); max-width: 520px; margin-top: 46px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.countdown div { padding: 20px 15px 20px 0; }
.countdown div + div { border-left: 1px solid var(--line); padding-left: 18px; }
.countdown strong { display: block; font-family: "Arial Narrow", Arial, sans-serif; font-size: clamp(26px, 3vw, 45px); font-weight: 300; font-variant-numeric: tabular-nums; line-height: 1; }
.countdown span { display: block; margin-top: 10px; color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .22em; }
.album-copy__actions { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 35px; }
.microcopy { max-width: 370px; margin: 25px 0 0; color: #696761; font-size: 10px; line-height: 1.7; letter-spacing: .08em; }
.album-stage { position: relative; min-width: 0; perspective: 1600px; display: grid; place-items: center; }
.album-tilt { width: min(650px, 100%); aspect-ratio: 1; transform-style: preserve-3d; transition: transform .18s ease-out; }
.album-case { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 1.05s cubic-bezier(.2,.78,.22,1); cursor: pointer; outline: none; }
.album-case.is-flipped { transform: rotateY(180deg); }
.album-case:focus-visible { box-shadow: 0 0 0 3px var(--red); }
.album-face { position: absolute; inset: 0; backface-visibility: hidden; overflow: hidden; background: #111; box-shadow: 0 35px 90px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.23); }
.album-front picture, .album-front img { width: 100%; height: 100%; object-fit: cover; }
.album-back { transform: rotateY(180deg); background: #161616; }
.album-back__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.15); opacity: .24; }
.album-back__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,.48), rgba(5,5,5,.87)), linear-gradient(90deg, rgba(80,101,98,.34), transparent 42%); }
.album-back__content { position: absolute; inset: 0; display: flex; flex-direction: column; padding: clamp(24px, 4vw, 54px); }
.album-back__topline { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.38); padding-bottom: 9px; color: rgba(255,255,255,.7); font-size: clamp(6px, .7vw, 9px); letter-spacing: .25em; }
.album-back h3 { margin: 22px 0 0; font: italic clamp(37px, 5vw, 76px)/.9 Impact, "Arial Narrow", sans-serif; letter-spacing: -.02em; color: #f4f0e9; }
.album-back__sub { margin: 8px 0 22px; color: rgba(255,255,255,.54); font-size: clamp(6px, .67vw, 9px); letter-spacing: .2em; }
.tracklist {
  margin: 0;
  padding: 0;
  counter-reset: tracks;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, auto));
  grid-auto-flow: column;
  column-gap: clamp(18px, 2.7vw, 36px);
  row-gap: clamp(2px, .45vw, 7px);
}
.tracklist li {
  min-width: 0;
  counter-increment: tracks;
  list-style: none;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.tracklist li::before { display: none; }
.tracklist a,
.tracklist__row {
  min-height: clamp(30px, 3.15vw, 42px);
  display: grid;
  grid-template-columns: clamp(12px, 1.1vw, 17px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(4px, .65vw, 8px);
  padding: clamp(3px, .35vw, 5px) 0;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  transition: color .18s, transform .18s, border-color .18s;
}
.tracklist a::before,
.tracklist__row::before {
  content: counter(tracks, decimal-leading-zero);
  color: rgba(255,255,255,.38);
  font-size: clamp(6px, .55vw, 8px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tracklist a:hover { color: #fff; transform: translateX(3px); }
.tracklist li:has(a:hover) { border-color: rgba(196, 27, 42, .72); }
.tracklist a:hover::before { color: var(--red); }
.tracklist__details { min-width: 0; display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.tracklist__details strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-transform: uppercase;
  font-size: clamp(7px, .76vw, 11px);
  line-height: 1;
  letter-spacing: .08em;
  font-weight: 650;
}
.tracklist__details small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: rgba(255,255,255,.42);
  font-size: clamp(5px, .48vw, 7px);
  line-height: 1;
  letter-spacing: .04em;
}
.tracklist em {
  color: rgba(255,255,255,.48);
  font-style: normal;
  font-size: clamp(6px, .54vw, 8px);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.tracklist .is-unreleased { opacity: .27; }
.tracklist .is-unreleased .tracklist__row { cursor: default; color: rgba(255,255,255,.56); }
.tracklist .is-unreleased em { color: rgba(255,255,255,.35); }
.album-back__footer { margin-top: auto; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.32); display: flex; justify-content: space-between; align-items: end; gap: 18px; color: rgba(255,255,255,.5); font-size: clamp(5px, .5vw, 7px); line-height: 1.45; letter-spacing: .12em; }
.album-back__footer > span { max-width: 68%; text-align: right; }
.barcode { display: flex; align-items: stretch; gap: 2px; width: 82px; height: 22px; }
.barcode i { background: rgba(255,255,255,.7); flex: 1; }
.barcode i:nth-child(3n) { flex: .35; } .barcode i:nth-child(4n) { flex: 1.8; }
.case-glare { position: absolute; inset: -20%; pointer-events: none; background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.11) 49%, transparent 63%); transform: translateX(-60%); transition: transform .45s ease; }
.album-case:hover .case-glare { transform: translateX(55%); }
.case-edge { position: absolute; inset: 0; border: 7px solid rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(0,0,0,.8), inset 10px 0 14px rgba(255,255,255,.035); pointer-events: none; }
.album-stage__hint { margin: 22px 0 0; color: #77736e; font-size: 8px; letter-spacing: .24em; }

/* SPOTIFY */
.listen-section { background: #0d0d0d; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spotify-panel { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 520px; border: 1px solid rgba(255,255,255,.15); background: #101010; overflow: hidden; }
.spotify-panel__art { position: relative; min-height: 520px; overflow: hidden; background: #050505; }
.spotify-panel__art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, #101010), linear-gradient(0deg, rgba(0,0,0,.4), transparent); }
.spotify-panel__art img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); }
.vinyl-ring { position: absolute; z-index: 2; width: 56%; aspect-ratio: 1; right: -19%; top: 50%; transform: translateY(-50%); border-radius: 50%; background: repeating-radial-gradient(circle, #090909 0 3px, #151515 4px 6px); box-shadow: 0 15px 60px #000; }
.vinyl-ring::before { content: "AFA"; position: absolute; inset: 38%; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; font: italic 16px Impact, sans-serif; }
.spotify-panel__player { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 5vw, 72px); }
.spotify-label { margin: 0 0 26px; color: #aaa7a1; font-size: 9px; letter-spacing: .22em; }
.spotify-label span { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--platform-color); box-shadow: 0 0 16px var(--platform-color); margin-right: 8px; transition: background .3s ease, box-shadow .3s ease; }
.spotify-label b { font: inherit; font-weight: 400; }
.spotify-panel iframe { border: 0; border-radius: 12px; }
.spotify-embed-shell { --embed-height: 352px; width: 100%; min-height: var(--embed-height); border-radius: 12px; overflow: hidden; background: #080808; border: 1px solid rgba(255,255,255,.1); transition: min-height .35s var(--ease); }
.spotify-embed-shell iframe { display: block; width: 100%; min-height: var(--embed-height); border: 0; border-radius: 12px; background: #080808; transition: height .35s var(--ease), min-height .35s var(--ease); }

/* VIDEOS */
.videos-section { background: #080808; }
.video-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.video-card { grid-column: span 4; position: relative; min-width: 0; border: 0; padding: 0; background: #111; color: #fff; text-align: left; cursor: pointer; overflow: hidden; opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease), border-color .2s; }
.video-card.is-visible { opacity: 1; transform: none; }
.video-card:nth-child(1), .video-card:nth-child(6), .video-card:nth-child(10) { grid-column: span 8; }
.video-card__media { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #151515; }
.video-card__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.75) contrast(1.08); transition: transform .7s var(--ease), filter .4s; }
.video-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 58%); }
.video-card:hover img { transform: scale(1.045); filter: grayscale(.1) contrast(1.05); }
.play-disc { position: absolute; z-index: 2; left: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); background: rgba(0,0,0,.35); backdrop-filter: blur(8px); transition: background .25s, transform .25s; }
.play-disc > i { margin-left: 2px; color: #fff; font-size: 15px; }
.video-card:hover .play-disc { background: var(--red); border-color: var(--red); transform: scale(1.08); }
.video-card__meta { display: block; padding: 18px 2px 5px; border-top: 1px solid rgba(255,255,255,.12); }
.video-card__meta strong { font-size: 14px; font-weight: 560; letter-spacing: -.01em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-card--large .video-card__meta strong { font-size: 18px; }

/* BAND */
.band-section { padding-top: 0; background: #0b0b0b; }
.band-image-wrap { position: relative; width: min(calc(100% - 48px), 1450px); height: min(72vw, 830px); min-height: 470px; margin: 0 auto; overflow: hidden; }
.band-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; filter: grayscale(.35) contrast(1.08); }
.band-image-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, #0b0b0b 0, transparent 38%), linear-gradient(90deg, rgba(0,0,0,.45), transparent 45%); }
.band-image-wrap > p { position: absolute; left: 28px; bottom: 24px; margin: 0; color: rgba(255,255,255,.62); font-size: 8px; letter-spacing: .24em; }
.band-content { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 150px); padding-top: clamp(70px, 8vw, 130px); }
.band-bio > p { margin: 0 0 55px; max-width: 690px; color: #c3c0bb; font-size: clamp(19px, 2vw, 29px); line-height: 1.55; letter-spacing: -.02em; }
.members { border-top: 1px solid var(--line); }
.members div { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 20px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.members span { color: var(--red); font-size: 8px; letter-spacing: .15em; }
.members strong { font-size: 15px; font-weight: 520; }
.members em { color: #77736f; font-style: normal; text-transform: uppercase; font-size: 8px; letter-spacing: .18em; }

/* CONTACT */
.contact-section { min-height: 780px; display: flex; align-items: center; overflow: hidden; background: #070707; }
.contact-backdrop { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.89), rgba(0,0,0,.55)), url("assets/surrealist.webp") center 43% / cover no-repeat; filter: grayscale(.6) contrast(1.12); opacity: .36; transform: scale(1.04); }
.contact-section::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 50%, rgba(255,0,0,.12), transparent 35%); }
.contact-inner { position: relative; z-index: 2; }
.contact-inner h2 { margin: 0; font: italic clamp(74px, 12vw, 180px)/.76 Impact, "Arial Narrow", sans-serif; letter-spacing: -.04em; text-transform: uppercase; }
.contact-inner h2 span { color: var(--red); }
.contact-inner > p:not(.section-kicker) { max-width: 620px; margin: 42px 0 0; color: #b2afaa; font-size: 17px; line-height: 1.7; }
.contact-links { max-width: 850px; margin-top: 55px; border-top: 1px solid rgba(255,255,255,.24); }
.contact-links a { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 24px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.24); text-decoration: none; transition: padding .25s var(--ease), color .2s; }
.contact-links a:hover { color: var(--red); padding-left: 10px; }
.contact-links span { font-size: 14px; font-weight: 600; }
.contact-link__name { display: inline-flex; align-items: center; gap: 12px; }
.contact-link__name > i, .contact-link__platform-icon > i { width: 18px; color: currentColor; font-size: 17px; text-align: center; }
.contact-link__platform-icon { width: 18px; display: inline-grid; place-items: center; color: var(--platform-color); }
.contact-links b > i { font-size: 13px; }
.contact-links em { color: #8e8b86; font-style: normal; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.contact-links b { font-weight: 400; }

.site-footer { border-top: 1px solid var(--line); background: #060606; }
.site-footer .container { min-height: 88px; display: flex; align-items: center; justify-content: space-between; color: #696661; font-size: 8px; letter-spacing: .18em; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-actions { display: flex; align-items: center; gap: 22px; }
.social-icon--footer { width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.15); }
.social-icon--footer > i { font-size: 16px; }
.social-icon--footer:hover { color: var(--red); border-color: rgba(255,22,22,.55); transform: translateY(-2px); }


/* PLATFORM MODAL */
.platform-modal {
  width: min(760px, calc(100% - 34px)); max-width: none; padding: 0; border: 1px solid rgba(255,255,255,.18);
  background: rgba(8,8,8,.97); color: #fff; overflow: visible; opacity: 0; transform: translateY(18px) scale(.975);
  box-shadow: 0 40px 120px rgba(0,0,0,.72); transition: opacity .28s ease, transform .38s var(--ease), display .28s allow-discrete, overlay .28s allow-discrete;
}
.platform-modal[open] { opacity: 1; transform: none; }
@starting-style { .platform-modal[open] { opacity: 0; transform: translateY(22px) scale(.97); } }
.platform-modal::backdrop { background: rgba(0,0,0,.76); backdrop-filter: blur(14px); opacity: 0; transition: opacity .28s ease, display .28s allow-discrete, overlay .28s allow-discrete; }
.platform-modal[open]::backdrop { opacity: 1; }
@starting-style { .platform-modal[open]::backdrop { opacity: 0; } }
.platform-modal__panel { position: relative; padding: clamp(28px, 5vw, 58px); overflow: hidden; }
.platform-modal__panel::before { content: ""; position: absolute; width: 340px; height: 340px; right: -170px; top: -180px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--platform-color) 24%, transparent), transparent 68%); pointer-events: none; }
.platform-modal__panel h2 { margin: 6px 0 12px; font: italic clamp(46px, 8vw, 80px)/.86 Impact, "Arial Narrow", sans-serif; letter-spacing: -.04em; text-transform: uppercase; }
.platform-modal__panel > p:not(.section-kicker) { max-width: 560px; margin: 0 0 30px; color: #99958f; line-height: 1.7; }
.platform-modal__close { position: absolute; z-index: 3; right: 18px; top: 18px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: transparent; color: #fff; font-size: 17px; line-height: 1; cursor: pointer; transition: .22s ease; }
.platform-modal__close:hover { border-color: var(--platform-color); color: var(--platform-color); transform: rotate(6deg); }
.platform-grid--modal { position: relative; z-index: 2; }

/* VIDEO MODAL */
.video-modal { width: min(1120px, calc(100% - 36px)); max-width: none; padding: 0; border: 0; background: transparent; color: #fff; overflow: visible; }
.video-modal::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(14px); }
.video-modal__frame { aspect-ratio: 16/9; background: #000; box-shadow: 0 30px 100px #000; }
.video-modal iframe { width: 100%; height: 100%; border: 0; }
.video-modal__close { position: absolute; right: -2px; top: -48px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: #fff; background: transparent; font-size: 17px; line-height: 1; cursor: pointer; }
.video-modal__close:hover { background: #fff; color: #000; }

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .site-header { grid-template-columns: 1fr auto auto; padding-inline: 24px; }
  .main-nav { position: fixed; inset: 0; z-index: -1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; background: rgba(5,5,5,.97); opacity: 0; visibility: hidden; transition: .35s ease; }
  .main-nav.is-open { opacity: 1; visibility: visible; }
  .main-nav a { font-size: 20px; letter-spacing: .18em; }
  .header-actions { margin-right: 8px; gap: 8px; }
  .platform-switcher__label { display: none; }
  .menu-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 7px; border: 0; background: transparent; cursor: pointer; z-index: 2; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: #fff; transition: .3s ease; }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .album-grid, .band-content { grid-template-columns: 1fr; }
  .album-grid { gap: 80px; }
  .album-copy { max-width: 720px; }
  .album-tilt { width: min(720px, 100%); }
  .spotify-panel { grid-template-columns: 1fr; }
  .spotify-panel__art { min-height: 480px; }
  .spotify-panel__art::after { background: linear-gradient(0deg, #101010, transparent 36%); }
  .vinyl-ring { right: -15%; }
  .video-card { grid-column: span 6 !important; }
  .band-content { gap: 45px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 90px 0; }
  .site-header { padding-inline: 15px; }
  .mini-logo { width: 44px; height: 44px; }
  .mini-logo img,
  .site-header.is-scrolled .mini-logo img { width: 41px; height: 41px; }
  .header-cta { display: none; }
  .header-actions { margin-right: 0; }
  .social-icon--header { width: 40px; height: 40px; border-color: transparent; }
  .platform-switcher { width: 40px; height: 40px; justify-content: center; padding: 0; border-color: transparent; }
  .platform-switcher__chevron { display: none; }
  .platform-grid { grid-template-columns: 1fr; }
  .preloader { padding: 22px 0; }
  .preloader__chooser { width: min(calc(100% - 30px), 900px); }
  .preloader .wordmark-glitch--chooser { width: min(100%, 470px); }
  .preloader .wordmark-glitch--loading { width: min(100%, 420px); }
  .preloader__eyebrow { margin-top: 26px; }
  .preloader__chooser h1 { margin: 32px 0 28px; font-size: clamp(45px, 15vw, 68px); }
  .preloader__loading .preloader__status { margin-top: 30px; }
  .preloader__copy { margin: 16px 0 24px; font-size: 12px; }
  .platform-card { min-height: 72px; grid-template-columns: 40px minmax(0,1fr) auto; padding: 12px 14px; }
  .platform-card__icon { width: 38px; height: 38px; }
  .platform-modal__panel { padding: 36px 18px 22px; }
  .platform-modal__close { right: 12px; top: 12px; }
  .hero-content { padding-bottom: 110px; }
  .wordmark-glitch { width: 110vw; margin-left: -9vw; }
  .eyebrow { max-width: 260px; line-height: 1.8; }
  .hero-release { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-release span + strong, .hero-release strong + span { border-left: 0; padding-left: 0; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .button { width: 100%; }
  .hero-footer { left: 15px; right: 15px; }
  .hero-footer { justify-content: center; }
  .display-heading { font-size: clamp(66px, 21vw, 105px); }
  .countdown { grid-template-columns: repeat(2,1fr); }
  .countdown div:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .countdown div:nth-child(4) { border-top: 1px solid var(--line); }
  .album-copy__actions { flex-direction: column; align-items: flex-start; gap: 22px; }
  .album-stage__hint { text-align: center; line-height: 1.6; }
  .album-back__content { padding: 20px; }
  .album-back h3 { margin-top: 12px; font-size: 10vw; }
  .album-back__sub { margin-bottom: 8px; }
  .tracklist { column-gap: 12px; row-gap: 1px; }
  .tracklist a, .tracklist__row { grid-template-columns: 12px minmax(0, 1fr) auto; min-height: clamp(25px, 7vw, 34px); gap: 4px; padding: 2px 0; }
  .tracklist__details strong { font-size: clamp(6px, 1.7vw, 8px); letter-spacing: .035em; }
  .tracklist__details small { font-size: clamp(4px, 1.08vw, 6px); }
  .tracklist em { display: block; font-size: clamp(5px, 1.2vw, 7px); }
  .tracklist a::before, .tracklist__row::before { font-size: clamp(5px, 1.1vw, 6px); }
  .album-back__footer { padding-top: 6px; }
  .barcode { height: 14px; width: 55px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; margin-bottom: 40px; }
  .spotify-panel__art { min-height: 360px; }
  .spotify-panel__player { padding: 25px 15px 30px; }
  .video-grid { display: block; }
  .video-card { width: 100%; margin-bottom: 32px; }
  .video-card__meta { padding-top: 13px; }
  .band-image-wrap { width: calc(100% - 30px); min-height: 430px; height: 130vw; }
  .band-image-wrap img { object-position: 48% center; }
  .members div { grid-template-columns: 35px 1fr; gap: 12px; }
  .members em { grid-column: 2; margin-top: -10px; }
  .contact-section { min-height: 680px; }
  .contact-inner h2 { font-size: 20vw; }
  .contact-links a { grid-template-columns: 1fr auto; }
  .contact-links em { grid-row: 2; }
  .contact-links b { grid-row: 1 / 3; grid-column: 2; }
  .site-footer .container { flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; padding: 20px 0; }
  .footer-actions { width: 100%; justify-content: space-between; margin-top: 2px; }
}

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

@media (max-width: 560px) {
}

/* CMS-driven overrides */
.platform-card__icon { color: var(--card-color, #fff); }
.platform-card:hover .platform-card__icon > i,
.platform-card.is-active .platform-card__icon > i { color: var(--card-color, #fff); }
.social-icon { color: var(--icon-color, rgba(255,255,255,.72)); }
.social-icon:hover { color: var(--icon-color, #fff); }
.vinyl-ring::before { content: attr(data-label); }
.spotify-embed-shell.has-no-embed { position: relative; min-height: 220px; }
.spotify-embed-shell.has-no-embed::after {
  content: "This platform does not have an embeddable player. Use the link above to listen.";
  position: absolute; inset: 0; display: grid; place-items: center; padding: 30px; text-align: center;
  color: #8f8b85; font-size: 11px; line-height: 1.7; letter-spacing: .08em;
}
.spotify-embed-shell.has-no-embed iframe { display: none; }
.tracklist a.is-link-unavailable { opacity: .48; }
.contact-link__name > i { color: var(--link-icon-color, currentColor); }

/* Rebuilt band section: artwork left, editable member list right */
.band-section { padding-top: clamp(96px, 11vw, 180px); }
.band-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  align-items: stretch;
  gap: clamp(48px, 7vw, 110px);
}
.band-portrait {
  position: sticky;
  top: calc(var(--header-h) + 30px);
  align-self: start;
  height: min(72vh, 760px);
  min-height: 540px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 35px 90px rgba(0,0,0,.42);
}
.band-portrait__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: grayscale(.34) contrast(1.08);
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .3s var(--ease), transform .72s var(--ease), filter .3s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.band-portrait__image.is-active { opacity: 1; transform: scale(1); }
.band-portrait .band-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5,5,5,.84), transparent 38%), linear-gradient(90deg, rgba(0,0,0,.24), transparent 50%);
}
.band-portrait > p {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 21px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.band-mobile-bio { display: none; }
.band-copy { align-self: center; }
.band-bio-text {
  max-width: 690px;
  margin: 0 0 48px;
  color: #c3c0bb;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.65;
  letter-spacing: -.015em;
}
.members { border-top: 1px solid var(--line); }
.member-card {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: padding .28s var(--ease), color .2s ease, border-color .2s ease;
}
.member-card > span { min-width: 0; display: flex; align-items: baseline; justify-content: space-between; gap: 18px; }
.member-card strong { font-size: clamp(16px, 1.5vw, 21px); font-weight: 540; }
.member-card em { color: #77736f; font-style: normal; text-transform: uppercase; font-size: 8px; letter-spacing: .17em; text-align: right; }
.member-card small { grid-column: 1; margin-top: -7px; color: #8f8b85; font-size: 10px; line-height: 1.5; }
.member-card > i { grid-column: 2; grid-row: 1 / span 2; color: #5f5b56; font-size: 12px; transition: transform .25s var(--ease), color .2s; }
.member-card:focus-visible,
.member-card.is-active { padding-left: 13px; color: var(--red); border-color: rgba(255,22,22,.48); outline: none; }
.member-card:focus-visible > i,
.member-card.is-active > i { color: var(--red); transform: translateX(4px); }

/* Hover styling only exists on devices with a real mouse/trackpad. This avoids
   sticky pseudo-hover states after tapping a member name on mobile. */
@media (hover: hover) and (pointer: fine) {
  .member-card:hover { padding-left: 13px; color: var(--red); border-color: rgba(255,22,22,.48); outline: none; }
  .member-card:hover > i { color: var(--red); transform: translateX(4px); }
}

@media (max-width: 980px) {
  .band-layout { grid-template-columns: 1fr; gap: 55px; }
  .band-portrait { position: relative; top: auto; width: 100%; height: min(104vw, 720px); min-height: 500px; }
  .band-copy { max-width: 760px; }
}

@media (max-width: 680px) {
  .band-section { padding-top: 90px; }
  .band-layout { gap: 30px; }
  .band-portrait { height: 122vw; min-height: 470px; }
  .band-portrait .band-image-overlay {
    background: linear-gradient(0deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.88) 18%, rgba(5,5,5,.2) 56%, transparent 76%);
  }
  .band-mobile-bio {
    display: block;
    position: absolute;
    z-index: 3;
    left: 18px;
    right: 18px;
    bottom: 18px;
    margin: 0;
    padding: 18px 18px 17px;
    border: 1px solid rgba(255,255,255,.14);
    border-left-color: rgba(255,22,22,.75);
    background: rgba(7,7,7,.72);
    box-shadow: 0 18px 42px rgba(0,0,0,.34);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #d2cfca;
    font-size: 15px;
    line-height: 1.58;
    letter-spacing: -.008em;
  }
  .band-portrait > p { display: none; }
  .band-bio-text--desktop { display: none; }
  .band-copy { align-self: stretch; }
  .member-card { min-height: 70px; }
  .member-card > span { display: grid; gap: 5px; }
  .member-card em { text-align: left; }
}

/* Mobile front-page refinements */
@media (max-width: 680px) {
  /* Keep the hero wordmark fully inside the viewport. */
  .wordmark-glitch {
    width: min(100%, 560px);
    max-width: 100%;
    margin-left: 0;
  }

  /* Prevent the album copy and oversized display type from widening the grid. */
  /* Keep the album section inside the same padded mobile container as Listen. */
  .album-section .album-grid {
    width: min(calc(100% - 48px), var(--container));
    max-width: var(--container);
    margin-inline: auto;
    gap: 58px;
  }
  .album-copy,
  .album-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .display-heading {
    max-width: 100%;
    font-size: clamp(50px, 16.5vw, 74px);
    line-height: .84;
    overflow-wrap: anywhere;
  }
  .album-copy .lead {
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.66;
    overflow-wrap: anywhere;
  }

  /* Keep all four countdown values on one compact row. */
  .countdown {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 34px;
  }
  .countdown div {
    min-width: 0;
    padding: 15px 6px;
    text-align: center;
  }
  .countdown div + div,
  .countdown div:nth-child(3) {
    border-left: 1px solid var(--line);
    padding-left: 6px;
  }
  .countdown div:nth-child(3),
  .countdown div:nth-child(4) {
    border-top: 0;
  }
  .countdown strong { font-size: clamp(22px, 7.2vw, 31px); }
  .countdown span {
    margin-top: 7px;
    font-size: clamp(6px, 1.75vw, 8px);
    letter-spacing: .12em;
  }

  /* Bring the flippable album case back from the screen edges. */
  .album-stage { justify-items: center; }
  .album-tilt {
    width: min(88vw, 390px);
    max-width: 100%;
  }

  /* Improve legibility on the back cover without losing the two-column CD layout. */
  .album-back__content { padding: clamp(13px, 4vw, 18px); }
  .album-back__topline {
    padding-bottom: 6px;
    font-size: clamp(6.5px, 1.85vw, 8px);
    letter-spacing: .13em;
  }
  .album-back h3 {
    margin-top: 9px;
    font-size: clamp(28px, 9.5vw, 40px);
  }
  .album-back__sub {
    margin: 4px 0 7px;
    font-size: clamp(6.5px, 1.8vw, 8px);
    letter-spacing: .12em;
  }
  .tracklist {
    column-gap: clamp(8px, 2.6vw, 12px);
    row-gap: 1px;
  }
  .tracklist a,
  .tracklist__row {
    grid-template-columns: 12px minmax(0, 1fr) auto;
    min-height: clamp(29px, 8.2vw, 35px);
    gap: 4px;
    padding: 2px 0;
  }
  .tracklist__details { gap: 2px; }
  .tracklist__details strong {
    font-size: clamp(7.5px, 2.2vw, 9.5px);
    letter-spacing: .035em;
  }
  .tracklist__details small {
    font-size: clamp(5.5px, 1.55vw, 7px);
    line-height: 1.1;
  }
  .tracklist em { font-size: clamp(6.5px, 1.8vw, 8px); }
  .tracklist a::before,
  .tracklist__row::before { font-size: clamp(6.5px, 1.75vw, 7.5px); }
  .album-back__footer {
    gap: 8px;
    padding-top: 7px;
    font-size: clamp(6.5px, 1.8vw, 8px);
    line-height: 1.25;
    letter-spacing: .07em;
  }
  .album-back__footer > span { max-width: 74%; }
  .barcode { width: 48px; height: 15px; gap: 1px; }

  /* Centre the decorative vinyl at the bottom of the Listen artwork. */
  .vinyl-ring {
    width: 54%;
    left: 50%;
    right: auto;
    top: auto;
    bottom: -12%;
    transform: translateX(-50%);
  }
}

@media (max-width: 380px) {
  .display-heading { font-size: clamp(47px, 15.5vw, 60px); }
  .countdown div { padding-inline: 3px; }
  .countdown div + div,
  .countdown div:nth-child(3) { padding-left: 3px; }
  .countdown span { letter-spacing: .07em; }
  .album-tilt { width: min(86vw, 330px); }
  .album-back__content { padding: 12px; }
  .tracklist a,
  .tracklist__row {
    grid-template-columns: 10px minmax(0, 1fr) auto;
    min-height: 27px;
    gap: 3px;
  }
  .tracklist__details strong { font-size: 7.3px; }
  .tracklist__details small { font-size: 5.2px; }
  .tracklist em,
  .tracklist a::before,
  .tracklist__row::before { font-size: 6px; }
  .album-back__footer { font-size: 6.2px; }
}

/* LIVE DATES */
.live-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(255,22,22,.09), transparent 28%),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.live-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}
.live-section .container { position: relative; z-index: 1; }
.live-section__intro {
  width: min(430px, 38vw);
  margin: 0 0 5px;
  color: #9b9791;
  font-size: 15px;
  line-height: 1.75;
}
.live-list { border-top: 1px solid rgba(255,255,255,.17); }
.live-date {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
  min-height: 142px;
  padding: 22px 18px 22px 10px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: inherit;
  text-decoration: none;
  isolation: isolate;
  transition: padding .34s var(--ease), border-color .25s ease, background .25s ease;
}
.live-date::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,22,22,.12), rgba(255,22,22,.025) 48%, transparent 80%);
  opacity: 0;
  transform: scaleX(.985);
  transform-origin: left center;
  transition: opacity .28s ease, transform .42s var(--ease);
}
a.live-date { cursor: pointer; }
a.live-date:hover,
a.live-date:focus-visible {
  padding-left: 22px;
  border-color: rgba(255,22,22,.56);
  outline: 0;
}
a.live-date:hover::before,
a.live-date:focus-visible::before { opacity: 1; transform: scaleX(1); }
.live-date__date {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 10px;
  font-style: normal;
}
.live-date__date > span {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-bottom: 5px;
  color: var(--red);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .22em;
}
.live-date__date > strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #f2eee8;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 450;
  line-height: .78;
  letter-spacing: -.07em;
}
.live-date__date > em {
  grid-column: 1;
  grid-row: 2;
  color: #625f5b;
  font-size: 8px;
  font-style: normal;
  letter-spacing: .18em;
}
.live-date__details { min-width: 0; }
.live-date__details > strong {
  display: block;
  overflow: hidden;
  color: #f2f0eb;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.045em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-date__details > span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 13px;
  color: #89857f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.live-date__details i { color: var(--red); font-size: 10px; }
.live-date__details b { color: #514e4a; font-weight: 400; }
.live-date__action {
  min-width: 130px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color: #d9d6d0;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .2em;
  text-align: right;
  text-transform: uppercase;
}
.live-date__action > i {
  color: var(--red);
  font-size: 12px;
  transition: transform .25s var(--ease);
}
a.live-date:hover .live-date__action > i,
a.live-date:focus-visible .live-date__action > i { transform: translate(3px,-3px); }
.live-date__sold-out {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,22,22,.55);
  color: var(--red);
  background: rgba(255,22,22,.055);
}
.live-date__no-link { color: #605d58; }
.live-date.is-sold-out .live-date__details > strong { color: #aaa6a0; }
.live-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 50px 24px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.018);
  text-align: center;
}
.live-empty > i {
  color: var(--red);
  font-size: 30px;
  opacity: .86;
}
.live-empty > p {
  max-width: 560px;
  margin: 0;
  color: #a8a49e;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
  letter-spacing: -.02em;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .main-nav { gap: 20px; }
  .main-nav a { font-size: 9px; letter-spacing: .17em; }
  .site-header { padding-inline: 26px; }
}

@media (max-width: 760px) {
  .live-section__intro { width: 100%; max-width: 590px; margin-top: 4px; }
  .live-date {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    min-height: 126px;
    padding: 18px 4px;
  }
  a.live-date:hover,
  a.live-date:focus-visible { padding-left: 8px; }
  .live-date__date { column-gap: 7px; }
  .live-date__date > span { font-size: 8px; padding-bottom: 3px; }
  .live-date__date > strong { font-size: clamp(43px, 13vw, 58px); }
  .live-date__date > em { font-size: 7px; }
  .live-date__details > strong {
    font-size: clamp(22px, 7vw, 31px);
    white-space: normal;
  }
  .live-date__details > span { margin-top: 9px; font-size: 8px; line-height: 1.6; letter-spacing: .12em; }
  .live-date__action {
    grid-column: 2;
    min-width: 0;
    justify-content: flex-start;
    margin-top: -8px;
    font-size: 8px;
    text-align: left;
  }
  .live-date__sold-out { min-height: 30px; padding-inline: 11px; }
  .live-empty { min-height: 220px; padding-inline: 22px; }
}

@media (max-width: 400px) {
  .live-date { grid-template-columns: 70px minmax(0, 1fr); gap: 14px; }
  .live-date__date > strong { font-size: 42px; }
  .live-date__details > strong { font-size: 21px; }
}
