:root {
  --bg: #0a0a0a;
  --fg: #f3f1ea;
  --mute: #8a8680;
  --gold: #b7a078;
  --line: #2a2a2a;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--fg); }
body {
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  padding: 36px 48px 80px;
  max-width: 920px;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--fg); }
.top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}
.mark {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  padding-top: 8px;
}
.logo {
  width: 120px;
  height: auto;
  display: block;
}
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.rule {
  width: 48px;
  border: 0;
  border-top: 2px solid var(--gold);
  margin: 0 0 36px;
}
.lead { max-width: 38em; margin-bottom: 1.4em; }
.de {
  max-width: 38em;
  color: var(--mute);
  font-style: italic;
  font-size: 15px;
  margin-bottom: 48px;
}
.roster {
  list-style: none;
  border-top: 1px solid var(--line);
  margin-bottom: 56px;
}
.roster li {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}
.roster a { color: var(--fg); }
.roster a:hover { color: var(--gold); }
.roster span {
  font-family: Inter, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--mute);
  width: 2em;
}
.listen {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 48px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact p:first-child {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.contact a { font-size: 16px; letter-spacing: 0.04em; }

@media (max-width: 640px) {
  body { padding: 24px 20px 64px; }
  .logo { width: 88px; }
  .roster li { font-size: 22px; }
}
