:root {
  --bg: #090909;
  --bg-soft: #0e0e0e;
  --paper: #e9e4d9;
  --muted: #a5a097;
  --line: rgba(233, 228, 217, .16);
  --teal: #0f9291;
  --red: #d82e20;
  --orange: #e56719;
  --yellow: #e9aa1a;
  --dark-red: #8f2118;
  --glow: rgba(255,255,255,.045);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 86px;
  padding: 0 clamp(24px, 4vw, 62px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(9,9,9,.92), rgba(9,9,9,.55), rgba(9,9,9,.12));
  backdrop-filter: blur(3px);
}
.header-logo img {
  display: block;
  width: clamp(150px, 16vw, 225px);
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
}
.main-nav a { text-decoration: none; opacity: .9; }
.main-nav a:hover { opacity: 1; }
.stripe-mark {
  width: 26px;
  height: 17px;
  display: inline-block;
  background: repeating-linear-gradient(to bottom,
    var(--teal) 0 2px, transparent 2px 3px,
    var(--orange) 3px 5px, transparent 5px 6px,
    var(--red) 6px 8px, transparent 8px 9px,
    var(--yellow) 9px 11px, transparent 11px 12px);
}
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 690px;
  height: min(88svh, 920px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: #090909;
}
.hero::after,
.release-section::after,
.about-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  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='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 48%, rgba(255,255,255,.07) 0, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 18% 35%, rgba(255,255,255,.035) 0, rgba(255,255,255,0) 26%),
    linear-gradient(115deg, rgba(255,255,255,.02), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #0b0b0b 0%, #090909 58%, #080808 100%);
}
.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero-art::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.018), rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0) 20%);
}
.hero-art::after {
  background:
    radial-gradient(circle at 24% 48%, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,0) 160px),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  mix-blend-mode: screen;
  opacity: .38;
}
.hero-content {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  padding-top: 56px;
  transform: translateY(-4%);
}
.hero-logo {
  display: block;
  width: clamp(560px, 54vw, 820px);
  max-width: 72vw;
  filter: drop-shadow(0 10px 32px rgba(0,0,0,.6));
}
.hero-tagline {
  margin: 34px 0 0;
  font-size: clamp(17px, 1.35vw, 21px);
  letter-spacing: .22em;
  text-transform: lowercase;
  color: rgba(233,228,217,.95);
}
.hero-actions,
.release-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 42px;
  margin-top: 42px;
}
.button {
  min-width: 170px;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--orange);
  color: var(--paper);
  text-decoration: none;
  background: rgba(9,9,9,.34);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.button:hover { background: rgba(229,103,25,.12); transform: translateY(-1px); }
.text-link {
  position: relative;
  border: 0;
  padding: 8px 0;
  background: none;
  color: var(--paper);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 58%;
  bottom: 1px;
  height: 2px;
  background: var(--teal);
  transition: right .2s ease;
}
.text-link:hover::after { right: 0; }

.edge-motif {
  position: absolute;
  z-index: 5;
  left: 34px;
  bottom: 88px;
  width: 2px;
  display: grid;
  gap: 6px;
  opacity: .45;
}
.edge-motif span { height: 22px; background: rgba(233,228,217,.35); }
.edge-motif span:nth-child(1) { opacity: .45; }
.edge-motif span:nth-child(2) { opacity: .22; }
.edge-motif span:nth-child(3) { opacity: .38; }
.edge-motif span:nth-child(4) { opacity: .18; }
.edge-motif span:nth-child(5) { opacity: .3; }

