:root {
  --bg: #050505;
  --bg-soft: #0c0c0c;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-2: rgba(255, 255, 255, 0.07);
  --text: #f3f3f3;
  --muted: #a9a9a9;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.home-intro {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  color: #d3d3d3;
  text-align: left;
}

.home-intro p {
  margin-bottom: 1.2rem;
}

.home-intro .manifesto {
  text-align: center;
  font-size: 1.05rem;
}

.home-intro .closing {
  text-align: center;
  margin-top: 1.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.035), transparent 22%),
    linear-gradient(180deg, #030303 0%, #080808 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

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

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.site-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.2);
  flex: 0 0 auto;
}

.brand-text {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

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

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.8)),
    url('images/album-bg.jpg') center/cover no-repeat;
  opacity: 0.78;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 10%, rgba(0,0,0,0.35) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  padding: 4rem 1rem;
}

.hero-logo {
  width: min(190px, 42vw);
  margin: 0 auto 1.5rem;
  filter: grayscale(1) brightness(1.22);
}

.kicker {
  color: #c9c9c9;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero p,
.lead {
  max-width: 760px;
  margin: 0 auto 1.4rem;
  color: #d7d7d7;
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.92rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
}

.page-banner {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.82)),
    url('images/album-alt.jpg') center/cover no-repeat;
  opacity: 0.58;
}

.page-banner .container,
.page-section .container,
footer .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.page-banner p {
  max-width: 720px;
  color: #d2d2d2;
  margin: 0;
}

.page-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-title h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.2rem;
}

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

.panel {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin-top: 0;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1rem;
}

.tracklist {
  padding-left: 1.2rem;
  margin: 0;
  color: #d8d8d8;
}

.tracklist li { margin-bottom: 0.4rem; }

.album-image {
  border-radius: 14px;
  margin-bottom: 1rem;
}

.audio-stack {
  display: grid;
  gap: 1rem;
}

.track {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.track strong {
  display: block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
}

audio {
  width: 100%;
  filter: grayscale(1) contrast(1.05);
}

.notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 0.95rem;
}

.link-card,
.contact-card {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  margin-bottom: 0.9rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.link-card:hover,
.contact-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

.link-card span,
.contact-card span {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  font-size: 0.92rem;
}

.placeholder {
  color: #d9d9d9;
}

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

.code-inline {
  font-family: "Courier New", monospace;
  font-size: 0.95em;
}

@media (max-width: 860px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .brand {
    flex-direction: column;
    text-align: center;
  }

  .main-nav {
    justify-content: center;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}
