:root {
  --bg: #120b0b;
  --bg-alt: #1b0f0f;
  --card: #221513;
  --text: #f4e9e2;
  --muted: #c9b7aa;
  --accent: #d6a35a;
  --accent-strong: #f0c37b;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top, rgba(214, 163, 90, 0.2), transparent 40%),
    linear-gradient(130deg, #0d0707 0%, #1b0f0f 45%, #2c1512 100%);
  color: var(--text);
}

.page {
  min-height: 100vh;
  backdrop-filter: blur(0.5px);
}

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

.hero {
  padding: 48px 8vw 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(214, 163, 90, 0.25), transparent 50%),
    radial-gradient(circle at 80% 0%, rgba(240, 195, 123, 0.18), transparent 45%);
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Cinzel", serif;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 72px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(40px, 6vw, 88px);
  margin: 12px 0 20px;
  letter-spacing: 2px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  font-size: 13px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #1b0f0f;
  box-shadow: 0 10px 30px rgba(214, 163, 90, 0.4);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(214, 163, 90, 0.55);
}

.btn.ghost {
  border-color: rgba(214, 163, 90, 0.6);
  color: var(--accent);
}

.btn.ghost:hover {
  background: rgba(214, 163, 90, 0.12);
}

.stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.stats div {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.stats strong {
  font-size: 18px;
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 163, 90, 0.4), transparent 70%);
  top: 30px;
  left: 10%;
  filter: blur(10px);
}

.vinyl {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #3b1d1a, #120b0b 55%, #070404 100%);
  border: 1px solid rgba(214, 163, 90, 0.2);
  top: 70px;
  right: 10%;
  box-shadow: var(--shadow);
  animation: spin 20s linear infinite;
}

.hero-card {
  position: absolute;
  background: rgba(28, 16, 16, 0.85);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: var(--shadow);
  width: min(320px, 80vw);
  backdrop-filter: blur(8px);
}

.hero-card img {
  width: 78px;
  height: 78px;
  border-radius: 10px;
}

.hero-card.secondary {
  top: 220px;
  left: 0;
}

.hero-card:not(.secondary) {
  top: 40px;
  right: 0;
}

.hero-card .title {
  font-weight: 600;
}

.hero-card .meta {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 80px 8vw;
}

.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 44px);
}

.section-title p {
  color: var(--muted);
  max-width: 520px;
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.release {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.release img {
  width: 100%;
  border-radius: 14px;
}

.release h3 {
  font-size: 18px;
}

.release p {
  font-size: 13px;
  color: var(--muted);
}

.release.highlight {
  background: linear-gradient(140deg, rgba(214, 163, 90, 0.2), rgba(28, 16, 16, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
}

.release-copy {
  display: grid;
  gap: 14px;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
}

.about p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 16px;
  font-size: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill-row span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.about-card img {
  width: 80px;
  height: 80px;
}

.listen {
  background: var(--bg-alt);
}

.spotify-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-email {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.contact-email a {
  color: var(--text);
  font-weight: 600;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 30px 8vw 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card.secondary {
    left: 10px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 28px;
  }

  .hero-card {
    position: relative;
    margin-bottom: 16px;
  }

  .hero-card.secondary,
  .hero-card:not(.secondary) {
    top: 0;
    right: auto;
    left: auto;
  }

  .vinyl {
    display: none;
  }
}
