/*
  KEY TO YOUR MIND RECORDS — WEBSITE V3
  ------------------------------------------------------------
  Single production stylesheet. No framework, no remote fonts,
  no blocking imports. Organized for easy editing and hosting.
*/

/* 1. Design tokens --------------------------------------------------------- */
:root {
  --cyan: #59dbf6;
  --pink: #f556c8;
  --violet: #8b5cf6;
  --blue: #00a6ed;
  --purple: #b14aed;

  --ink: #07070b;
  --ink-soft: #0c0c12;
  --ink-raised: #111119;
  --paper: #f2f0ea;
  --paper-soft: #e8e5dd;
  --white: #f8f8fb;
  --muted: #a7a8b3;
  --muted-light: #c8c9d1;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --line-dark: rgba(7, 7, 11, 0.16);

  --font-sans: "Helvetica Neue", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-display: "Helvetica Neue", "Avenir Next", "Segoe UI", Arial, sans-serif;

  --container: min(1240px, calc(100% - 48px));
  --container-wide: min(1460px, calc(100% - 40px));
  --section-space: clamp(88px, 10vw, 150px);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Base ------------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 10% 2%, rgba(89, 219, 246, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(245, 86, 200, 0.07), transparent 30rem),
    var(--ink);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* A lightweight grain layer: no SVG filter and no blur. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.24) 0.55px, transparent 0.7px);
  background-size: 5px 5px;
}

body.menu-open {
  overflow: hidden;
}

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

img,
picture,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  width: 100%;
  height: auto;
  background: #0b0b11;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--pink);
  color: #08080c;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #07070b;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.container-wide {
  width: var(--container-wide);
  margin-inline: auto;
}

main > section,
footer {
  position: relative;
}

section[id] {
  scroll-margin-top: 105px;
}

.deferred-render {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

/* 3. Type and reusable layout --------------------------------------------- */
.eyebrow,
.section-index,
.micro-label {
  margin: 0;
  color: var(--cyan);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--dark,
.section-index--dark {
  color: #17171d;
}

.eyebrow--light {
  color: #fff;
}

.display,
.title,
.page-title,
.statement-xl {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 780;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.display {
  font-size: clamp(4.2rem, 9.6vw, 9.6rem);
  line-height: 0.84;
}

.title {
  font-size: clamp(2.7rem, 5.4vw, 6.2rem);
  line-height: 0.93;
}

.page-title {
  max-width: 1100px;
  font-size: clamp(3.5rem, 8.3vw, 8.8rem);
  line-height: 0.88;
}

.statement-xl {
  max-width: 1100px;
  font-size: clamp(3rem, 7vw, 7.8rem);
  line-height: 0.92;
}

.lead,
.subtitle {
  margin: 0;
  max-width: 700px;
  color: var(--muted-light);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  line-height: 1.55;
}

.body-copy {
  max-width: 680px;
  color: var(--muted-light);
  font-size: 1.02rem;
}

.body-copy p:first-child {
  margin-top: 0;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  paint-order: stroke fill;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, var(--cyan), var(--pink) 48%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
}

.section {
  padding-block: var(--section-space);
}

.section-tight {
  padding-block: clamp(64px, 7vw, 100px);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 82px);
}

.section-header > * {
  min-width: 0;
}

.section-header .subtitle {
  justify-self: end;
}

.rule {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-weight: 650;
  line-height: 1.2;
  transition: color 0.2s ease, gap 0.25s var(--ease);
}

.text-link:hover {
  gap: 15px;
  color: var(--cyan);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 48px;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 680;
  line-height: 1;
  transition:
    transform 0.3s var(--ease),
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-115%);
  transition: transform 0.65s var(--ease-out);
}

.btn:hover::before {
  transform: translateX(115%);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  border-color: #fff;
  background: #fff;
  color: #08080c;
}

.btn-primary:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.btn-dark {
  border-color: #08080c;
  background: #08080c;
  color: #fff;
}

.btn-ghost {
  background: rgba(8, 8, 12, 0.52);
}

.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* 4. Header and navigation ------------------------------------------------- */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 900;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1360px, calc(100% - 28px));
  min-height: 68px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 20px;
  transform: translateX(-50%);
  transition:
    top 0.3s var(--ease),
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  top: 8px;
  border-color: var(--line);
  background: rgba(7, 7, 11, 0.93);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
}

