:root {
  --bg: #090909;
  --panel: #121212;
  --panel-light: #1a1a1a;
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --accent: #d6a3ff;
  --accent-strong: #f05a9d;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 40px rgba(0,0,0,0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5,5,5,0.75);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a,
.footer-links a,
.text-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: white;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.72), rgba(0,0,0,0.92)),
    url('assets/images/glass-and-thorns-cover.png') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo-text {
  width: min(700px, 90vw);
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px rgba(0,0,0,0.6));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.75rem;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin: 0.5rem 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.3rem;
  color: var(--muted);
}

.intro {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: white;
  border: none;
}

.release-card,
.song-card,
.timeline article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.large-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 2rem;
}

.cover-art {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  object-fit: cover;
}

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

.song-card {
  padding: 1.5rem;
}

.song-card h3,
.timeline h3 {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  padding: 1.5rem;
}

.timeline time {
  color: var(--accent);
  font-size: 0.9rem;
}

.about {
  text-align: center;
  max-width: 800px;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .large-card,
  .split {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
