﻿:root {
  --paper: #f7f4ee;
  --ink: #171713;
  --muted: #69665d;
  --line: #d8d0c2;
  --red: #b82822;
  --teal: #0d7771;
  --yellow: #d7b232;
  --green: #668a2c;
  --white: #fffefa;
  --shadow: 0 18px 40px rgba(23, 23, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

body.consumer {
  background:
    linear-gradient(90deg, rgba(184, 40, 34, 0.05), transparent 38%),
    var(--paper);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-lockup img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover {
  color: var(--red);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: min(760px, calc(86svh - 72px));
  padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 780px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 11vw, 9.8rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lede {
  max-width: 58ch;
  margin-bottom: 24px;
  color: #333028;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

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

.button {
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.hero-art {
  display: grid;
  gap: 16px;
}

.logo-banner {
  width: 100%;
  min-height: 160px;
  max-height: 310px;
  object-fit: cover;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.cover-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cover-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  background: var(--white);
}

.metrics-band,
.listener-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.metrics-band article,
.listener-strip article {
  min-height: 150px;
  padding: clamp(18px, 3vw, 30px);
  border-right: 1px solid rgba(255, 254, 250, 0.18);
}

.metrics-band article:nth-child(2),
.listener-strip article:nth-child(2) {
  background: var(--red);
}

.metrics-band article:nth-child(3),
.listener-strip article:nth-child(3) {
  background: var(--teal);
}

.metrics-band article:nth-child(4),
.listener-strip article:nth-child(4) {
  background: var(--green);
}

.metric {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.9;
}

.catalog-section,
.proof-section,
.campaign-section,
.archive-section,
.release-wall-section,
.gateway-section,
.related-section,
.spotlight-section,
.pathway-section {
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.gateway-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(18px, 4vw, 48px);
  align-items: center;
  background: var(--white);
}

.gateway-copy {
  max-width: 900px;
}

.gateway-copy p:not(.kicker) {
  color: #333028;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.gateway-cover {
  display: block;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.gateway-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

input[type="search"] {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter.active {
  background: var(--yellow);
}

.catalog-utility {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.directory-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.letter-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.letter-rail button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.letter-rail button.active {
  background: var(--ink);
  color: var(--white);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.artist-card,
.proof-grid article,
.panel,
.archive-list article {
  border: 1px solid var(--ink);
  background: var(--white);
}

.artist-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 16px;
}

.consumer-card {
  min-height: 390px;
}

.artist-card-cover {
  display: block;
  margin: -16px -16px 14px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.artist-card-cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.artist-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.artist-name {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  border: 1px solid var(--ink);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge.current {
  background: var(--teal);
  color: var(--white);
}

.badge.legacy {
  background: var(--red);
  color: var(--white);
}

.artist-note {
  min-height: 68px;
  margin-bottom: 14px;
  color: #39362f;
}

.release-list {
  display: grid;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.release-list li {
  display: grid;
  gap: 2px;
  padding: 8px;
  border-left: 4px solid var(--line);
  background: #f4f0e7;
}

.release-title {
  font-weight: 900;
}

.release-title-line,
.release-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.release-title-line .release-title {
  min-width: 0;
}

.release-platforms {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
}

.platform-icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(14, 14, 14, 0.2);
  background: rgba(255, 246, 229, 0.72);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.platform-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.platform-icon:hover {
  transform: translateY(-1px) scale(1.04);
  border-color: var(--red);
  background: var(--yellow);
}

.release-source {
  color: var(--muted);
  font-size: 0.78rem;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
}

.link-row a {
  min-height: 34px;
  padding: 8px 9px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.link-row a.verified {
  background: var(--ink);
  color: var(--white);
}

.link-row a.search {
  background: var(--yellow);
}

.link-row a.needs-review {
  border-style: dashed;
  border-color: rgba(14, 14, 14, 0.48);
  background: rgba(255, 246, 229, 0.24);
}

.release-link-stack {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.release-link-stack > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.verify-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.proof-grid,
.archive-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.manifesto-panel {
  display: grid;
  gap: 16px;
  margin: 0 0 24px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 246, 229, 0.18);
  border-left: 10px solid var(--red);
  background:
    linear-gradient(135deg, rgba(227, 54, 40, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 246, 229, 0.08), transparent 48%),
    #100d0b;
  color: var(--white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.manifesto-panel p {
  max-width: 1040px;
  margin: 0;
  color: rgba(244, 239, 230, 0.88);
  font-size: clamp(1rem, 1.7vw, 1.26rem);
  line-height: 1.64;
}

.manifesto-panel p:first-child {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  font-weight: 900;
  line-height: 1.22;
  text-transform: uppercase;
}

.proof-grid article,
.archive-list article,
.panel {
  padding: 18px;
}

.proof-grid article:nth-child(1) {
  border-top: 8px solid var(--red);
}

.proof-grid article:nth-child(2) {
  border-top: 8px solid var(--yellow);
}

.proof-grid article:nth-child(3) {
  border-top: 8px solid var(--teal);
}

.proof-grid article:nth-child(4) {
  border-top: 8px solid var(--green);
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

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

.spotlight-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 360px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.spotlight-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.spotlight-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
}

.spotlight-card strong,
.spotlight-card span:not(.badge) {
  padding: 0 12px;
}

.spotlight-card strong {
  color: var(--red);
  font-size: 1rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.spotlight-card span:not(.badge) {
  align-self: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pathway-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.pathway-card:nth-child(1) {
  border-top: 8px solid var(--red);
}

.pathway-card:nth-child(2) {
  border-top: 8px solid var(--teal);
}

.pathway-card:nth-child(3) {
  border-top: 8px solid var(--yellow);
}

.pathway-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pathway-links a {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.pathway-links a:hover,
.spotlight-card:hover strong {
  color: var(--red);
}

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

.release-tile {
  display: grid;
  gap: 6px;
  min-height: 220px;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.release-tile:hover,
.artist-name a:hover {
  color: var(--red);
}

.release-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.release-tile strong {
  color: var(--red);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.release-tile span {
  font-weight: 900;
  line-height: 1.15;
}

.release-tile small {
  align-self: end;
  color: var(--muted);
}

.artist-name a {
  color: inherit;
  text-decoration: none;
}

.artist-detail {
  min-height: 70svh;
}

.artist-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.artist-hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
}

.artist-cover-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.artist-cover-stack img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--ink);
  background: var(--white);
}

.artist-cover-stack img:first-child {
  grid-column: span 3;
}

.artist-release-section {
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
}

.artist-release-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.video-section,
.music-section,
.press-section {
  padding: clamp(34px, 7vw, 92px) clamp(16px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: #0b0a08;
}

.music-section {
  background:
    linear-gradient(90deg, rgba(227, 54, 40, 0.16), transparent 44%),
    #100d0b;
}

.press-section {
  background:
    linear-gradient(100deg, rgba(185, 145, 69, 0.13), transparent 42%),
    #0d0b09;
}

.video-grid,
.music-grid,
.press-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.music-grid {
  align-items: start;
}

.press-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card,
.music-card,
.press-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 246, 229, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.055), transparent 42%),
    var(--panel);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.press-card {
  min-height: 132px;
  align-content: space-between;
  padding: 18px;
  text-decoration: none;
}

.press-card span {
  width: fit-content;
  padding: 4px 8px;
  border: 1px solid rgba(185, 145, 69, 0.45);
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.press-card strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.press-card:hover {
  border-color: rgba(227, 54, 40, 0.55);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(166, 28, 28, 0.18);
}

.music-card {
  overflow: hidden;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.music-card iframe {
  width: 100%;
  min-height: 450px;
  border: 0;
  background: #000;
}

.music-card.spotify iframe {
  min-height: 352px;
}

.video-card strong,
.music-card strong {
  padding: 0 14px 14px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.music-card strong {
  padding-bottom: 0;
}

.music-card span {
  padding: 0 14px 14px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.related-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}

.related-grid strong {
  color: var(--red);
  text-transform: uppercase;
}

.related-grid span {
  color: var(--muted);
}

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

.az-list a {
  min-height: 54px;
  padding: 14px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.az-list a:hover {
  color: var(--red);
}

.release-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
  gap: 16px;
  min-height: 250px;
  padding: 16px;
  border: 1px solid var(--ink);
  background: var(--white);
}

.release-card > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--paper);
}

.release-card p {
  color: var(--muted);
}

.panel ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.panel li {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.panel li:last-child {
  border-bottom: 0;
}

.money {
  color: var(--red);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 4vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.site-footer div {
  display: grid;
  gap: 3px;
}

.site-footer span {
  color: rgba(255, 254, 250, 0.74);
}

@media (max-width: 1050px) {
  .hero,
  .section-head,
  .toolbar,
  .catalog-utility {
    grid-template-columns: 1fr;
  }

  .metrics-band,
  .listener-strip,
  .artist-grid,
  .proof-grid,
  .dashboard,
  .release-wall,
  .artist-hero,
  .artist-release-grid,
  .gateway-section,
  .related-grid,
  .az-list,
  .spotlight-grid,
  .pathway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filters,
  .letter-rail {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .cover-strip,
  .metrics-band,
  .listener-strip,
  .artist-grid,
  .proof-grid,
  .dashboard,
  .archive-list,
  .release-wall,
    .artist-hero,
    .artist-release-grid,
    .release-card,
    .gateway-section,
    .related-grid,
    .video-grid,
    .music-grid,
    .press-grid,
    .az-list,
    .spotlight-grid,
    .pathway-grid {
    grid-template-columns: 1fr;
  }

  .metrics-band article,
  .listener-strip article {
    min-height: 120px;
  }

  .filter {
    flex: 1 1 calc(50% - 8px);
  }

  .artist-card {
    min-height: auto;
  }
}

/* Cinematic homepage hero */
:root {
  --black: #090909;
  --crimson: #a61c1c;
  --gold: #b99145;
  --bone: #f2e9dd;
  --smoke: #888;
}

.cinematic-hero {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: min(880px, calc(100svh - 72px));
  overflow: hidden;
  border-bottom: 1px solid rgba(185, 145, 69, 0.28);
  background:
    radial-gradient(circle at 76% 18%, rgba(242, 233, 221, 0.14), transparent 24%),
    radial-gradient(circle at 62% 68%, rgba(166, 28, 28, 0.24), transparent 31%),
    linear-gradient(120deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.93) 44%, rgba(9, 9, 9, 0.74) 100%),
    var(--black);
  color: var(--bone);
}

.cinematic-hero::before,
.cinematic-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.cinematic-hero::before {
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent 0 11px, rgba(242, 233, 221, 0.03) 12px),
    linear-gradient(0deg, transparent 0 17px, rgba(242, 233, 221, 0.025) 18px);
  background-size: 13px 13px, 19px 19px;
  mix-blend-mode: screen;
}

.cinematic-hero::after {
  opacity: 0.42;
  background:
    radial-gradient(circle at 18% 36%, rgba(185, 145, 69, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 56%, rgba(242, 233, 221, 0.12) 0 1px, transparent 2px),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
  background-size: 170px 170px, 230px 230px, auto;
}

.hero-grain {
  position: absolute;
  inset: -20%;
  z-index: -1;
  opacity: 0.22;
  background:
    repeating-radial-gradient(circle at 40% 50%, rgba(242, 233, 221, 0.14) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(105deg, rgba(242, 233, 221, 0.05) 0 1px, transparent 1px 7px);
  transform: rotate(-4deg);
  animation: grainDrift 9s steps(6) infinite;
  pointer-events: none;
}

.hero-embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-embers span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(185, 145, 69, 0.85);
  opacity: 0.6;
  animation: emberRise 11s linear infinite;
}

.hero-embers span:nth-child(1) { left: 8%; bottom: 8%; animation-delay: -1s; }
.hero-embers span:nth-child(2) { left: 28%; bottom: 18%; animation-delay: -4s; }
.hero-embers span:nth-child(3) { left: 56%; bottom: 7%; animation-delay: -6s; }
.hero-embers span:nth-child(4) { left: 76%; bottom: 22%; animation-delay: -2s; }
.hero-embers span:nth-child(5) { left: 91%; bottom: 12%; animation-delay: -8s; }

.cinematic-hero .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 660px;
  opacity: var(--hero-fade, 1);
  animation: heroCopyIn 720ms ease both;
}

.cinematic-hero .kicker {
  max-width: 32ch;
  color: var(--gold);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 0.98rem);
  letter-spacing: 0.12em;
}

.cinematic-hero h1 {
  display: grid;
  gap: 0;
  margin: 0 0 18px;
  color: var(--bone);
  font-family: "Bebas Neue", "Anton", "Oswald", Impact, sans-serif;
  font-size: clamp(5.2rem, 13vw, 13.4rem);
  font-weight: 900;
  line-height: 0.78;
  text-shadow: 5px 5px 0 rgba(166, 28, 28, 0.74), 18px 18px 42px rgba(0, 0, 0, 0.75);
}

.hero-tagline {
  margin: 0 0 20px;
  color: var(--bone);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.cinematic-hero .lede {
  max-width: 28ch;
  margin-bottom: 26px;
  color: rgba(242, 233, 221, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  font-weight: 800;
}

.cinematic-hero .button {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid rgba(185, 145, 69, 0.86);
  background: rgba(166, 28, 28, 0.95);
  color: var(--bone);
  clip-path: polygon(3% 0, 100% 0, 97% 100%, 0 92%);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  box-shadow: 0 0 28px rgba(166, 28, 28, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  animation: buttonPulse 3.8s ease-in-out infinite;
}

.cinematic-hero .button::after {
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(185, 145, 69, 0);
  content: "";
  transition: border-color 160ms ease;
}

.cinematic-hero .button:hover {
  transform: scale(1.03);
  border-color: var(--gold);
  background: #000;
  color: var(--bone);
  box-shadow: 0 0 34px rgba(185, 145, 69, 0.24), 0 0 38px rgba(166, 28, 28, 0.28);
}

.cinematic-hero .button:hover::after {
  border-color: rgba(185, 145, 69, 0.9);
}

.hero-stage {
  position: relative;
  min-height: clamp(420px, 68svh, 760px);
  align-self: stretch;
}

.crowd-hero {
  position: absolute;
  inset: -8% -8% -8% -4%;
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  border: 1px solid rgba(242, 233, 221, 0.14);
  filter: contrast(1.12) saturate(0.86) brightness(0.82);
  transform: translate3d(0, calc(var(--hero-parallax, 0) * 0.12px), 0) scale(1.03);
  animation: heroKenBurns 26s ease-in-out infinite alternate;
}

.hero-stage::before {
  position: absolute;
  inset: -1px;
  z-index: 1;
  background:
    radial-gradient(circle at 52% 15%, rgba(242, 233, 221, 0.34), transparent 24%),
    linear-gradient(90deg, rgba(9, 9, 9, 0.82), transparent 34%, rgba(9, 9, 9, 0.2)),
    linear-gradient(180deg, transparent 42%, rgba(9, 9, 9, 0.86));
  content: "";
  pointer-events: none;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0 34%, rgba(9, 9, 9, 0.86) 78%),
    linear-gradient(115deg, transparent 0 44%, rgba(166, 28, 28, 0.24) 64%, transparent 86%);
  content: "";
  pointer-events: none;
}

.vinyl-orbit {
  position: absolute;
  right: clamp(8px, 2vw, 28px);
  top: clamp(18px, 5vw, 68px);
  z-index: 3;
  width: clamp(86px, 11vw, 150px);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 233, 221, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--gold) 0 8%, #050505 9% 18%, transparent 19%),
    repeating-radial-gradient(circle, #050505 0 8px, #171717 9px 11px);
  box-shadow: 0 0 44px rgba(0, 0, 0, 0.72);
  animation: vinylSpin 21s linear infinite;
}

.album-carousel {
  position: absolute;
  left: clamp(-12px, -2vw, 10px);
  right: clamp(8px, 2vw, 26px);
  bottom: clamp(16px, 4vw, 48px);
  z-index: 4;
  overflow: hidden;
  padding: 18px 0;
  transform: translate3d(0, calc(var(--hero-parallax, 0) * -0.05px), 0);
}

.album-track {
  display: flex;
  width: max-content;
  gap: clamp(12px, 1.5vw, 18px);
  animation: albumDrift 42s linear 2.5s infinite;
}

.album-carousel:hover .album-track {
  animation-play-state: paused;
}

.album-card {
  position: relative;
  flex: 0 0 clamp(116px, 12vw, 170px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(242, 233, 221, 0.28);
  background: #100d0b;
  color: var(--bone);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.55);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.album-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.album-card span {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 8px;
  z-index: 1;
  color: var(--bone);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  text-shadow: 0 2px 10px #000;
  text-transform: uppercase;
}

.album-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.84));
  content: "";
}

.album-card.placeholder {
  display: grid;
  place-items: end start;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(166, 28, 28, 0.52), transparent 34%),
    repeating-linear-gradient(-8deg, rgba(242, 233, 221, 0.1) 0 1px, transparent 1px 9px),
    #15110d;
}

.album-card.placeholder.future {
  background:
    radial-gradient(circle at 64% 20%, rgba(185, 145, 69, 0.26), transparent 34%),
    repeating-linear-gradient(12deg, rgba(242, 233, 221, 0.09) 0 1px, transparent 1px 10px),
    #0d0d0d;
}

.album-card:hover {
  transform: translateY(-7px) scale(1.05);
  border-color: var(--crimson);
  box-shadow: 0 0 28px rgba(166, 28, 28, 0.36), 0 20px 46px rgba(0, 0, 0, 0.68);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(185, 145, 69, 0.28);
  border-bottom: 1px solid rgba(185, 145, 69, 0.28);
  background:
    linear-gradient(90deg, rgba(166, 28, 28, 0.16), transparent 42%),
    #070707;
  color: var(--bone);
}

.feature-strip article {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: clamp(16px, 2.4vw, 26px);
  border-right: 1px solid rgba(242, 233, 221, 0.12);
  transition: background 180ms ease, transform 180ms ease;
}

.feature-strip article:hover {
  background: rgba(166, 28, 28, 0.16);
  transform: translateY(-2px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.15rem;
  box-shadow: inset 0 0 18px rgba(185, 145, 69, 0.08);
  transform: rotate(-4deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-strip article:hover .feature-icon {
  transform: rotate(0deg) scale(1.06);
  box-shadow: 0 0 22px rgba(185, 145, 69, 0.22);
}

.feature-strip strong {
  max-width: 12ch;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: clamp(0.84rem, 1.2vw, 1rem);
  line-height: 1.05;
  text-transform: uppercase;
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroKenBurns {
  from { transform: translate3d(0, calc(var(--hero-parallax, 0) * 0.12px), 0) scale(1.03); }
  to { transform: translate3d(-1.8%, calc(var(--hero-parallax, 0) * 0.12px), 0) scale(1.09); }
}

@keyframes vinylSpin {
  to { transform: rotate(360deg); }
}

@keyframes albumDrift {
  to { transform: translateX(calc(-50% - 9px)); }
}

@keyframes emberRise {
  from { transform: translate3d(0, 0, 0); opacity: 0; }
  12% { opacity: 0.55; }
  to { transform: translate3d(22px, -74vh, 0); opacity: 0; }
}

@keyframes grainDrift {
  0%, 100% { transform: translate(0, 0) rotate(-4deg); }
  35% { transform: translate(-2%, 1%) rotate(-4deg); }
  70% { transform: translate(1%, -2%) rotate(-4deg); }
}

@keyframes buttonPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(166, 28, 28, 0.18); }
  50% { box-shadow: 0 0 34px rgba(166, 28, 28, 0.32); }
}

@media (max-width: 1050px) {
  .cinematic-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    min-height: 520px;
  }

  .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cinematic-hero {
    padding-top: 32px;
  }

  .cinematic-hero h1 {
    max-width: 100%;
    font-size: clamp(4.6rem, 24vw, 7.8rem);
  }

  .hero-tagline {
    font-size: clamp(1.2rem, 7vw, 1.8rem);
  }

  .hero-stage {
    min-height: 470px;
  }

  .crowd-hero {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .album-card {
    flex-basis: 118px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    min-height: 94px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grain,
  .hero-embers span,
  .cinematic-hero .button,
  .crowd-hero,
  .vinyl-orbit,
  .album-track {
    animation: none;
  }
}

/* Closer to the rendered hero reference */
body.consumer:not(.artist-page) {
  background: var(--black);
}

body.consumer:not(.artist-page) .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  min-height: 78px;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent);
  color: var(--bone);
  backdrop-filter: none;
}

body.consumer:not(.artist-page) .brand-lockup {
  align-self: flex-start;
}

body.consumer:not(.artist-page) .brand-lockup span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

body.consumer:not(.artist-page) .brand-lockup img {
  width: clamp(56px, 6vw, 86px);
  height: clamp(72px, 8vw, 112px);
  border: 1px solid rgba(242, 233, 221, 0.42);
  background: #050505;
  object-fit: contain;
}

body.consumer:not(.artist-page) nav {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  gap: clamp(22px, 3vw, 44px);
  color: rgba(242, 233, 221, 0.92);
  font-family: "Bebas Neue", "Inter", Impact, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.34rem);
  letter-spacing: 0.08em;
}

body.consumer:not(.artist-page) nav a {
  position: relative;
}

body.consumer:not(.artist-page) nav a:hover {
  color: var(--bone);
}

body.consumer:not(.artist-page) nav a:hover::after,
body.consumer:not(.artist-page) nav a[href="#releases"]::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--crimson);
  content: "";
}

.social-mini {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-mini a {
  color: rgba(242, 233, 221, 0.86);
  text-decoration: none;
}

.social-mini a:hover {
  color: var(--gold);
}

.cinematic-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 0;
  min-height: calc(100svh - 112px);
  padding: 0;
  border-bottom: 3px solid rgba(166, 28, 28, 0.86);
  background:
    radial-gradient(circle at 70% 50%, rgba(242, 233, 221, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(242, 233, 221, 0.9) 0 44%, rgba(37, 29, 25, 0.62) 44% 52%, rgba(3, 3, 3, 0.98) 70%),
    var(--black);
}

.cinematic-hero::before {
  opacity: 1;
  background:
    radial-gradient(circle at 3% 80%, rgba(166, 28, 28, 0.62), transparent 11%),
    radial-gradient(circle at 41% 7%, rgba(0, 0, 0, 0.88), transparent 16%),
    radial-gradient(circle at 30% 46%, rgba(0, 0, 0, 0.1), transparent 18%),
    linear-gradient(90deg, rgba(242, 233, 221, 0.9) 0 45%, transparent 45%),
    repeating-linear-gradient(92deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 7px);
  background-size: auto;
  mix-blend-mode: multiply;
}

.cinematic-hero::after {
  opacity: 0.78;
  background:
    radial-gradient(circle at 0% 35%, rgba(166, 28, 28, 0.4), transparent 18%),
    linear-gradient(180deg, transparent 72%, rgba(166, 28, 28, 0.42)),
    linear-gradient(90deg, transparent 0 44%, rgba(0, 0, 0, 0.36) 44% 100%);
}

.cinematic-hero .hero-copy {
  align-self: center;
  max-width: none;
  min-height: calc(100svh - 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(112px, 15svh, 172px) clamp(22px, 4vw, 72px) clamp(70px, 10svh, 118px);
  background:
    radial-gradient(circle at 0% 83%, rgba(166, 28, 28, 0.38), transparent 18%),
    radial-gradient(circle at 78% 0%, rgba(0, 0, 0, 0.28), transparent 20%),
    repeating-linear-gradient(2deg, rgba(9, 9, 9, 0.055) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, rgba(242, 233, 221, 0.96), rgba(214, 205, 190, 0.9));
  color: #080706;
  box-shadow: inset -60px 0 120px rgba(0, 0, 0, 0.36);
}

.cinematic-hero .kicker {
  max-width: 42ch;
  margin-bottom: 6px;
  color: rgba(9, 9, 9, 0.86);
  font-size: clamp(0.72rem, 1vw, 0.94rem);
  letter-spacing: 0.16em;
}

.cinematic-hero h1 {
  gap: 0;
  max-width: 7.2ch;
  margin-bottom: 8px;
  font-size: clamp(5.8rem, 10.2vw, 11.2rem);
  line-height: 0.76;
  text-shadow: none;
}

.cinematic-hero h1 span:first-child {
  color: #080706;
  filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 0.16));
}

.cinematic-hero h1 span:last-child {
  color: var(--crimson);
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0.16));
}

.hero-tagline {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 16px;
  background: #070707;
  color: var(--bone);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.42rem);
  letter-spacing: 0.16em;
  line-height: 1.05;
  box-shadow: -14px 0 0 #070707, 14px 0 0 #070707;
}

.cinematic-hero .lede {
  max-width: 31ch;
  margin-bottom: 26px;
  color: #19140f;
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  font-weight: 800;
}

.cinematic-hero .button {
  min-width: 168px;
  min-height: 50px;
  justify-content: center;
  border: 1px solid rgba(242, 233, 221, 0.22);
  background: var(--crimson);
  color: var(--bone);
}

.cinematic-hero .button:not(.primary) {
  background: #070707;
  color: var(--bone);
}

.hero-stage {
  min-height: calc(100svh - 112px);
  height: 100%;
  overflow: hidden;
  border-left: 1px solid rgba(242, 233, 221, 0.12);
}

.crowd-hero {
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.8) contrast(1.24) brightness(0.78);
}

.hero-stage::before {
  background:
    radial-gradient(circle at 40% 18%, rgba(242, 233, 221, 0.42), transparent 27%),
    radial-gradient(circle at 8% 78%, rgba(166, 28, 28, 0.28), transparent 20%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 26%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.88));
}

.vinyl-orbit {
  right: clamp(18px, 5vw, 78px);
  top: clamp(110px, 18svh, 210px);
  opacity: 0.82;
}

.album-carousel {
  left: clamp(12px, 4vw, 72px);
  right: clamp(12px, 3vw, 52px);
  bottom: clamp(72px, 18svh, 190px);
  padding-top: 34px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.16));
}

.carousel-kicker {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  color: var(--crimson);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-kicker::after {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 233, 221, 0.54), transparent);
  content: "";
}

.album-card {
  flex-basis: clamp(118px, 10.2vw, 150px);
  overflow: visible;
  border-color: rgba(242, 233, 221, 0.28);
  background: transparent;
  box-shadow: none;
}

.album-card img,
.album-card.placeholder {
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(242, 233, 221, 0.28);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.62);
}

.album-card::after {
  display: none;
}

.album-card strong,
.album-card small {
  display: block;
  position: static;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 10px;
  color: var(--bone);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.album-card strong {
  font-size: clamp(0.8rem, 1vw, 0.98rem);
}

.album-card small {
  margin-top: 3px;
  color: var(--crimson);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 0.62rem;
  font-weight: 900;
}

.album-card.placeholder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 0;
}

.album-card.placeholder strong,
.album-card.placeholder small {
  position: relative;
  z-index: 1;
}

.feature-strip {
  border-top: 1px solid rgba(242, 233, 221, 0.12);
  border-bottom: 3px solid var(--crimson);
  background:
    linear-gradient(160deg, rgba(166, 28, 28, 0.18), transparent 28%),
    repeating-linear-gradient(-8deg, rgba(242, 233, 221, 0.04) 0 1px, transparent 1px 11px),
    #060606;
}

.feature-strip article {
  min-height: 114px;
  align-content: center;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
}

.feature-icon {
  width: 48px;
  border-radius: 50%;
  background: rgba(242, 233, 221, 0.04);
}

@media (max-width: 1050px) {
  body.consumer:not(.artist-page) .site-header {
    position: sticky;
    background: #070707;
  }

  body.consumer:not(.artist-page) nav {
    position: static;
    transform: none;
  }

  .social-mini {
    display: none;
  }

  .cinematic-hero {
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(242, 233, 221, 0.92) 0 47%, rgba(5, 5, 5, 0.98) 47%),
      var(--black);
  }

  .cinematic-hero .hero-copy {
    padding-top: clamp(34px, 7vw, 76px);
  }

  .hero-stage {
    min-height: 540px;
  }
}

@media (max-width: 700px) {
  .cinematic-hero h1 {
    font-size: clamp(5rem, 22vw, 7.8rem);
  }

  .hero-tagline {
    max-width: calc(100vw - 56px);
    box-shadow: none;
  }

  .cinematic-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cinematic-hero .button {
    width: 100%;
  }

  .album-carousel {
    left: 18px;
    right: 18px;
    bottom: 42px;
  }
}

/* 2026 public redesign: darker, sharper, cover-driven hardcore label feel. */
:root {
  --paper: #0b0a08;
  --ink: #f4efe6;
  --muted: #b8aa97;
  --line: #332b24;
  --red: #e33628;
  --teal: #18a88f;
  --yellow: #e3c94c;
  --green: #91b84b;
  --white: #fff6e5;
  --panel: #15120f;
  --panel-2: #201914;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.5);
}

body,
body.consumer,
body.artist-page {
  background:
    repeating-linear-gradient(0deg, rgba(255, 246, 229, 0.035) 0 1px, transparent 1px 4px),
    linear-gradient(135deg, rgba(227, 54, 40, 0.22), transparent 28%),
    linear-gradient(315deg, rgba(24, 168, 143, 0.16), transparent 32%),
    #0b0a08;
  color: var(--ink);
}

body::selection {
  background: var(--red);
  color: var(--white);
}

a {
  text-underline-offset: 0.18em;
}

.site-header {
  min-height: 74px;
  border-bottom: 2px solid var(--red);
  background: rgba(10, 9, 8, 0.92);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.36);
}

.brand-lockup {
  color: var(--white);
}

.brand-lockup img {
  border-color: rgba(255, 246, 229, 0.24);
  background: #fff;
  filter: contrast(1.08);
}

nav {
  color: rgba(244, 239, 230, 0.78);
}

nav a:hover,
.site-footer a:hover {
  color: var(--yellow);
}

.hero,
.artist-hero {
  position: relative;
  isolation: isolate;
  border-bottom: 2px solid var(--red);
  background:
    linear-gradient(115deg, rgba(11, 10, 8, 0.98) 0%, rgba(11, 10, 8, 0.86) 54%, rgba(227, 54, 40, 0.24) 100%),
    repeating-linear-gradient(135deg, rgba(255, 246, 229, 0.08) 0 1px, transparent 1px 20px);
}

.public-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.78fr);
}

.hero::after,
.artist-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 12px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--teal));
}