@supports (backdrop-filter: blur(1px)) {
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    background: rgba(7, 7, 11, 0.78);
    backdrop-filter: blur(12px);
  }
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.wordmark img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  background: transparent;
}

.wordmark-copy {
  display: grid;
  line-height: 1;
}

.wordmark-copy strong {
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.wordmark-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.primary-nav {
  justify-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.84rem;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: #d6d6de;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transition: right 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}

.nav-cta {
  justify-self: end;
  font-size: 0.81rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* 5. Home hero ------------------------------------------------------------- */
.home-hero {
  min-height: 100svh;
  padding: clamp(132px, 14vw, 178px) 0 56px;
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 86, 200, 0.18), transparent 25rem),
    radial-gradient(circle at 66% 42%, rgba(89, 219, 246, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(7, 7, 11, 0.02), var(--ink));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: end;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-title {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 9.5vw, 9.7rem);
  font-weight: 800;
  letter-spacing: -0.082em;
  line-height: 0.79;
}

.hero-title span {
  display: block;
}

.hero-title .hero-indent {
  padding-left: clamp(0px, 6vw, 92px);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-top: clamp(34px, 5vw, 68px);
}

.hero-intro .lead {
  max-width: 610px;
}

.hero-actions {
  display: grid;
  gap: 13px;
  justify-items: start;
}

.hero-visual {
  position: relative;
  padding: 24px 0 20px;
}

.hero-picture {
  position: relative;
  z-index: 2;
  margin: 0;
  transform: rotate(1.6deg);
  transition: transform 0.45s var(--ease);
}

.hero-picture:hover {
  transform: rotate(0deg) translateY(-4px);
}

.hero-picture img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

.hero-picture::after {
  content: "";
  position: absolute;
  inset: 13px -13px -13px 13px;
  z-index: -1;
  border: 1px solid rgba(89, 219, 246, 0.35);
}

.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  color: #81828d;
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mind-rings {
  position: absolute;
  top: -5%;
  right: -34%;
  z-index: 1;
  width: min(38vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(89, 219, 246, 0.22);
  border-radius: 50%;
  opacity: 0.75;
  pointer-events: none;
}

.mind-rings::before,
.mind-rings::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(245, 86, 200, 0.2);
  border-radius: 50%;
}

.mind-rings::before {
  inset: 17%;
}

.mind-rings::after {
  inset: 34%;
  border-color: rgba(139, 92, 246, 0.3);
}

.mind-rings.is-inview {
  animation: slow-spin 24s linear infinite;
  will-change: transform;
}

.hero-keyhole {
  position: absolute;
  top: 16%;
  right: -2%;
  z-index: 3;
  width: 52px;
  height: 88px;
  pointer-events: none;
}

.hero-keyhole::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 38px;
  height: 38px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  transform: translateX(-50%);
}

.hero-keyhole::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 50%;
  width: 16px;
  height: 54px;
  background: linear-gradient(var(--cyan), var(--pink));
  clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.hero-rail {
  position: absolute;
  top: 50%;
  left: 18px;
  display: flex;
  gap: 24px;
  color: #747580;
  font-size: 0.58rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-scroll {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #747580;
  font-size: 0.58rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 62px;
  height: 1px;
  background: #555660;
}

/* 6. Signal strip ---------------------------------------------------------- */
.signal-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.signal-track {
  display: flex;
  width: max-content;
  padding: 16px 0;
  color: #b8b9c2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: marquee 30s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.signal-strip.is-inview .signal-track {
  animation-play-state: running;
}

.signal-track span {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-right: 34px;
}

.signal-track span::before {
  content: "✦";
  color: var(--pink);
}

/* 7. Manifesto and disciplines ------------------------------------------- */
.paper-section {
  overflow: hidden;
  background: var(--paper);
  color: #09090d;
}

.paper-section::after {
  content: "KEY / MIND / MUSIC";
  position: absolute;
  right: -30px;
  bottom: -15px;
  color: rgba(7, 7, 11, 0.045);
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 16rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.75;
  white-space: nowrap;
  pointer-events: none;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
}

.manifesto-copy {
  max-width: 1050px;
}

.manifesto-line {
  margin: 0 0 0.48em;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 6rem);
  font-weight: 750;
  letter-spacing: -0.057em;
  line-height: 1;
  text-wrap: balance;
}

.manifesto-line:last-child {
  margin-bottom: 0;
}

.manifesto-line em {
  color: #7150d7;
  font-style: normal;
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.discipline {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 3vw, 40px);
  overflow: hidden;
  background: var(--ink-soft);
}

.discipline::before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(89, 219, 246, 0.24);
  border-radius: 50%;
  transition: transform 0.55s var(--ease), border-color 0.3s ease;
}

