:root {
  --ink: #09090b;
  --ink-soft: #101014;
  --paper: #f4f0e9;
  --paper-muted: #b7b3ad;
  --line: rgba(244, 240, 233, 0.16);
  --line-strong: rgba(244, 240, 233, 0.32);
  --acid: #d8ff35;
  --violet: #b99cff;
  --rose: #ff8faf;
  --gold: #d8b26d;
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 2%, rgba(185, 156, 255, 0.09), transparent 30rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 48px;
  object-fit: contain;
  transition: opacity 160ms ease;
}

.brand:hover .brand-logo {
  opacity: 0.8;
}

.brand-title {
  color: var(--acid);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
}

.site-nav a {
  color: var(--paper-muted);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--paper);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--paper);
}

.button--ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--paper);
}

.button--ghost:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7.5rem) var(--pad);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  color: var(--paper-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px rgba(216, 255, 53, 0.65);
  content: "";
}

.hero h1 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(3.65rem, 7.3vw, 8rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.hero h1 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-copy > p {
  max-width: 620px;
  margin: 2rem 0 0;
  color: var(--paper-muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.15rem;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr 0.85fr;
  gap: 0.85rem;
  height: min(670px, 70vh);
  min-height: 520px;
}

.mosaic-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  isolation: isolate;
}

.mosaic-card:first-child {
  grid-row: 1 / 3;
}

.mosaic-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.mosaic-card:first-child img {
  object-position: 42% center;
}

.mosaic-card:hover img {
  transform: scale(1.035);
}

.mosaic-card::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  content: "";
}

.mosaic-label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.mosaic-label strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1;
}

.mosaic-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mosaic-label b {
  display: grid;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  place-items: center;
  font-weight: 500;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 0.95rem 0;
  animation: ticker 26s linear infinite;
}