.kicker {
  color: var(--yellow);
}

h1,
h2,
h3 {
  color: var(--white);
  text-wrap: balance;
}

h1 {
  max-width: 8ch;
  text-shadow: 4px 4px 0 rgba(227, 54, 40, 0.62);
}

.public-hero h1 {
  max-width: 9ch;
  font-size: clamp(3.4rem, 8.4vw, 7.8rem);
}

.artist-hero h1 {
  max-width: 10ch;
}

.lede,
.gateway-copy p:not(.kicker),
.section-head p:last-child,
.artist-note,
.release-source,
.verify-note,
.pathway-card p,
.release-card p,
.related-grid span,
.spotlight-card span:not(.badge),
.site-footer span {
  color: var(--muted);
}

.lede {
  color: #e7dac8;
  font-weight: 700;
}

.button,
.filter,
.letter-rail button,
.link-row a,
.pathway-links a {
  border-color: rgba(255, 246, 229, 0.72);
  background: transparent;
  color: var(--white);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.filter:hover,
.letter-rail button:hover,
.link-row a:hover,
.pathway-links a:hover {
  transform: translateY(-1px);
  border-color: var(--yellow);
  color: var(--yellow);
}

.button.primary,
.filter.active,
.letter-rail button.active,
.link-row a.verified {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.hero-art {
  transform: rotate(-1deg) translateY(8px);
}

.logo-banner,
.cover-strip img,
.gateway-cover,
.artist-card-cover img,
.spotlight-card img,
.release-tile img,
.artist-cover-stack img,
.release-card > img {
  border-color: rgba(255, 246, 229, 0.2);
  background: #080706;
  box-shadow: var(--shadow);
}

.cover-strip img:nth-child(2) {
  transform: translateY(18px);
}

.metrics-band,
.listener-strip {
  border-top: 1px solid rgba(255, 246, 229, 0.14);
  border-bottom: 2px solid #000;
  background: #070605;
}

.metrics-band article,
.listener-strip article {
  border-right-color: rgba(255, 246, 229, 0.15);
}

.metrics-band article:nth-child(2),
.listener-strip article:nth-child(2) {
  background: #9d2019;
}

.metrics-band article:nth-child(3),
.listener-strip article:nth-child(3) {
  background: #0f6c60;
}

.metrics-band article:nth-child(4),
.listener-strip article:nth-child(4) {
  background: #556f28;
}

.metric {
  color: var(--white);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
}

.catalog-section,
.proof-section,
.campaign-section,
.archive-section,
.release-wall-section,
.related-section,
.spotlight-section,
.pathway-section,
.radio-section,
.artist-release-section {
  border-bottom-color: rgba(255, 246, 229, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.04), transparent 34%),
    #0b0a08;
}

.gateway-section {
  border-top: 2px solid #000;
  border-bottom: 2px solid var(--red);
  background:
    linear-gradient(90deg, rgba(227, 54, 40, 0.2), transparent 44%),
    #130f0c;
}

.radio-section {
  padding: 72px var(--page-pad);
  position: relative;
  overflow: hidden;
}

.radio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(166, 28, 28, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(185, 145, 69, 0.12), transparent 40%);
  opacity: 0.9;
}

