:root {
  --bg: #0c0809;
  --bg-soft: #151011;
  --panel: #1a1214;
  --text: #f5eee8;
  --muted: #bcaeaa;
  --wine: #8d1830;
  --wine-deep: #54101f;
  --red: #c62d49;
  --gold: #d8b36a;
  --gold-soft: #f1d79b;
  --line: rgba(216, 179, 106, .23);
  --shadow: 0 20px 70px rgba(0,0,0,.42);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: linear-gradient(to bottom, rgba(7,4,5,.92), rgba(7,4,5,.58), transparent);
  backdrop-filter: blur(8px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: .84rem;
  letter-spacing: .18em;
  font-weight: 800;
}
.monogram {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: .06em;
}
.nav { display: flex; gap: 28px; }
.nav a {
  text-decoration: none;
  color: #e8ded9;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .88;
}
.nav a:hover { color: var(--gold-soft); opacity: 1; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/banner.jpg');
  background-size: cover;
  background-position: center 44%;
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,5,6,.88) 0%, rgba(10,5,6,.50) 42%, rgba(10,5,6,.08) 70%),
    linear-gradient(0deg, rgba(10,5,6,.97) 0%, rgba(10,5,6,.20) 42%, rgba(10,5,6,.08) 72%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 180px 0 11vh;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}
h1 {
  margin-bottom: 18px;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 500;
  letter-spacing: -.055em;
  text-shadow: 0 8px 40px rgba(0,0,0,.5);
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  font-weight: 500;
  letter-spacing: -.035em;
}
h3 { font-size: 1.6rem; font-weight: 500; }
.hero-tagline {
  width: min(690px, 95%);
  margin: 0 0 34px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: #e5d9d4;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 800;
}
.btn-primary { background: var(--gold); color: #1b1110; }
.btn-ghost { background: rgba(10,7,7,.34); }

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}
.split {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1.18fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}
.portrait-wrap {
  position: relative;
  max-width: 450px;
}
.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 20px -18px -18px 20px;
  border: 1px solid var(--gold);
  opacity: .36;
  z-index: -1;
}
.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}
.copy p { color: #d6c9c4; font-size: 1.04rem; }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}
.meta-row strong { color: var(--gold-soft); font-weight: 650; }

.universe {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { max-width: 820px; margin-bottom: 46px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  min-height: 270px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(141,24,48,.065));
  border: 1px solid var(--line);
  box-shadow: 0 16px 45px rgba(0,0,0,.18);
}
.card-no {
  display: block;
  color: var(--red);
  font-weight: 900;
  letter-spacing: .2em;
  margin-bottom: 58px;
}
.card p { color: var(--muted); }

.track-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
  align-items: stretch;
}
.track-copy, .player-box, .contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 46px);
}
.status, .small-label, .player-label {
  color: var(--gold-soft);
  font-size: .72rem;
  letter-spacing: .18em;
  font-weight: 800;
  text-transform: uppercase;
}
.track-copy h3 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 16px 0; }
.track-copy p, .player-box small { color: var(--muted); }
.track-meta { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 26px; color: var(--muted); font-size: .9rem; }
.track-meta strong { color: var(--text); }
.player-box { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
audio { width: 100%; }
code { color: var(--gold-soft); }
.platforms { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.platform {
  border: 1px solid var(--line);
  padding: 11px 15px;
  text-decoration: none;
  font-size: .86rem;
}
.placeholder { opacity: .62; cursor: default; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}
.contact > div:first-child p:last-child { color: var(--muted); max-width: 560px; }
.contact-card { display: grid; gap: 8px; }
.producer {
  margin-top: 8px;
  color: var(--gold-soft);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}
.email { color: var(--text); text-decoration: none; }
.socials { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.socials a { color: var(--muted); text-decoration: none; font-size: .84rem; }

.site-footer {
  padding: 38px 20px 52px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
}
.site-footer p { margin: 5px 0; }
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.muted { opacity: .64; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { min-height: 88svh; }
  .hero-bg { background-position: 55% center; }
  .hero-overlay { background: linear-gradient(0deg, rgba(10,5,6,.98) 0%, rgba(10,5,6,.48) 55%, rgba(10,5,6,.18) 100%); }
  .hero-content { padding-bottom: 8vh; }
  .split, .track-panel, .contact { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 520px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card-no { margin-bottom: 28px; }
}

@media (max-width: 560px) {
  .site-header { padding: 14px 18px; }
  .brand { font-size: .72rem; }
  .monogram { width: 38px; height: 38px; }
  .section { width: min(100% - 28px, var(--max)); padding: 78px 0; }
  .hero-content { width: min(100% - 28px, var(--max)); }
  h1 { font-size: clamp(4rem, 22vw, 6.4rem); }
  .hero-tagline { font-size: 1rem; }
  .btn { width: 100%; }
  .portrait-wrap::before { inset: 12px -8px -10px 12px; }
  .track-copy, .player-box, .contact-card { padding: 24px; }
}