.ticker span {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-right: 1.4rem;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker span::after {
  color: #8a64dd;
  content: "✦";
}

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

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-kicker {
  display: block;
  margin-bottom: 1rem;
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
  font-weight: 760;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.section-head p {
  margin: 0;
  color: var(--paper-muted);
}

.artist-list {
  border-top: 1px solid var(--line);
}

.artist-row {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(230px, 0.75fr) minmax(260px, 1fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 150px;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.artist-row:hover {
  padding-inline: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.artist-number {
  color: var(--paper-muted);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.artist-name strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.artist-name span,
.artist-desc {
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.artist-name span {
  display: block;
  margin-top: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-items: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.artist-row:hover .artist-arrow {
  background: var(--acid);
  color: var(--ink);
  transform: rotate(-35deg);
}

.releases {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d11;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.release-card {
  min-width: 0;
}

.release-art {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1rem;
  background: #17171c;
}

.release-art img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.release-card:hover img {
  transform: scale(1.03);
}

.release-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.1rem;
}

.release-meta strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.release-meta span {
  color: var(--paper-muted);
  font-size: 0.82rem;
}

.release-type {
  flex: 0 0 auto;
  padding-top: 0.25rem;
  color: var(--acid) !important;
  font-size: 0.7rem !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.about-mark {
  position: sticky;
  top: 120px;
}

.about-mark strong {
  display: block;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.74;
}

.about-mark em {
  display: block;
  margin: 1.2rem 0 0 0.25rem;
  color: var(--acid);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
}

.about-logo {
  width: min(100%, 390px);
  height: auto;
  filter: drop-shadow(0 18px 45px rgba(216, 255, 53, 0.08));
}

.about-copy .lead {
  margin: 0 0 2.5rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.6vw, 3.7rem);
  line-height: 1.12;
}

.about-copy p:not(.lead) {
  max-width: 700px;
  color: var(--paper-muted);
  font-size: 1.05rem;
}

.truth-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
}

.truth-card b {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  place-items: center;
}

.truth-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.truth-card p {
  margin: 0;
  font-size: 0.95rem !important;
}

.site-footer {
  padding: 3.5rem var(--pad) 2rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
}

.footer-statement {
  max-width: 800px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.98;
}

.footer-statement em {
  color: var(--acid);
  font-weight: 400;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  color: var(--paper-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #77747b;
  font-size: 0.78rem;
}

/* Artist pages */
.artist-page {
  --artist-accent: var(--acid);
}

.artist-page--nova { --artist-accent: #ffb45f; }
.artist-page--tessa { --artist-accent: #ff9fc8; }
.artist-page--della { --artist-accent: #d9bd85; }
.artist-page--pickle { --artist-accent: #d8ff35; }

.artist-page .brand .brand-title,
.artist-page .section-kicker {
  color: var(--artist-accent);
}

.artist-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: center;
  max-width: var(--max);
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) var(--pad);
}

.artist-visual {
  position: relative;
  overflow: hidden;
  min-height: min(720px, 72vh);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: #15151a;
}

.artist-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-visual--wide img {
  object-fit: contain;
  object-position: center;
}

.artist-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.66));
  content: "";
}

.visual-stamp {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.artist-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.5vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.artist-copy .genre-line {
  margin: 1.6rem 0 0;
  color: var(--artist-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.artist-copy .artist-bio {
  max-width: 620px;
  margin: 1.6rem 0 0;
  color: var(--paper-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.artist-copy .ai-note {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.75rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper-muted);
  font-size: 0.78rem;
}

.artist-copy .ai-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--artist-accent);
  content: "";
}

.chapter {
  border-block: 1px solid var(--line);
  background: var(--ink-soft);
}

.chapter-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 8vw, 8rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) var(--pad);
}

.chapter-label {
  color: var(--artist-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chapter-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.chapter-copy p {
  max-width: 670px;
  margin: 1.35rem 0 0;
  color: var(--paper-muted);
}

.music-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.music-link {
  display: flex;
  min-height: 72px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 750;
}

.music-link small {
  color: #77747b;
  font-size: 0.68rem;
  font-weight: 600;
}

.links-note {
  margin-top: 1rem !important;
  font-size: 0.8rem;
}

.artist-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 5rem) var(--pad);
}

.artist-next span {
  color: var(--paper-muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artist-next strong {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
}

.artist-next b {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-items: center;
}

/* Work With West */
.contact-page {
  background:
    radial-gradient(circle at 14% 14%, rgba(216, 255, 53, 0.09), transparent 27rem),
    radial-gradient(circle at 88% 82%, rgba(185, 156, 255, 0.08), transparent 30rem),
    var(--ink);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  max-width: var(--max);
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7.5rem) var(--pad);
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3.6rem, 7.4vw, 8rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.contact-intro h1 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
}

.contact-prompts {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.25rem;
  color: var(--paper-muted);
}

.contact-prompts span {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.contact-prompts span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
}

.contact-panel {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(16, 16, 20, 0.84);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.contact-panel-head {
  margin-bottom: 2rem;
}

.contact-panel-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.contact-panel-head p {
  margin: 0.85rem 0 0;
  color: var(--paper-muted);
}

.contact-form {
  display: grid;
  gap: 1.15rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field > span {
  font-size: 0.86rem;
  font-weight: 750;
}

.form-field > span small {
  color: #77747b;
  font-size: 0.76rem;
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
  outline: none;
  background: #0b0b0e;
  color: var(--paper);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field select {
  cursor: pointer;
}

.form-field textarea {
  min-height: 170px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #68666b;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px rgba(216, 255, 53, 0.1);
}

.form-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 0.35rem;
  border: 0;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.form-submit:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.form-privacy {
  margin: 0;
  color: #77747b;
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.thanks-shell {
  display: grid;
  min-height: calc(100svh - 78px);
  padding: var(--pad);
  place-items: center;
}

.thanks-card {
  width: min(100%, 760px);
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--ink-soft);
  text-align: center;
}

.thanks-card strong {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  place-items: center;
  font-size: 1.5rem;
}

.thanks-card h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.thanks-card p {
  max-width: 560px;
  margin: 1.25rem auto 2rem;
  color: var(--paper-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 77px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 0 var(--pad);
    border-bottom: 1px solid var(--line);
    background: rgba(9, 9, 11, 0.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav a {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav a:last-child {
    border: 0;
  }

  .site-header.nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.nav-open .nav-toggle span {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle::before {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle::after {
    transform: translateY(-5px) rotate(-45deg);
  }

  .hero,
  .artist-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mosaic {
    height: 620px;
  }

  .artist-row {
    grid-template-columns: 48px minmax(210px, 0.85fr) minmax(220px, 1fr) auto;
  }

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

  .artist-visual {
    min-height: 610px;
  }

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

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-intro {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    top: 67px;
  }

  .brand-logo {
    height: 41px;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.2fr 0.8fr;
    height: 520px;
    min-height: 0;
  }

  .mosaic-card:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .section-head,
  .about-grid,
  .chapter-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
  }

  .artist-row {
    grid-template-columns: 42px 1fr auto;
    min-height: 128px;
  }

  .artist-desc {
    display: none;
  }

  .release-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-mark {
    position: static;
  }

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

  .footer-nav {
    align-items: flex-start;
  }

  .artist-hero {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 3rem;
  }

  .artist-copy h1 {
    font-size: clamp(4rem, 20vw, 7.2rem);
  }

  .artist-visual {
    width: 100%;
    min-height: 500px;
  }
}

@media (max-width: 500px) {
  .hero-actions .button {
    width: 100%;
  }

  .hero-mosaic {
    display: flex;
    height: auto;
    min-height: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-mosaic::-webkit-scrollbar {
    display: none;
  }

  .mosaic-card {
    flex: 0 0 84%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: start;
  }

  .artist-number {
    font-size: 0.78rem;
  }

  .artist-name strong {
    font-size: 1.55rem;
  }

  .artist-name span {
    font-size: 0.67rem;
  }

  .artist-arrow {
    width: 42px;
    height: 42px;
  }

  .music-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