.discipline:hover::before {
  border-color: rgba(245, 86, 200, 0.48);
  transform: scale(1.25);
}

.discipline-number {
  color: #6e6f79;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.discipline h3 {
  max-width: 310px;
  margin: clamp(70px, 8vw, 105px) 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.discipline p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
}

/* 8. Services ledger ------------------------------------------------------- */
.services-ledger {
  border-top: 1px solid var(--line);
}

.ledger-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.ledger-head p {
  margin: 0;
}

.ledger-row {
  display: grid;
  grid-template-columns: 58px minmax(250px, 1.3fr) minmax(220px, 0.8fr) 34px;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, padding-left 0.35s var(--ease);
}

.ledger-row > * {
  min-width: 0;
}

.ledger-row span,
.ledger-row em {
  color: #858690;
  font-size: 0.8rem;
  font-style: normal;
}

.ledger-row strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3.25rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1;
}

.ledger-row b {
  font-size: 1.3rem;
  text-align: right;
}

.ledger-row:hover {
  padding-left: 14px;
  color: var(--cyan);
}

/* 9. Featured artist ------------------------------------------------------- */
.artist-cinema {
  min-height: 88svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #08080c;
}

.artist-cinema-media {
  position: absolute;
  inset: 0;
}

.artist-cinema-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.artist-cinema-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 10, 0.08), rgba(6, 6, 10, 0.28) 42%, rgba(6, 6, 10, 0.93)),
    linear-gradient(90deg, rgba(6, 6, 10, 0.38), transparent 55%);
}

.artist-cinema-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(45px, 6vw, 78px);
}

.artist-cinema-title {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.artist-cinema-title span {
  margin-top: 25px;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-cinema-title h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 14vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.69;
}

.artist-cinema-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-top: 28px;
}

.artist-cinema-bottom p {
  max-width: 430px;
  margin: 0;
  color: #d5d5dc;
}

/* 10. Release cards and lists --------------------------------------------- */
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 30px);
}

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

.release-card:nth-child(2) {
  margin-top: clamp(0px, 5vw, 72px);
}

.release-art {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b11;
}

.release-art img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.release-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.68));
  opacity: 0.72;
}

.release-art:hover img {
  transform: scale(1.035);
}