.radio-section > * {
  position: relative;
  z-index: 1;
}

.radio-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 26px;
  padding: 28px;
  border: 1px solid rgba(255, 246, 229, 0.16);
  border-left: 4px solid var(--red);
  background:
    linear-gradient(110deg, rgba(227, 54, 40, 0.16), transparent 45%),
    rgba(0, 0, 0, 0.34);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

.radio-hero-panel h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.radio-hero-panel p:not(.kicker) {
  max-width: 780px;
  margin: 0;
  color: rgba(244, 239, 230, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}

.radio-stat-grid {
  display: grid;
  gap: 10px;
}

.radio-stat-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 246, 229, 0.14);
  background: rgba(0, 0, 0, 0.36);
}

.radio-stat-grid strong {
  display: block;
  color: var(--yellow);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.radio-stat-grid span {
  display: block;
  margin-top: 6px;
  color: rgba(244, 239, 230, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.radio-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 246, 229, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.055), transparent 42%),
    var(--panel);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.3);
}

.radio-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin-bottom: 14px;
}

.radio-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.playlist-embed {
  width: 100%;
  min-height: 352px;
  border: 1px solid rgba(255, 246, 229, 0.18);
  background:
    linear-gradient(135deg, rgba(166, 28, 28, 0.28), rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 246, 229, 0.04) 0 1px, transparent 1px 9px),
    #070605;
}

