/* Base */
:root {
  --bg: #080808;
  --bg-sub: #0f0f0f;
  --bg-panel: rgba(15, 15, 15, 0.85);
  --crimson: #7a1f1f;
  --crimson-light: #9b2a2a;
  --text: #e8e0d5;
  --text-secondary: #b0a595;
  --text-muted: #9e9585;
  --text-dim: #6a6255;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

.hero-atmosphere {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(122, 31, 31, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(122, 31, 31, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--crimson);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 400;
}

.hero-cta {
  margin-top: 32px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--crimson-light);
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.cta-btn:hover {
  background: var(--crimson-light);
  color: var(--bg);
}

/* Sections */
.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
  margin-bottom: 56px;
}

/* Sound */
.sound {
  padding: 120px 48px;
  background: var(--bg-sub);
}

.sound-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}

.sound-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--text-dim);
}

.sound-item {
  background: var(--bg-sub);
  padding: 48px;
  transition: background 0.3s;
}

.sound-item:hover {
  background: rgba(20, 18, 18, 0.95);
}

.sound-item-num {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--crimson-light);
  margin-bottom: 20px;
}

.sound-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.sound-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Manifesto */
.manifesto {
  padding: 140px 48px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-panel);
  padding: 64px 56px;
  border: 1px solid rgba(74, 69, 64, 0.35);
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 56px;
  padding-left: 32px;
  border-left: 2px solid var(--crimson);
}

.manifesto-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* Catalog */
.catalog {
  padding: 120px 48px;
  background: var(--bg-sub);
}

.catalog-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.catalog-artists {
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--text-dim);
  margin-bottom: 40px;
}

.artist-art {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--crimson) 0%, #1a0808 100%);
  flex-shrink: 0;
}

.artist-info {}

.artist-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.artist-genre {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.artist-status {
  font-size: 11px;
  color: var(--crimson-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artist-card-link {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--text-dim);
  margin-bottom: 40px;
  text-decoration: none;
  transition: background 0.2s;
  margin-left: -0;
}

.artist-card-link:hover { background: rgba(122, 31, 31, 0.04); }

.artist-card-link:hover .artist-name { color: #c4a882; }

.artist-card-link:hover .artist-status { color: var(--crimson-light); }

.catalog-note {
  padding-top: 16px;
}

.catalog-note p {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
}

/* Closing */
.closing {
  padding: 160px 48px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(122, 31, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
}

/* Footer */
.footer {
  padding: 48px;
  background: var(--bg);
  border-top: 1px solid var(--text-dim);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.footer-sep {
  color: var(--text-dim);
}

.footer-locale {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer-meta p {
  font-size: 11px;
  color: var(--text-dim);
}

.footer-distro {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text); }

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { font-size: 64px; }
  .sound { padding: 80px 24px; }
  .sound-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 80px 24px; }
  .catalog { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { flex-direction: column; gap: 8px; }
  .artist-card { flex-direction: column; align-items: flex-start; }
}