.release-art-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.release-card h3 {
  margin: 17px 0 4px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

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

.release-links {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #bdbec7;
  font-size: 0.77rem;
}

.release-links a:hover {
  color: var(--cyan);
}

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

.release-row {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.release-row img {
  width: 148px;
  aspect-ratio: 1;
  object-fit: cover;
}

.release-row-copy {
  min-width: 0;
}

.release-row-copy span {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.release-row-copy h3 {
  margin: 7px 0 6px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.release-row-copy p {
  margin: 0;
  color: var(--muted);
}

.release-row-links {
  display: grid;
  gap: 10px;
  text-align: right;
  font-size: 0.82rem;
}

.release-row-links a:hover {
  color: var(--cyan);
}

/* 11. Process and editorial notes ----------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 110px);
}

.process-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.process-intro p {
  max-width: 360px;
  color: var(--muted);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--cyan);
  font-size: 0.73rem;
  letter-spacing: 0.14em;
}

.process-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.1vw, 3.4rem);
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1;
}

.process-list p {
  grid-column: 2;
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.journal-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.journal-preview article {
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journal-preview article:first-child {
  border-left: 1px solid var(--line);
}

.journal-preview h3 {
  margin: 70px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.9rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.journal-preview p {
  color: var(--muted);
}

.studio-break {
  overflow: hidden;
}

.studio-break img {
  width: 100%;
  height: min(78svh, 850px);
  object-fit: cover;
}

.studio-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.58));
}

.studio-caption {
  position: absolute;
  right: 28px;
  bottom: 20px;
  left: 28px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #e7e7eb;
  font-size: 0.61rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* 12. CTA ------------------------------------------------------------------ */
.big-cta {
  position: relative;
  padding: clamp(38px, 6vw, 76px);
  overflow: hidden;
  background: linear-gradient(118deg, var(--cyan), var(--pink) 50%, var(--violet));
  color: #08080c;
}

.big-cta::after {
  content: "";
  position: absolute;
  top: -18%;
  right: -6%;
  width: min(32vw, 400px);
  aspect-ratio: 1;
  border: 1px solid rgba(8, 8, 12, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(8, 8, 12, 0.06),
    0 0 0 84px rgba(8, 8, 12, 0.04);
}

.big-cta > * {
  position: relative;
  z-index: 1;
}

.big-cta h2 {
  max-width: 1050px;
  margin: 18px 0 30px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.7vw, 8rem);
  font-weight: 820;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

/* 13. Shared internal-page hero ------------------------------------------- */
.page-hero {
  min-height: 76svh;
  display: flex;
  align-items: end;
  padding: clamp(154px, 17vw, 210px) 0 clamp(70px, 9vw, 112px);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -170px;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(89, 219, 246, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(245, 86, 200, 0.025),
    0 0 0 160px rgba(139, 92, 246, 0.018);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.45fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
}

.page-hero-copy > .eyebrow {
  margin-bottom: 22px;
}

.page-intro {
  justify-self: end;
  max-width: 430px;
  padding-bottom: 7px;
  color: var(--muted-light);
  font-size: 1.04rem;
}

.breadcrumbs {
  margin: 0 0 20px;
  color: #82838e;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: #fff;
}

/* 14. About ---------------------------------------------------------------- */
.story-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 120px);
}

.story-grid .title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.story-copy {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.48;
}

.story-copy p {
  margin: 0 0 1.4em;
}

.story-copy p:last-child {
  margin-bottom: 0;
}

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

.principle-row {
  display: grid;
  grid-template-columns: 70px minmax(240px, 0.7fr) minmax(0, 1.1fr);
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.principle-row span {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
}

.principle-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.principle-row p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
}

.name-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--paper);
  color: #09090d;
}

.name-explainer-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(38px, 6vw, 76px);
}

.name-explainer-copy h2 {
  margin: 28px 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.name-explainer-copy p {
  max-width: 520px;
  color: #35353c;
}

.name-explainer-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(89, 219, 246, 0.55), transparent 28%),
    linear-gradient(135deg, #11111a, #1a0e22);
}

.name-explainer-visual::before,
.name-explainer-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.name-explainer-visual::before {
  width: 68%;
  aspect-ratio: 1;
}

.name-explainer-visual::after {
  width: 42%;
  aspect-ratio: 1;
}

.name-explainer-key {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 150px;
}

.name-explainer-key::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 68px;
  height: 68px;
  border: 5px solid var(--pink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.name-explainer-key::after {
  content: "";
  position: absolute;
  top: 57px;
  left: 50%;
  width: 29px;
  height: 92px;
  background: linear-gradient(var(--pink), var(--cyan));
  clip-path: polygon(36% 0, 64% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-cell {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-cell span {
  color: #777883;
  font-size: 0.69rem;
  letter-spacing: 0.13em;
}

.team-cell h3 {
  margin: 82px 0 12px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: -0.04em;
}

.team-cell p {
  margin: 0;
  color: var(--muted);
}

/* 15. Services ------------------------------------------------------------- */
.services-index {
  border-top: 1px solid var(--line);
}

.service-entry {
  display: grid;
  grid-template-columns: 60px minmax(250px, 0.72fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(32px, 4vw, 50px) 0;
  border-bottom: 1px solid var(--line);
}

.service-entry > span {
  color: var(--cyan);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.service-entry h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 3.7rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.service-body p {
  max-width: 650px;
  margin-top: 0;
  color: var(--muted-light);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.tag {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c5c6ce;
  font-size: 0.72rem;
}

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

.engagement-card {
  min-height: 350px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.engagement-card span {
  color: var(--pink);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.engagement-card h3 {
  margin: 98px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

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

/* 16. Artists roster ------------------------------------------------------- */
.roster-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  min-height: 700px;
  border: 1px solid var(--line);
}

.roster-image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.roster-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roster-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.68));
}

.roster-image h2 {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 11rem);
  font-weight: 820;
  letter-spacing: -0.09em;
  line-height: 0.66;
}

.roster-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 54px);
  background: var(--ink-soft);
}

.roster-copy h3 {
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.roster-copy p {
  color: var(--muted-light);
}

.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.selection-item {
  min-height: 280px;
  padding: 30px;
  background: var(--ink-soft);
}

.selection-item h3 {
  margin: 80px 0 14px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.selection-item p {
  margin: 0;
  color: var(--muted);
}

/* 17. Brown Eyes page ------------------------------------------------------ */
.artist-hero {
  min-height: 100svh;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #08080c;
}

.artist-hero-media {
  position: absolute;
  inset: 0;
}

.artist-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.artist-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.88), rgba(5, 5, 8, 0.12) 68%),
    linear-gradient(0deg, rgba(5, 5, 8, 0.9), transparent 48%);
}

.artist-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 150px 0 58px;
}

.artist-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(6rem, 17vw, 17rem);
  font-weight: 820;
  letter-spacing: -0.098em;
  line-height: 0.65;
}

.artist-title span {
  display: block;
}

.artist-title .outline-text {
  -webkit-text-stroke-color: #fff;
}

.artist-hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 38px;
  align-items: end;
  margin-top: 46px;
}

