:root {
  --bg: #060d16;
  --bg-2: #0b1521;
  --panel: rgba(10, 18, 29, 0.82);
  --panel-soft: rgba(14, 25, 38, 0.76);
  --text: #efe8dc;
  --muted: #c6bcab;
  --gold: #d6c0a0;
  --line: rgba(214, 192, 160, 0.20);
  --max: 1180px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top, rgba(214, 192, 160, 0.10), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, #08111b 45%, #040910 100%);
  color: var(--text);
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover { color: #f2dfc2; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

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

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.35rem;
}

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

.nav-links a {
  color: var(--muted);
  font-size: 0.98rem;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 9, 16, 0.90) 0%, rgba(4, 9, 16, 0.64) 36%, rgba(4, 9, 16, 0.78) 100%),
    linear-gradient(180deg, rgba(4, 9, 16, 0.05), rgba(4, 9, 16, 0.65)),
    url("assets/symphony-of-ascent-cover.jpg") center center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin-bottom: 1rem;
}

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

h3 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.button {
  background: linear-gradient(180deg, #dcc5a2, #b79a71);
  color: #0a1119;
  font-weight: 600;
}

.button-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--line);
}

.button-ghost {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(7, 13, 22, 0.45);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.hero-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-portrait {
  justify-self: end;
  width: min(100%, 440px);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section {
  padding: 4.5rem 0;
}

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

.card,
.project-card,
.release-card,
.bio-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.card,
.release-card,
.bio-card {
  padding: 2rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.6rem;
  align-items: stretch;
}

.bio-image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
}

.meta {
  color: var(--gold);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-bottom: 0.8rem;
}

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

.project-card {
  padding: 1.8rem;
}

.project-card p,
.card p,
.release-card p,
.bio-card p {
  color: var(--muted);
}

.footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

.small {
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-2,
  .projects-grid,
  .bio-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 4rem 0 3rem;
  }

  .hero-portrait {
    justify-self: start;
    width: min(100%, 360px);
  }
}