.playlist-embed iframe,
.radio-card iframe {
  display: block;
  width: 100%;
  border: 0;
}

.pending-embed {
  display: grid;
  place-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.pending-embed strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.pending-embed span {
  max-width: 420px;
  color: rgba(244, 239, 230, 0.68);
  font-weight: 800;
  line-height: 1.45;
}

.radio-tracklist {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 16px 0 0;
}

.radio-tracklist .kicker {
  margin-top: 8px;
}

.radio-tracklist div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-tracklist a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 246, 229, 0.2);
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.radio-tracklist a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.gateway-cover {
  border: 2px solid var(--white);
  box-shadow: 10px 10px 0 var(--red), var(--shadow);
}

.toolbar {
  padding: 12px;
  border: 1px solid rgba(255, 246, 229, 0.14);
  background: rgba(0, 0, 0, 0.26);
}

input[type="search"] {
  border-color: rgba(255, 246, 229, 0.42);
  background: #080706;
  color: var(--white);
}

input[type="search"]::placeholder {
  color: rgba(244, 239, 230, 0.42);
}

.directory-count {
  color: var(--yellow);
}

.artist-card,
.proof-grid article,
.panel,
.archive-list article,
.spotlight-card,
.pathway-card,
.release-tile,
.related-grid a,
.az-list a,
.release-card {
  border-color: rgba(255, 246, 229, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 246, 229, 0.055), transparent 42%),
    var(--panel);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.artist-card,