.artist-hero-bottom p {
  max-width: 520px;
  margin: 0;
  color: #e1e1e6;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.artist-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vertical-credit {
  position: absolute;
  top: 50%;
  right: 18px;
  z-index: 2;
  color: #bfc0c7;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.artist-story-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(35px, 6vw, 88px);
}

.artist-story-grid .subtitle {
  margin: 38px 0 0 auto;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 0.68fr) 1fr;
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
  width: var(--container-wide);
  margin-inline: auto;
}

.editorial-gallery figure {
  margin: 0;
}

.editorial-gallery img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.artist-quote {
  padding: 30px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.artist-quote small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tracklist-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 86, 200, 0.12), transparent 27rem),
    linear-gradient(145deg, #10111f, #170f1a);
}

.tracklist-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 45px;
}

.tracklist-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.81;
}

.tracklist {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  list-style: none;
}

.tracklist li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.tracklist span,
.tracklist em {
  color: #a4a5af;
  font-size: 0.78rem;
  font-style: normal;
}

.tracklist strong {
  font-size: 1.06rem;
  letter-spacing: 0.02em;
}

.artist-wide {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
}

.artist-wide img {
  width: 100%;
  height: 76svh;
  object-fit: cover;
}

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

.artist-wide-copy {
  position: absolute;
  right: 5vw;
  bottom: 5vw;
  left: 5vw;
  z-index: 1;
}

