:root {
  --ink: #090807;
  --coal: #12100e;
  --panel: #181411;
  --paper: #f0e8d8;
  --muted: #a89f91;
  --gold: #d69a3d;
  --gold-light: #f3c978;
  --line: rgba(240, 232, 216, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.admin-bar .topbar {
  top: 32px;
}

main {
  display: block;
}

.wp-fallback {
  min-height: 70vh;
  padding-top: 160px;
  padding-bottom: 100px;
}

body::selection {
  color: var(--ink);
  background: var(--gold-light);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(240, 232, 216, 0.14);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 0.82;
  letter-spacing: 0.1em;
}

.wordmark em {
  margin-left: 58px;
  color: var(--gold-light);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
}

.topbar nav {
  display: flex;
  gap: 34px;
  color: rgba(240, 232, 216, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar nav a,
.nav-listen,
.text-link,
footer a {
  transition: color 180ms ease;
}

.topbar nav a:hover,
.nav-listen:hover,
.text-link:hover,
footer a:hover {
  color: var(--gold-light);
}

.nav-listen {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  min-height: 100vh;
  padding: 150px 5vw 68px;
  background:
    radial-gradient(circle at 82% 40%, rgba(203, 129, 30, 0.28), transparent 29%),
    linear-gradient(105deg, #080706 0%, #100c09 64%, #241509 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 570px;
  height: 570px;
  right: 4vw;
  top: 19%;
  border: 1px solid rgba(228, 164, 67, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(218, 151, 49, 0.028),
    0 0 0 140px rgba(218, 151, 49, 0.018);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.release h2,
.section-heading h2,
.story h2,
.closing h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 {
  max-width: 880px;
  font-size: clamp(66px, 7.1vw, 126px);
}

.hero-script {
  margin: 2px 0 28px 31%;
  color: var(--gold-light);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(30px, 3.2vw, 53px);
  line-height: 1;
  transform: rotate(-4deg);
}

.hero-intro {
  max-width: 570px;
  margin: 0 0 34px;
  color: rgba(240, 232, 216, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-gold {
  gap: 11px;
  background: var(--gold);
  color: #0e0b08;
}

.button-gold:hover {
  background: var(--gold-light);
}

.button-ghost {
  border-color: rgba(240, 232, 216, 0.28);
  color: var(--paper);
}

.button-ghost:hover {
  border-color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 55px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stats span {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-stats strong {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: min(90%, 590px);
  justify-self: end;
}

.portrait-frame {
  position: relative;
  padding: 9px;
  border: 1px solid rgba(235, 182, 93, 0.48);
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-color: var(--gold-light);
  pointer-events: none;
}

.portrait-frame::before {
  top: -10px;
  left: -10px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.portrait-frame::after {
  right: -10px;
  bottom: -10px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.9) contrast(1.08);
}

.portrait-note {
  margin: 26px 0 0;
  text-align: right;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(214, 154, 61, 0.35);
  border-bottom: 1px solid rgba(214, 154, 61, 0.35);
  background: var(--gold);
  color: #130d07;
}

.marquee div {
  width: max-content;
  padding: 13px 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.24em;
  word-spacing: 24px;
  animation: marquee 30s linear infinite;
}

.marquee span {
  color: #67400d;
}

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

.section-shell {
  width: min(1380px, 90vw);
  margin: 0 auto;
}

.release {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.86fr);
  gap: 9vw;
  align-items: center;
  min-height: 840px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.release-copy {
  max-width: 600px;
}

.release h2 {
  font-size: clamp(74px, 10vw, 158px);
}

.release-subtitle {
  margin: 8px 0 34px;
  color: var(--gold-light);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 35px;
  transform: rotate(-3deg);
}

.release-copy > p:not(.eyebrow, .release-subtitle) {
  max-width: 520px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.8;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
}

.tags span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: rgba(240, 232, 216, 0.74);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-art {
  position: relative;
  padding: 15px;
  border: 1px solid var(--line);
  box-shadow: 38px 38px 0 #17120e;
}

.release-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.release-number {
  position: absolute;
  right: -28px;
  top: -40px;
  color: rgba(214, 154, 61, 0.24);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 110px;
  line-height: 1;
}

.featured,
.tracklist,
.platforms {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(56px, 6.7vw, 96px);
}

.section-heading > p {
  max-width: 330px;
  margin: 0 0 7px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(3, minmax(0, .72fr));
  gap: 18px;
}

.track-card {
  display: block;
}

.card-art {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}

.card-art img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1), filter 420ms ease;
}

.track-card:first-child .card-art img {
  object-position: center 38%;
}

.track-card:hover .card-art img {
  transform: scale(1.04);
  filter: brightness(0.74);
}

.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: var(--gold-light);
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  opacity: 0;
  transform: translate(-50%, -45%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.track-card:hover .card-play {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.card-play:focus-visible,
.card-play.is-playing {
  opacity: 1;
  outline: 2px solid var(--paper);
  outline-offset: 3px;
  transform: translate(-50%, -50%);
}

.card-meta {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: start;
  padding-top: 15px;
}

.card-meta > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
}

.card-meta h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
}

.card-meta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-meta p a {
  color: var(--gold-light);
}

.track-table {
  border-top: 1px solid var(--line);
}

.track-row {
  display: grid;
  grid-template-columns: 38px 56px 1fr auto 30px;
  gap: 20px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.track-row:hover {
  padding: 0 16px;
  background: rgba(214, 154, 61, 0.08);
}

.track-row.is-active {
  padding: 0 16px;
  background: linear-gradient(90deg, rgba(214, 154, 61, 0.15), rgba(214, 154, 61, 0.03));
}

.inline-play {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(214, 154, 61, 0.5);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 10px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.inline-play:hover,
.inline-play:focus-visible,
.inline-play.is-playing {
  background: var(--gold-light);
  color: var(--ink);
  outline: 0;
  transform: scale(1.06);
}

.track-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.track-index,
.track-duration {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.track-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.track-arrow {
  color: var(--gold);
  text-align: right;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  background: var(--paper);
  color: var(--ink);
}

.story-photo {
  min-height: 620px;
  overflow: hidden;
  background: #100d0a;
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.84) contrast(1.05);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9vw;
}

.story-copy .eyebrow {
  color: #91601d;
}

.story h2 {
  font-size: clamp(52px, 6vw, 92px);
}

.story h2 em {
  color: #a36616;
  font-weight: 400;
}

.story-lead {
  margin-top: 46px !important;
  font-size: 20px !important;
  color: #2c261f !important;
}

.story-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 18px 0 0;
  color: #62594f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.75;
}

blockquote {
  margin: 45px 0 0;
  padding: 20px 0 20px 28px;
  border-left: 2px solid #ae721e;
  color: #7d4e0d;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 27px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.platform {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  min-height: 180px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(240, 232, 216, 0.52);
}

.platform.live {
  color: var(--paper);
  background: rgba(214, 154, 61, 0.08);
  transition: background 180ms ease;
}

.platform.live:hover {
  background: rgba(214, 154, 61, 0.15);
}

.platform-status {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform.live .platform-status {
  color: var(--gold-light);
}

.platform strong {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.platform > :last-child {
  align-self: end;
  color: var(--gold);
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 720px;
  padding: 100px 5vw;
  text-align: center;
  background:
    linear-gradient(rgba(7,6,5,.84), rgba(7,6,5,.93)),
    url("../images/og.png") center / cover no-repeat;
}

.closing h2 {
  font-size: clamp(68px, 9vw, 138px);
}

.closing > p:not(.eyebrow) {
  margin: 24px 0 38px;
  color: var(--gold-light);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 30px;
}

.privacy-note {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.privacy-note h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.privacy-note > p:last-child {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.75;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 44px 5vw 34px;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.footer-top p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 17px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.footer-social small {
  color: var(--muted);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-social.pending {
  color: rgba(240, 232, 216, 0.5);
}

.footer-social.live {
  background: rgba(214, 154, 61, 0.08);
}

.footer-privacy-link {
  width: max-content;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.consent-banner {
  position: fixed;
  z-index: 100;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: 1060px;
  margin: 0 auto;
  padding: 25px;
  border: 1px solid rgba(243, 201, 120, 0.45);
  background: rgba(14, 11, 8, 0.97);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.consent-kicker {
  margin: 0 0 6px !important;
  color: var(--gold-light) !important;
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.consent-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.consent-banner p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.consent-banner p a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  gap: 9px;
}

.consent-actions button,
.privacy-toggle {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-player {
  position: fixed;
  z-index: 95;
  left: 50%;
  bottom: 14px;
  display: grid;
  grid-template-columns: 58px minmax(150px, 1fr) auto minmax(220px, 340px) 34px;
  gap: 16px;
  align-items: center;
  width: min(1040px, calc(100vw - 28px));
  padding: 11px;
  border: 1px solid rgba(243, 201, 120, 0.42);
  background: rgba(14, 11, 8, 0.97);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
}

.site-player[hidden] {
  display: none;
}

.site-player-artwork {
  width: 58px;
  height: 58px;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 3px;
}

.site-player-meta {
  min-width: 0;
}

.site-player-meta span {
  display: block;
  color: var(--gold-light);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-player-title {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-player-controls button,
.site-player-close {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}

.site-player-controls .site-player-toggle {
  width: 42px;
  height: 42px;
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--ink);
}

.site-player-timeline {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  gap: 8px;
  align-items: center;
}

.site-player-current,
.site-player-total {
  color: var(--muted);
  font-size: 8px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.site-player-progress {
  width: 100%;
  accent-color: var(--gold-light);
  cursor: pointer;
}

.site-player audio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-player-close {
  font-size: 23px;
}

.has-site-player .consent-banner {
  bottom: 96px;
}

.has-site-player .privacy-toggle {
  bottom: 94px;
}

.consent-actions .consent-accept {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.privacy-toggle {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: 14px;
  min-height: 34px;
  padding: 0 11px;
  border-color: rgba(243, 201, 120, 0.35);
  background: rgba(14, 11, 8, 0.92);
  color: var(--gold-light);
  font-size: 8px;
}

@media (max-width: 1000px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 145px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-portrait {
    width: min(84vw, 590px);
    justify-self: center;
    margin: 85px 0 30px;
  }

  .hero-glow {
    bottom: 6%;
    top: auto;
    right: 50%;
    transform: translateX(50%);
  }

  .release {
    gap: 60px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 18px;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  body.admin-bar .topbar {
    top: 46px;
  }

  .topbar {
    position: absolute;
    min-height: 74px;
    padding: 0 20px;
  }

  .wordmark {
    font-size: 14px;
  }

  .wordmark em {
    margin-left: 42px;
    font-size: 16px;
  }

  .nav-listen {
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid rgba(243, 201, 120, 0.45);
    border-radius: 999px;
    background: rgba(14, 11, 8, 0.66);
    font-size: 10px;
  }

  .hero {
    padding: 125px 20px 54px;
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(46px, 13.5vw, 64px);
    line-height: 0.92;
  }

  .hero-script {
    margin: 12px 0 25px;
    font-size: clamp(27px, 8.5vw, 38px);
    transform: none;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    gap: 13px;
    justify-content: space-between;
  }

  .hero-stats span {
    flex-direction: column;
    gap: 0;
  }

  .hero-stats strong {
    font-size: 22px;
  }

  .hero-portrait {
    width: 100%;
    margin-top: 65px;
  }

  .portrait-frame {
    padding: 7px;
  }

  .portrait-frame::before,
  .portrait-frame::after {
    width: 44px;
    height: 44px;
  }

  .portrait-frame img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .hero-glow {
    width: 90vw;
    height: 90vw;
  }

  .section-shell {
    width: calc(100vw - 40px);
  }

  .release {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .release > *,
  .release-copy {
    min-width: 0;
  }

  .release h2 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .release-subtitle {
    font-size: clamp(29px, 9vw, 35px);
    transform: none;
  }

  .release-art {
    grid-row: 1;
    width: min(100%, 420px);
    justify-self: center;
    padding: 8px;
    box-shadow: none;
  }

  .release-art img {
    aspect-ratio: 2 / 3;
    object-fit: contain;
  }

  .release-number {
    right: -4px;
    top: -28px;
    font-size: 78px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .featured,
  .tracklist,
  .platforms {
    padding: 80px 0;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .track-card {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    min-height: 120px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .card-art {
    width: 96px;
    height: 96px;
  }

  .card-art img,
  .track-card:first-child .card-art img {
    width: 96px;
    height: 96px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center 34%;
  }

  .card-play {
    width: 44px;
    height: 44px;
    opacity: .92;
    transform: translate(-50%, -50%);
  }

  .card-meta {
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-width: 0;
    padding: 0;
  }

  .card-meta h3 {
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .card-meta p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .track-row {
    grid-template-columns: 24px 48px minmax(0, 1fr) auto 34px;
    gap: 10px;
    min-height: 72px;
  }

  .track-row img {
    width: 48px;
    height: 48px;
    border-radius: 3px;
  }

  .track-title {
    min-width: 0;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .track-duration {
    font-size: 9px;
  }

  .inline-play {
    width: 32px;
    height: 32px;
  }

  .story-photo {
    min-height: 0;
    padding: 12px;
  }

  .story-photo img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center;
  }

  .story-copy {
    padding: 76px 20px 86px;
  }

  .story h2 {
    font-size: clamp(42px, 12vw, 62px);
    line-height: .94;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .platform {
    min-height: 130px;
  }

  .closing {
    min-height: 620px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .closing h2 {
    font-size: clamp(55px, 15vw, 80px);
  }

  footer {
    gap: 30px;
    padding: 35px 20px;
  }

  .footer-top {
    align-items: start;
    flex-direction: column;
  }

  .footer-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    min-width: 0;
    padding: 0 12px;
  }

  .consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .consent-actions {
    flex-direction: column;
  }

  .consent-actions button {
    width: 100%;
  }

  .site-player {
    bottom: 8px;
    grid-template-columns: 50px minmax(70px, 1fr) auto 30px;
    gap: 10px;
    width: calc(100vw - 16px);
    padding: 9px 10px 8px;
    border-radius: 8px;
  }

  .site-player-artwork {
    width: 50px;
    height: 50px;
  }

  .site-player-meta span {
    font-size: 6px;
  }

  .site-player-title {
    font-size: 14px;
  }

  .site-player-controls {
    gap: 5px;
  }

  .site-player-controls button {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .site-player-controls .site-player-toggle {
    width: 38px;
    height: 38px;
  }

  .site-player-timeline {
    grid-column: 1 / -1;
    grid-row: 2;
    grid-template-columns: 31px 1fr 31px;
    gap: 6px;
  }

  .site-player-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }

  .has-site-player .consent-banner {
    bottom: 130px;
  }

  .has-site-player .privacy-toggle {
    bottom: 128px;
  }
}

@media (hover: none) {
  .card-play {
    opacity: 0.88;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 370px) {
  .track-duration {
    display: none;
  }

  .track-row {
    grid-template-columns: 22px 44px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .site-player {
    grid-template-columns: 44px minmax(58px, 1fr) auto 28px;
    gap: 7px;
  }

  .site-player-artwork {
    width: 44px;
    height: 44px;
  }

  .site-player-controls {
    gap: 3px;
  }

  .site-player-controls button {
    width: 27px;
    height: 27px;
  }

  .site-player-controls .site-player-toggle {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