.spotlight-card,
.release-tile,
.pathway-card,
.release-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.artist-card:hover,
.spotlight-card:hover,
.release-tile:hover,
.pathway-card:hover,
.release-card:hover {
  transform: translateY(-3px);
  border-color: rgba(227, 54, 40, 0.75);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
}

.artist-card {
  border-top: 4px solid var(--red);
}

.artist-card-cover {
  border-bottom-color: rgba(255, 246, 229, 0.16);
  background: #070605;
}

.artist-name a,
.release-title,
.release-tile span,
.spotlight-card strong,
.related-grid strong,
.az-list a {
  color: var(--white);
}

.artist-name a:hover,
.release-tile:hover,
.spotlight-card:hover strong,
.az-list a:hover {
  color: var(--yellow);
}

.badge {
  border-color: rgba(255, 246, 229, 0.24);
  background: #080706;
  color: var(--white);
}

.badge.current {
  background: var(--teal);
  color: #07110f;
}

.badge.legacy {
  background: var(--red);
  color: var(--white);
}

.release-list li {
  border-left-color: var(--red);
  background: rgba(255, 246, 229, 0.055);
}

.platform-icon {
  border-color: rgba(255, 246, 229, 0.24);
  background: rgba(255, 246, 229, 0.1);
}

.platform-icon:hover {
  border-color: var(--yellow);
  background: rgba(185, 145, 69, 0.24);
}