.artist-wide-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 820;
  letter-spacing: -0.09em;
  line-height: 0.77;
}

/* 18. Journal -------------------------------------------------------------- */
.journal-index {
  border-top: 1px solid var(--line);
}

.journal-index-row {
  display: grid;
  grid-template-columns: 64px minmax(260px, 0.8fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding: 31px 0;
  border-bottom: 1px solid var(--line);
}

.journal-index-row > span {
  color: var(--cyan);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.journal-index-row h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.journal-index-row p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.article-block {
  display: grid;
  grid-template-columns: 170px minmax(0, 780px);
  gap: clamp(32px, 6vw, 90px);
  padding-block: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--line);
}

.article-block h2 {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.article-block p {
  color: #c8c9d0;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-block p:first-of-type {
  margin-top: 0;
}

/* 19. Contact and forms ---------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(44px, 8vw, 120px);
}

.contact-aside {
  align-self: start;
}

.contact-aside h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.contact-aside p {
  color: var(--muted-light);
}

.contact-meta {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-meta span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #d9dae1;
  font-size: 0.82rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.field select option {
  color: #08080c;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(89, 219, 246, 0.09);
}

.form-note,
.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.form-message {
  min-height: 1.3em;
  color: var(--cyan);
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.contact-route {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-route h3 {
  margin: 65px 0 12px;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.04em;
}

.contact-route p {
  margin: 0;
  color: var(--muted);
}

/* 20. Careers, press, FAQ, legal ------------------------------------------ */
.open-status {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.open-status h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.open-status p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

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

.download-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.download-card h2 {
  margin: 68px 0 14px;
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: -0.045em;
  line-height: 1;
}

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

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 400;
  text-align: right;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--muted-light);
}

.legal-content {
  max-width: 850px;
}

.legal-notice {
  margin-bottom: 48px;
  padding: 20px;
  border-left: 3px solid var(--pink);
  background: rgba(245, 86, 200, 0.07);
  color: #dadbe1;
}

.legal-content h2 {
  margin: 2.1em 0 0.55em;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.7vw, 2.5rem);
  letter-spacing: -0.035em;
}

.legal-content p,
.legal-content li {
  color: var(--muted-light);
}

/* 21. 404 ------------------------------------------------------------------ */
.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 130px 0 70px;
  overflow: hidden;
}

.error-page::before,
.error-page::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(89, 219, 246, 0.18);
  border-radius: 50%;
}

.error-page::before {
  width: min(70vw, 850px);
  aspect-ratio: 1;
}

