:root {
  --bg: #09080a;
  --fg: #f3ece3;
  --muted: #b7aa9a;
  --gold: #d4af6a;
  --teal: #6ec8c0;
  --line: rgba(212, 175, 106, 0.22);
  --ink: #120f0c;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.home {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Syne, system-ui, sans-serif;
  line-height: 1.65;
}
.home a { color: var(--teal); }
.home header.top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.05rem 6vw; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: linear-gradient(180deg, rgba(9,8,10,.72), rgba(9,8,10,0));
}
.home .brand { color: var(--fg); text-decoration: none; font-weight: 800; letter-spacing: 0.16em; }
.home nav a { color: var(--fg); text-decoration: none; opacity: 0.82; margin-left: 0.85rem; }
.home nav a[aria-current="page"], .home nav a:hover { color: var(--gold); opacity: 1; }
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 5.25rem;
  background: url("/assets/hero-studio.jpg") center/cover no-repeat;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,8,10,.2) 0%, rgba(9,8,10,.25) 42%, rgba(9,8,10,.94) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 0 6vw 6.5vh;
  max-width: 38rem;
}
.kicker {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  letter-spacing: 0.28em; font-size: 0.7rem; color: var(--gold); text-transform: uppercase;
}
.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  line-height: 1.18;
  margin: 0.35rem 0 0.7rem;
  max-width: 18ch;
}
.lead { color: var(--muted); font-size: 1.08rem; margin: 0 0 1.25rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.btn {
  display: inline-block; padding: 0.72rem 1.1rem; border-radius: 8px;
  text-decoration: none !important; font-weight: 700; font-size: 0.9rem;
  border: 1px solid var(--line); color: var(--fg);
}
.btn.primary { background: var(--gold); border-color: var(--gold); color: #1a140c; }
.btn.ghost { background: transparent; }
main.sheet { padding: 0 6vw 4rem; max-width: 52rem; margin: 0 auto; }
.home article {
  margin: 2.4rem 0;
  padding: 0.2rem 0 0.4rem;
}
.home article h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 500;
  margin: 0 0 0.7rem;
  color: var(--gold);
}
.home article h3 { font-size: 1.05rem; margin: 1.2rem 0 0.3rem; }
.home article p { color: #ddd4c8; }
.band {
  min-height: 38vh;
  background: url("/assets/coast-radio.jpg") center/cover no-repeat;
  position: relative;
  display: grid; place-items: center; text-align: center; padding: 3rem 6vw;
}
.band::before { content: ""; position: absolute; inset: 0; background: rgba(9,8,10,.5); }
.band > * { position: relative; z-index: 1; }
.essays {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.4rem;
  align-items: stretch;
  margin: 2rem 0 1rem;
}
@media (max-width: 800px) { .essays { grid-template-columns: 1fr; } }
.vinyl {
  min-height: 220px;
  background: url("/assets/vinyl.jpg") center/cover no-repeat;
  border-radius: 14px;
  border: 1px solid var(--line);
}
.read-list { padding-left: 1.15rem; }
.read-list li { margin: 0.4rem 0; }
.listen ol { padding-left: 1.2rem; }
.ad-slot {
  margin: 1.8rem 0;
  min-height: 90px;
  padding: 8px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
  background: rgba(255,255,255,.03);
}
.ad-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: #888; margin-bottom: 6px;
}
footer.site {
  border-top: 1px solid var(--line);
  padding: 1.6rem 6vw 2.6rem;
  font-size: 0.85rem;
  color: var(--muted);
}
footer.site nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 0.7rem; }
.note {
  border-left: 2px solid var(--gold);
  padding: 0.2rem 0 0.2rem 1rem;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
}
