:root {
  --bg: #050505;
  --bg-soft: #10100f;
  --text: #f7f1e6;
  --muted: #c9bfae;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --line: rgba(255,255,255,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.45), rgba(0,0,0,0.72));
}
.topbar {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 2;
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--muted);
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  margin-left: clamp(24px, 8vw, 120px);
  padding: 120px 0;
}
.eyebrow {
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  margin: 0.15em 0;
}
.subtitle {
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  max-width: 680px;
  margin: 0;
}
.subtle { color: var(--muted); margin-top: 12px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.button.primary {
  background: var(--gold);
  color: #080808;
  border-color: var(--gold);
}

main section {
  padding: clamp(72px, 10vw, 140px) clamp(22px, 7vw, 96px);
}
.statement {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1.15;
  color: var(--gold);
}
.statement p { margin: 0.15em 0; }
.split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background: var(--bg-soft);
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 20px;
}
h3 { margin-top: 0; color: var(--gold); }
.card {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,0.035);
}
.card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.listen { text-align: center; }
.listen p { color: var(--muted); max-width: 680px; margin: 0 auto 30px; }
.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}
.link-grid a {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  background: rgba(255,255,255,0.035);
}
.link-grid a:hover { border-color: var(--gold); color: var(--gold); }
.abstract-band {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}
.glow {
  position: absolute;
  width: 72vw;
  height: 72vw;
  max-width: 850px;
  max-height: 850px;
  background: radial-gradient(circle, var(--gold-soft), transparent 62%);
  filter: blur(20px);
}
.abstract-band p {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  max-width: 900px;
}
.transparency {
  background: var(--bg-soft);
  max-width: none;
}
.transparency p {
  max-width: 860px;
  color: var(--muted);
}
.glyphs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.glyphs span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--gold);
  font-size: 0.9rem;
}
footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 28px clamp(22px, 7vw, 96px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
footer a { text-decoration: none; }
footer a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .topbar { left: 22px; right: 22px; justify-content: space-between; gap: 10px; }
  .hero-content { margin-left: 24px; padding-top: 140px; }
  .split { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
}