.error-page::after {
  width: min(48vw, 580px);
  aspect-ratio: 1;
  border-color: rgba(245, 86, 200, 0.22);
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.error-code {
  margin: 0;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(8rem, 25vw, 22rem);
  font-weight: 820;
  letter-spacing: -0.1em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.error-content h1 {
  margin: 28px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.error-content p {
  max-width: 600px;
  margin: 0 auto 28px;
  color: var(--muted);
}

/* 22. Footer --------------------------------------------------------------- */
.site-footer {
  padding: clamp(90px, 11vw, 150px) 0 28px;
}

.footer-lockup {
  padding-bottom: clamp(55px, 7vw, 85px);
  border-bottom: 1px solid var(--line);
}

.footer-kicker {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-name {
  margin-top: 35px;
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 10.7vw, 11rem);
  font-weight: 820;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.footer-name span {
  display: block;
}

.footer-name i {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(130px, 0.75fr));
  gap: clamp(32px, 5vw, 70px);
  padding: 58px 0;
}

.footer-grid h2,
.footer-grid h3 {
  margin: 0 0 16px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid p {
  max-width: 380px;
  margin: 0;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #7b7c86;
  font-size: 0.73rem;
}

/* 23. Motion --------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s var(--ease),
    transform 0.72s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 850;
  display: none;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(89, 219, 246, 0.12), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    display: block;
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* 24. Responsive ----------------------------------------------------------- */
@media (max-width: 1120px) {
  .nav-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.7fr);
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 760px);
    --container-wide: min(100% - 24px, 820px);
  }

  body::before {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .primary-nav {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    display: none;
    max-height: calc(100svh - 98px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #09090e;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  }

  .site-header.is-menu-open .primary-nav {
    display: block;
  }

  .nav-links {
    display: grid;
    gap: 0;
    padding: 15px 20px 20px;
  }

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

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .hero-rail,
  .hero-scroll {
    display: none;
  }

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

  .hero-title {
    font-size: clamp(4.4rem, 16.5vw, 8.4rem);
  }

  .hero-visual {
    width: min(62%, 430px);
    margin-left: auto;
  }

  .mind-rings {
    right: -20%;
    width: 70vw;
  }

  .hero-intro,
  .section-header,
  .page-hero-grid,
  .story-grid,
  .process-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-header .subtitle,
  .page-intro {
    justify-self: start;
  }

  .manifesto-grid,
  .artist-story-grid,
  .article-block {
    grid-template-columns: 1fr;
  }

  .discipline-grid,
  .engagement-grid,
  .selection-grid,
  .contact-route-grid,
  .download-grid {
    grid-template-columns: 1fr 1fr;
  }

  .discipline:last-child,
  .engagement-card:last-child,
  .selection-item:last-child,
  .contact-route:last-child,
  .download-card:last-child {
    grid-column: 1 / -1;
  }

  .ledger-row {
    grid-template-columns: 48px minmax(0, 1fr) 32px;
  }

  .ledger-row em {
    grid-column: 2;
  }

  .artist-cinema-title h2 {
    font-size: clamp(6rem, 19vw, 11rem);
  }

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

  .release-card:nth-child(2) {
    margin-top: 0;
  }

  .release-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
  }

  .process-intro,
  .story-grid .title {
    position: static;
  }

  .journal-preview {
    grid-template-columns: 1fr 1fr;
  }

  .journal-preview article:nth-child(3) {
    grid-column: 1 / -1;
  }

  .name-explainer,
  .roster-feature {
    grid-template-columns: 1fr;
  }

  .name-explainer-visual {
    min-height: 480px;
  }

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

  .service-entry {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .service-body {
    grid-column: 2;
  }

  .roster-image {
    min-height: 620px;
  }

  .editorial-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .artist-quote {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .journal-index-row {
    grid-template-columns: 48px minmax(0, 1fr) auto;
  }

  .journal-index-row p {
    grid-column: 2 / -1;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  :root {
    --container: min(100% - 28px, 620px);
    --container-wide: min(100% - 18px, 650px);
    --section-space: 88px;
  }

  .site-header {
    top: 9px;
    width: calc(100% - 18px);
    min-height: 62px;
    padding: 8px 10px;
    border-radius: 17px;
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    top: 6px;
  }

  .wordmark {
    min-width: 0;
  }

  .wordmark img {
    width: 36px;
    height: 36px;
  }

  .wordmark-copy strong {
    max-width: 180px;
    overflow: hidden;
    font-size: 0.77rem;
    text-overflow: ellipsis;
  }

  .wordmark-copy small {
    font-size: 0.49rem;
  }

  .primary-nav {
    top: 76px;
    right: 9px;
    left: 9px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 130px;
  }

  .hero-title {
    font-size: clamp(3.9rem, 18vw, 6.5rem);
    letter-spacing: -0.088em;
    line-height: 0.8;
  }

  .hero-title .hero-indent {
    padding-left: 0;
  }

  .hero-intro {
    display: block;
  }

  .hero-actions {
    margin-top: 25px;
  }

  .hero-visual {
    width: 80%;
    margin-top: 12px;
  }

  .hero-keyhole {
    right: -7%;
  }

  .display {
    font-size: clamp(3.7rem, 17vw, 6.4rem);
  }

  .page-title {
    font-size: clamp(3.4rem, 16vw, 6rem);
  }

  .title {
    font-size: clamp(2.7rem, 12.5vw, 5rem);
  }

  .paper-section::after {
    display: none;
  }

  .manifesto-line {
    font-size: clamp(2.3rem, 11vw, 4.7rem);
  }

  .discipline-grid,
  .engagement-grid,
  .selection-grid,
  .contact-route-grid,
  .download-grid,
  .release-grid,
  .journal-preview,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .discipline:last-child,
  .engagement-card:last-child,
  .selection-item:last-child,
  .contact-route:last-child,
  .download-card:last-child,
  .release-card:last-child,
  .journal-preview article:nth-child(3) {
    grid-column: auto;
    width: auto;
  }

  .discipline {
    min-height: 290px;
  }

  .ledger-head p:last-child {
    display: none;
  }

  .ledger-row {
    grid-template-columns: 39px minmax(0, 1fr) 25px;
    gap: 14px;
  }

  .ledger-row strong {
    font-size: clamp(1.55rem, 8vw, 2.4rem);
  }

  .artist-cinema {
    min-height: 76svh;
  }

  .artist-cinema-title {
    display: block;
  }

  .artist-cinema-title span {
    display: block;
    margin-top: 18px;
  }

  .artist-cinema-title h2 {
    font-size: clamp(5.7rem, 25vw, 9rem);
  }

  .artist-cinema-bottom,
  .artist-hero-bottom,
  .tracklist-head,
  .open-status,
  .footer-bottom {
    display: block;
  }

  .artist-cinema-bottom .btn,
  .artist-profile-links,
  .tracklist-head .artist-profile-links,
  .open-status .btn {
    margin-top: 22px;
  }

  .release-row {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
  }

  .release-row img {
    width: 88px;
  }

  .release-row-links {
    grid-column: 2;
    display: flex;
    gap: 18px;
    text-align: left;
  }

  .process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .studio-break img {
    height: 58svh;
  }

  .studio-caption {
    display: block;
  }

  .studio-caption span:last-child {
    display: none;
  }

  .big-cta {
    padding: 38px 22px;
  }

  .big-cta h2 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

  .page-hero {
    min-height: 68svh;
    padding-top: 145px;
  }

  .principle-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .principle-row p {
    grid-column: 2;
  }

  .name-explainer-copy {
    padding: 38px 24px;
  }

  .name-explainer-visual {
    min-height: 400px;
  }

  .team-grid {
    border-left: 0;
  }

  .team-cell {
    min-height: 220px;
    border-left: 1px solid var(--line);
  }

  .service-entry {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
  }

  .roster-image {
    min-height: 540px;
  }

  .roster-image h2 {
    font-size: clamp(5rem, 24vw, 8rem);
  }

  .artist-title {
    font-size: clamp(6rem, 26vw, 10rem);
  }

  .artist-hero-content {
    padding-bottom: 42px;
  }

  .vertical-credit {
    display: none;
  }

  .editorial-gallery {
    grid-template-columns: 1fr;
  }

  .artist-quote {
    grid-column: auto;
    grid-row: auto;
  }

  .tracklist li {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .tracklist em {
    display: none;
  }

  .artist-wide,
  .artist-wide img {
    min-height: 62svh;
    height: 62svh;
  }

  .journal-index-row {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
  }

  .journal-index-row p,
  .journal-index-row .text-link {
    grid-column: 2;
  }

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

  .contact-form {
    padding: 24px 18px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom span:last-child {
    display: block;
    margin-top: 7px;
  }
}

@media (max-width: 430px) {
  .wordmark-copy strong {
    max-width: 150px;
  }

  .media-caption span:last-child,
  .release-art-label span:last-child {
    display: none;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

/* 25. Reduced motion and print -------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .cursor-glow {
    display: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cursor-glow,
  .signal-strip,
  .btn {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  body::before {
    display: none;
  }
}