.release-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 140px) max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 30%, rgba(255,255,255,.02), rgba(255,255,255,0) 30%),
    linear-gradient(135deg, rgba(255,255,255,.015), transparent 35%),
    #0a0a0a;
}
.section-label {
  position: absolute;
  z-index: 3;
  left: max(16px, calc((100vw - var(--max)) / 2 - 62px));
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 10px;
  font-weight: 700;
  color: var(--paper);
  opacity: .72;
}
.release-grid {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}
.cover-wrap {
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.48);
}
.cover-wrap::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  z-index: -1;
  border: 1px solid rgba(15,146,145,.38);
}
.cover-wrap img { display: block; width: 100%; height: auto; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
}
.release-copy h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(42px, 5.1vw, 82px);
  line-height: .96;
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-weight: 800;
}
.release-copy h1 span { color: var(--paper); font-weight: 600; }
.artist {
  margin: 18px 0 0;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
}
.release-description {
  max-width: 600px;
  margin: 30px 0 0;
  color: #c7c2b8;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.65;
}
.release-meta {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tracklist {
  margin: 34px 0 0;
  padding: 20px 0 0 30px;
  max-width: 580px;
  border-top: 1px solid var(--line);
  columns: 2;
  column-gap: 42px;
  color: #c5c0b6;
  font-size: 12px;
}
.tracklist li {
  break-inside: avoid;
  margin: 0 0 10px;
  padding-left: 5px;
}
.tracklist li::marker { color: var(--orange); }
.tracklist span { margin-right: 8px; }
.tracklist time { color: #706d67; white-space: nowrap; }

.listen-section {
  padding: 34px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}
.listen-section > p {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}
.platform-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.platform-links a {
  padding: 8px clamp(18px, 2.6vw, 38px);
  border-left: 1px solid var(--line);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 700;
  color: #d3cec4;
}
.platform-links a:last-child { border-right: 1px solid var(--line); }
.platform-links a:hover { color: white; }

.about-section {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: clamp(80px, 9vw, 135px) max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 16px minmax(340px, 1.1fr) minmax(280px, .9fr);
  align-items: end;
  gap: clamp(30px, 6vw, 90px);
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.02), transparent 30%), #0a0a0a;
}
.about-mark {
  width: 5px;
  height: 110px;
  align-self: center;
  background: linear-gradient(to bottom, var(--orange) 0 18%, transparent 18% 27%, var(--yellow) 27% 43%, transparent 43% 52%, var(--red) 52% 70%, transparent 70% 79%, var(--teal) 79% 100%);
}
.about-section h2 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: clamp(26px, 3.7vw, 52px);
  line-height: 1.24;
  font-weight: 400;
}
.about-copy {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.site-footer {
  min-height: 190px;
  padding: 45px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.03);
  background: #080808;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.site-footer img { width: 200px; opacity: .9; }
.site-footer > p { text-align: right; }
.footer-contact p { margin: 0 0 8px; color: #6f6b64; }
.footer-contact a { text-decoration: none; color: var(--paper); text-transform: none; font-size: 13px; letter-spacing: .04em; }

@media (max-width: 900px) {
  .site-header { height: 72px; }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    padding: 26px 28px 34px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    background: rgba(8,8,8,.97);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .menu-button {
    width: 34px;
    height: 34px;
    padding: 7px;
    display: grid;
    gap: 4px;
    align-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) { display: block; height: 2px; background: var(--paper); }
  .hero { min-height: 660px; height: 82svh; max-height: 820px; }
  .hero-content { width: min(100% - 40px, 760px); }
  .hero-logo { width: min(690px, 88vw); max-width: none; }
  .hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 48%, rgba(255,255,255,.07) 0, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 18% 35%, rgba(255,255,255,.035) 0, rgba(255,255,255,0) 26%),
    linear-gradient(115deg, rgba(255,255,255,.02), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #0b0b0b 0%, #090909 58%, #080808 100%);
}
.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero-art::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.018), rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0) 20%);
}
.hero-art::after {
  background:
    radial-gradient(circle at 24% 48%, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,0) 160px),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  mix-blend-mode: screen;
  opacity: .38;
}

@media (max-width: 600px) {
  .site-header { padding: 0 20px; }
  .header-logo img { width: 150px; }
  .hero { min-height: 650px; height: 90svh; max-height: none; }
  .hero-content { width: calc(100% - 34px); padding-top: 34px; transform: translateY(4%); }
  .hero-logo { width: 100%; }
  .hero-tagline { margin-top: 20px; max-width: 86%; font-size: 14px; line-height: 1.55; letter-spacing: .13em; }
  .hero-actions { gap: 22px; margin-top: 34px; }
  .button { min-width: 145px; }
  .hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 48%, rgba(255,255,255,.07) 0, rgba(255,255,255,0) 22%),
    radial-gradient(circle at 18% 35%, rgba(255,255,255,.035) 0, rgba(255,255,255,0) 26%),
    linear-gradient(115deg, rgba(255,255,255,.02), rgba(255,255,255,0) 34%),
    linear-gradient(180deg, #0b0b0b 0%, #090909 58%, #080808 100%);
}
.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
}
.hero-art::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.018), rgba(255,255,255,0) 28%),
    linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0) 20%);
}
.hero-art::after {
  background:
    radial-gradient(circle at 24% 48%, rgba(255,255,255,.06) 0 2px, rgba(255,255,255,0) 160px),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  mix-blend-mode: screen;
  opacity: .38;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
