@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #11130f;
  --panel: #181b15;
  --panel-soft: #20251d;
  --ink: #f3ead7;
  --muted: #c6b999;
  --gold: #c69b4b;
  --gold-soft: #ebcf8f;
  --green: #6f7f61;
  --line: rgba(198, 155, 75, 0.34);
  --shadow: rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(111, 127, 97, 0.25), transparent 34rem),
    linear-gradient(135deg, rgba(198, 155, 75, 0.06) 0 25%, transparent 25% 50%, rgba(198, 155, 75, 0.04) 50% 75%, transparent 75%),
    var(--bg);
  background-size: auto, 28px 28px, auto;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(17, 19, 15, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
}

.nav {
  display: flex;
  gap: clamp(0.75rem, 3vw, 2rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a:hover { color: var(--gold-soft); }

.section-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-mark {
  position: absolute;
  inset: 6rem 12%;
  border: 1px solid rgba(198, 155, 75, 0.22);
  border-radius: 999px 999px 4rem 4rem;
  opacity: 0.75;
  pointer-events: none;
}

.hero-logo {
  width: min(310px, 72vw);
  filter: drop-shadow(0 22px 34px var(--shadow));
  margin-bottom: 1.3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Cinzel, Georgia, serif;
  line-height: 1.12;
  margin: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(2.45rem, 7vw, 5.6rem);
  text-shadow: 0 18px 42px var(--shadow);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--ink);
}

h3 {
  font-size: 1.35rem;
  color: var(--gold-soft);
}

.lede {
  max-width: 790px;
  margin: 1.35rem auto 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button,
.link-row a,
.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.link-row a:hover,
.email-link:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
}

.primary {
  color: #15130d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.secondary {
  color: var(--gold-soft);
  background: rgba(198, 155, 75, 0.06);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
}

.copy-block p,
.sound-section p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0;
}

.artist-grid,
.release-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.artist-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.release-card,
.sound-section,
.contact-section {
  background: linear-gradient(180deg, rgba(32, 37, 29, 0.9), rgba(24, 27, 21, 0.92));
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.card {
  padding: 1.25rem;
  min-height: 100%;
}

.card-symbol {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold-soft);
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0.16em;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.card .tagline {
  color: var(--ink);
  font-weight: 700;
}

.release-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.release-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
}

.release-type {
  margin: 0 0 0.35rem;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.link-row a {
  color: var(--gold-soft);
  background: rgba(198, 155, 75, 0.06);
  white-space: nowrap;
}

.soon-note {
  margin: 0;
  color: var(--muted);
}

.sound-section,
.contact-section {
  padding: clamp(2rem, 5vw, 3rem);
}

.contact-section {
  text-align: center;
}

.email-link {
  color: #15130d;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  margin-top: 1rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 880px) {
  .site-header {
    position: static;
    align-items: flex-start;
  }

  .split-section,
  .artist-grid,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .release-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .link-row {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .hero-mark {
    inset: 4rem 2%;
  }
}
