:root {
  --bg: #111827;
  --surface: #1f2937;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --line: #374151;
  --accent: #22d3ee;
  --accent-soft: #67e8f9;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1040px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: color-mix(in oklab, var(--bg) 92%, #000 8%);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.brand-mark { width: 38px; height: 38px; }

.hero {
  padding: 6.5rem 0 4rem;
  text-align: center;
}

.eyebrow {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-size: .78rem;
  margin-bottom: .5rem;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 .7rem; }
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 600;
}
h2 { font-size: clamp(1.5rem, 3.3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

.lead {
  width: min(720px, 94%);
  margin: 0.5rem auto 1.5rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  background: var(--accent);
  color: #06222a;
  border: 1px solid var(--accent);
  padding: .72rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.btn:hover { opacity: .92; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-small { padding: .45rem .85rem; font-size: .9rem; }
.btn-block { display: block; text-align: center; margin: .55rem 0; }
.release-links { margin-top: 1rem; }

.section { padding: 3rem 0; border-top: 1px solid var(--line); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.media-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.9rem;
}

.cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #0f172a;
}

.cover-placeholder {
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.08em;
  color: var(--accent-soft);
  background: radial-gradient(circle at 30% 25%, #1f3a52 0%, #0f172a 45%, #0b1120 100%);
}

.media-card h3 { margin-top: .8rem; }
.media-card p { color: var(--muted); margin-bottom: .6rem; }
.button-row { margin-top: .3rem; }

.quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: .3rem 0;
}

.contact a { color: var(--accent-soft); }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0 2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 5rem; }
}