.link-row a.search {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #14100c;
}

.link-row a.needs-review {
  border-color: rgba(255, 246, 229, 0.46);
  background: rgba(255, 246, 229, 0.08);
  color: var(--white);
}

.proof-grid article:nth-child(1),
.pathway-card:nth-child(1) {
  border-top-color: var(--red);
}

.proof-grid article:nth-child(2),
.pathway-card:nth-child(3) {
  border-top-color: var(--yellow);
}

.proof-grid article:nth-child(3),
.pathway-card:nth-child(2) {
  border-top-color: var(--teal);
}

.proof-grid article:nth-child(4) {
  border-top-color: var(--green);
}

.release-tile {
  min-height: 250px;
  padding: 10px;
}

.release-tile strong {
  color: var(--red);
}

.release-tile small {
  color: var(--muted);
}

.related-grid a,
.az-list a {
  text-decoration: none;
}

.site-footer {
  border-top: 2px solid var(--red);
  background: #070605;
  color: var(--white);
}

.site-footer a {
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .hero-art {
    transform: none;
  }

  .public-hero {
    grid-template-columns: 1fr;
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .public-hero .lede {
    margin-bottom: 16px;
  }

  .logo-banner {
    min-height: 104px;
    max-height: 150px;
  }

  .cover-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  h1 {
    max-width: 9ch;
    margin-bottom: 12px;
    text-shadow: 3px 3px 0 rgba(227, 54, 40, 0.62);
  }

  .toolbar {
    padding: 10px;
  }

  .radio-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .radio-hero-panel,
  .radio-grid,
  .radio-tracklist {
    grid-template-columns: 1fr;
  }

  .radio-hero-panel {
    padding: 20px;
  }

  .radio-card-head {
    display: block;
  }

  .playlist-embed {
    min-height: 310px;
  }

  .cover-strip img:nth-child(2) {
    transform: none;
  }

  .gateway-cover {
    box-shadow: 6px 6px 0 var(--red), var(--shadow);
  }
}

.album-text-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.album-text-links a {
  border: 1px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 8px;
  font-size: 0.68rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.release-cover-link,
.release-tile strong a {
  color: inherit;
  text-decoration: none;
}

.release-tile strong a:hover {
  color: var(--red);
}
