:root {
  --ink: #120f0b;
  --ink-soft: #1b1712;
  --stone: #6a6259;
  --taupe: #ae9f8e;
  --olive: #5f5726;
  --clay: #54301a;
  --ivory: #f1eae1;
  --gold: #c8a56a;
  --line: rgba(241,234,225,.16);
  --muted: rgba(241,234,225,.68);
  --max: 1180px;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: absolute; left: -999px; top: 1rem;
  background: var(--ivory); color: var(--ink); padding: .8rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(18,15,11,.74);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: var(--max); margin: 0 auto; padding: .9rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  text-decoration: none; font-weight: 800; letter-spacing: -.03em; font-size: 1.12rem;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: .94rem; }
.nav-links a:hover, .nav-links a:focus { color: var(--ivory); }

.shell { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

.hero {
  min-height: min(760px, calc(100vh - 64px));
  position: relative; display: grid; align-items: end;
  background:
    linear-gradient(90deg, rgba(18,15,11,.95) 0%, rgba(18,15,11,.68) 44%, rgba(18,15,11,.18) 76%, rgba(18,15,11,.52) 100%),
    url('/assets/hero.svg') center 42% / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 44%, var(--ink) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding: 8rem 1.25rem 5rem; max-width: var(--max); width: 100%; margin: 0 auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; color: var(--gold); font-weight: 700; }
h1, h2, h3 { margin-top: 0; line-height: 1.04; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 9vw, 8rem); letter-spacing: -.055em; margin-bottom: 1rem; max-width: 9ch;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.3rem); letter-spacing: -.04em; margin-bottom: 1rem;
}
h3 { font-size: 1.15rem; }
.hero-copy { max-width: 700px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(241,234,225,.84); }
.actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.8rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 48px; padding: .76rem 1.15rem; border: 1px solid var(--line); border-radius: 999px;
  text-decoration: none; font-weight: 700; background: rgba(241,234,225,.06); color: inherit;
  cursor: pointer;
}
.btn.primary { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn:hover, .btn:focus { transform: translateY(-1px); border-color: rgba(241,234,225,.46); }
.btn:disabled { cursor: not-allowed; opacity: .52; transform: none; }

.section { padding: 6rem 0; border-top: 1px solid var(--line); }
.section.tight { padding: 4rem 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.5rem; }
.section-head p { max-width: 620px; color: var(--muted); margin: 0; }

.listen-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: center; }
.spotify-shell {
  min-height: 352px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(145deg, #211b14, #17130f); display: grid; align-items: stretch;
}
.spotify-gate { padding: 2rem; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.spotify-gate p { color: var(--muted); max-width: 620px; }
.spotify-frame { display: block; width: 100%; min-height: 352px; border: 0; }

.release-grid, .card-grid, .press-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.release-card {
  grid-column: span 7; background: linear-gradient(145deg, #211b14, #17130f); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem; min-height: 420px; display: flex; flex-direction: column; justify-content: end;
  position: relative; overflow: hidden;
}
.release-card::before {
  content: ""; position: absolute; inset: 0 0 0 44%;
  background: url('/assets/portrait.svg') center / cover no-repeat;
  opacity: .26; filter: saturate(.72);
}
.release-card > * { position: relative; z-index: 2; }
.tracklist { grid-column: span 5; display: grid; gap: .85rem; }
.track {
  border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1.15rem; display: flex; justify-content: space-between; gap: 1rem;
  background: rgba(241,234,225,.025);
}
.track small { color: var(--muted); }

.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; background: rgba(241,234,225,.025); }
.card.three { grid-column: span 4; }
.card.six { grid-column: span 6; }
.card p { color: var(--muted); }

.about-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3rem; align-items: center; }
.portrait { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--ink-soft); }
.about-copy p { color: rgba(241,234,225,.78); font-size: 1.08rem; }

.quote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.25rem); line-height: 1.16; max-width: 900px; margin: 0;
}

.link-stack { display: grid; gap: .8rem; max-width: 760px; }
.big-link {
  border: 1px solid var(--line); border-radius: 18px; padding: 1rem 1.15rem; display: flex; justify-content: space-between; align-items: center;
  text-decoration: none; background: rgba(241,234,225,.025);
}
.big-link:hover { background: rgba(241,234,225,.055); }
.big-link span:last-child { color: var(--gold); }

.form { max-width: 760px; display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1rem;
  background: #18140f; color: var(--ivory); outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { min-height: 180px; resize: vertical; }
.form-status { color: var(--muted); min-height: 1.5rem; }
.join-panel { max-width: 760px; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; background: rgba(241,234,225,.025); }
.join-panel .form { margin-top: 1.5rem; }
.consent-copy { font-size: .9rem; color: var(--muted); }

.site-footer { border-top: 1px solid var(--line); padding: 2rem 0 3.5rem; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links a { color: inherit; }

.kicker { color: var(--muted); max-width: 760px; }
.meta { color: var(--muted); font-size: .9rem; }
.notice { border-left: 3px solid var(--gold); padding: .8rem 1rem; background: rgba(200,165,106,.06); color: var(--muted); }

@media (max-width: 820px) {
  .nav-links a:not(.always) { display: none; }
  .hero { min-height: 680px; background-position: 58% 42%; }
  .hero-inner { padding-top: 7rem; }
  .release-card, .tracklist, .card.three, .card.six { grid-column: 1 / -1; }
  .about-wrap, .listen-grid { grid-template-columns: 1fr; }
  .portrait { max-width: 560px; }
  .section-head { display: block; }
  .spotify-shell, .spotify-frame { min-height: 352px; }
}

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