:root {
  --bg: #0a0e16;
  --bg-raised: #0c1320;
  --text-primary: #f6eee2;
  --text-body: #ece3d6;
  --text-muted: #c2c8d2;
  --text-dim: #8a909d;
  --accent: #e8893f;
  --accent-hover: #f59a4d;
  --border-hairline: rgba(255, 255, 255, .08);
  --split-red: rgba(232, 80, 60, .5);
  --split-cyan: rgba(72, 176, 200, .5);

  --font-display: 'Rozha One', serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;

  --content-max: 1180px;
  --gutter: 40px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  text-wrap: pretty;
}

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

::selection { background: var(--accent); color: var(--bg); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== grain overlay ===== */
.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 60;
}

/* ===== chromatic aberration headlines ===== */
.aberration-lg {
  text-shadow: 3px 0 var(--split-red), -3px 0 var(--split-cyan), 0 6px 40px rgba(0, 0, 0, .5);
}
.aberration-sm {
  text-shadow: 2px 0 var(--split-red), -2px 0 var(--split-cyan);
}

/* ===== shared layout ===== */
.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 14px;
}
.kicker-accent {
  color: var(--accent);
  letter-spacing: .3em;
  margin-bottom: 22px;
}

.headline-md {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  margin: 0 0 20px;
  color: var(--text-primary);
  text-wrap: balance;
}
.headline-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0;
  color: var(--text-primary);
  text-wrap: balance;
}

.body-lg {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 18px;
  max-width: 56ch;
}

.accent-link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: color .15s ease;
}
.accent-link:hover { color: var(--accent-hover); }
.body-lg .accent-link { display: inline; }

.text-link-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #b9bdc8;
  transition: color .15s ease;
}
.text-link-mono:hover { color: #fff; }

.divider { color: #3a4250; }
.stream-link { display: inline-flex; align-items: center; gap: 12px; }

/* ===== pills / buttons ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pill-accent {
  color: var(--bg);
  background: var(--accent);
}
.pill-accent:hover { background: var(--accent-hover); }
.pill-outline {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .34);
  font-weight: 500;
}
.pill-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.pill-cream {
  color: var(--bg);
  background: var(--text-body);
}
.pill-cream:hover { background: #fff; }
.pill-lg { padding: 14px 26px; font-size: 15px; }

/* ===== nav ===== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 40px;
}
.wordmark {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  white-space: nowrap;
  transition: color .15s ease;
}
a.wordmark:hover { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a:not(.pill) {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #b9bdc8;
  transition: color .15s ease;
}
.nav-links a:not(.pill):hover { color: #fff; }
.nav-links .pill {
  font-family: var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 400;
}

/* ===== hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 150px 32px 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.82) contrast(1.06) brightness(.92) sepia(.14);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 42%, rgba(10, 14, 22, .18) 0%, rgba(10, 14, 22, .42) 55%, rgba(10, 14, 22, .86) 100%);
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, .06) 3px);
  pointer-events: none;
}
.hero-wordmark-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8vh;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(58px, 12vw, 172px);
  line-height: 0.84;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--text-primary);
  text-wrap: balance;
}
.hero-copy-wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-copy {
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.62;
  color: #ece4d6;
  margin: 0 0 30px;
  max-width: 62ch;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .92);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== subscribe ===== */
.subscribe-section {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border-hairline);
}
.subscribe-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 104px 40px;
  text-align: center;
}
.section-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.06;
  margin: 0 0 20px;
  color: var(--text-primary);
  text-wrap: balance;
}
.section-sub {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--text-muted);
  margin: 0 0 34px;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 16px;
}
.subscribe-form input {
  font-family: var(--font-body);
  font-size: 16px;
  color: #f1e8da;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 10px;
  padding: 16px 18px;
  width: 320px;
  outline: none;
  transition: border-color .15s ease;
}
.subscribe-form input:focus { border-color: var(--accent); }
.subscribe-form button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--bg);
  background: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 16px 26px;
  cursor: pointer;
  transition: background .15s ease;
}
.subscribe-form button:hover { background: var(--accent-hover); }
.subscribe-form button:disabled { opacity: .6; cursor: not-allowed; }
.form-status {
  min-height: 1.2em;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin: 0 0 8px;
}
.form-status.is-error { color: #e8503c; }
.trust-line {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--text-dim);
  margin: 0;
}

/* ===== listen ===== */
.listen-section {
  position: relative;
  z-index: 10;
  background: var(--bg-raised);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}
.listen-section .section-inner { padding: 100px 40px; }
.listen-grid {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.listen-cover-wrap { position: relative; }
.listen-cover-wrap a { display: block; transition: box-shadow .15s ease; border-radius: 6px; }
.listen-cover-wrap a:hover { box-shadow: 0 0 0 2px var(--accent); }
.listen-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
  filter: saturate(.96);
}
.listen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.listen-story-link { margin-top: 34px; }

/* ===== about ===== */
.about-section { position: relative; z-index: 10; }
.about-section .section-inner { padding: 104px 40px; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 330px);
  gap: 60px;
  align-items: center;
}
.about-copy .headline-md { max-width: 18ch; font-size: clamp(28px, 3.4vw, 40px); }
.about-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .4);
}
.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.16) saturate(1.24) sepia(.32) brightness(1.05) hue-rotate(-6deg);
}
.about-photo-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(168deg, rgba(255, 150, 60, .30) 0%, rgba(120, 40, 90, .16) 46%, rgba(30, 90, 120, .32) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.about-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 180, 90, .12), rgba(0, 0, 0, 0) 32%, rgba(18, 10, 28, .4));
  pointer-events: none;
}
.about-photo-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, .13) 3px);
  pointer-events: none;
}
.about-photo-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .16;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.about-photo-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 70px rgba(0, 0, 0, .68);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
}

/* ===== catalog ===== */
.catalog-section {
  position: relative;
  z-index: 10;
  background: var(--bg-raised);
  border-top: 1px solid var(--border-hairline);
}
.catalog-section .section-inner { padding: 96px 40px; }
.catalog-heading { margin-bottom: 38px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catalog-item {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 6px;
  transition: box-shadow .15s ease;
}
.catalog-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 5px;
  transition: box-shadow .15s ease;
}
.catalog-item:hover img { box-shadow: 0 0 0 2px var(--accent); }
.catalog-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 14px 0 3px;
  color: #f1e8da;
}
.catalog-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin: 0;
}

/* ===== release nav ===== */
.nav-static { position: relative; }

.kicker-peach { color: #f0b27a; }

/* ===== release hero ===== */
.release-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-hairline);
}
.release-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(46px) saturate(1.1) brightness(.5);
  transform: scale(1.18);
  opacity: .6;
}
.release-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 22, .55), rgba(10, 14, 22, .82));
}
.release-hero-inner {
  position: relative;
  z-index: 10;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 64px 40px 80px;
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.release-cover-wrap { position: relative; }
.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, .6);
}
.release-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  margin: 0 0 22px;
  color: var(--text-primary);
  text-wrap: balance;
}
.release-description {
  font-size: clamp(17px, 1.7vw, 20px);
  color: #d7d2c6;
  margin: 0 0 34px;
  max-width: 46ch;
}
.release-streaming {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ===== story ===== */
.story-section { position: relative; z-index: 10; }
.story-inner { max-width: 720px; margin: 0 auto; padding: 104px 40px 90px; }
.story-lead {
  font-size: 20px;
  line-height: 1.72;
  color: #dcd7cb;
  margin: 0 0 26px;
}
.story-body {
  font-size: 18px;
  line-height: 1.78;
  color: #bcc2cc;
  margin: 0 0 26px;
}
.story-quote {
  margin: 46px 0;
  padding: 0 0 0 26px;
  border-left: 2px solid var(--accent);
}
.story-quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}
.story-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.credit-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7c8190;
  margin: 0 0 6px;
}
.credit-value {
  font-size: 15px;
  color: #dcd7cb;
  margin: 0;
}

/* ===== more releases ===== */
.more-releases-section {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border-hairline);
}
.more-releases-section .section-inner { padding: 80px 40px; }
.more-releases-heading { margin: 0 0 32px; }
.more-releases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.more-release-card {
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  transition: border-color .15s ease, background .15s ease;
}
.more-release-card:hover { border-color: var(--accent); background: rgba(255, 255, 255, .02); }
.more-release-cover {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.more-release-title {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 4px;
  color: #f1e8da;
}
.more-release-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin: 0;
}

/* ===== footer ===== */
.footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border-hairline);
}
.footer-inner {
  padding: 44px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-links a {
  text-decoration: none;
  color: var(--text-dim);
  transition: color .15s ease;
}
.footer-links a:hover { color: var(--accent); }
.copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #5f6573;
}

/* ===== responsive ===== */
@media (max-width: 900px) {
  .listen-grid,
  .about-grid,
  .catalog-grid,
  .release-hero-inner,
  .more-releases-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-wrap { max-width: 380px; }
  .catalog-grid { gap: 40px; }
}

@media (max-width: 640px) {
  .nav { padding: 20px 24px; }
  .wordmark { font-size: 11px; letter-spacing: .16em; }
  .nav-links { gap: 16px; }
  .nav .wordmark { display: none; }
  .nav { justify-content: center; }
  .footer-inner { justify-content: center; text-align: center; }
  .more-release-card { flex-direction: column; align-items: flex-start; }
  .more-release-cover { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .listen-links,
  .release-streaming {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .stream-link .divider { display: none; }
}
