:root {
  --ink: #14090c;
  --leather: #2a1218;
  --leather-deep: #12080a;
  --panel: #261014;
  --gold: #c9a56a;
  --gold-hi: #e8d5a3;
  --gold-lo: #8a6a32;
  --cream: #f3ead6;
  --muted: #c4b08a;
  --dim: #8a7d68;
  --burgundy: #6b1d28;
  --line: color-mix(in oklab, #c9a56a 42%, transparent);
  --line-strong: color-mix(in oklab, #c9a56a 72%, transparent);
  --font-display: "Cinzel", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --font-sans: "Crimson Pro", Palatino, Georgia, serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  background: var(--ink);
  color: var(--cream);
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gold-hi);
  text-wrap: balance;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin: 0.75rem 0 0; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0.6rem 0 0; }
h3 { font-size: 1.15rem; margin: 0; }

p { text-wrap: pretty; }

::selection { background: var(--gold); color: var(--ink); }

button:not(:disabled), [role="button"]:not(:disabled) { cursor: pointer; }

.wrap { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }
.wrap.narrow { width: min(48rem, calc(100% - 2rem)); }
.wrap.medium { width: min(56rem, calc(100% - 2rem)); }

.kicker {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.btn-gold, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.25rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: color 150ms var(--ease), background-color 150ms var(--ease), border-color 150ms var(--ease), transform 150ms var(--ease);
}

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-hi); border-color: var(--gold-hi); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); }
.btn-gold:active, .btn-ghost:active { transform: scale(0.96); }

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.text-link:hover { color: var(--gold-hi); }

.rule { display: flex; align-items: center; gap: 0.75rem; max-width: 10rem; margin: 2rem 0 0; }
.rule .line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-lo), var(--gold-hi), var(--gold-lo), transparent);
}
.rule .diamond {
  width: 0.4rem; height: 0.4rem; background: var(--gold-hi); transform: rotate(45deg); flex-shrink: 0;
}
.center-rule { margin-inline: auto; margin-top: 2.5rem; margin-bottom: 1.5rem; }

.muted { color: var(--muted); max-width: 36rem; }
.dim { color: var(--dim); font-size: 0.95rem; }
.gold { color: var(--gold); }
.lede { font-size: 1.15rem; color: color-mix(in oklab, var(--cream) 90%, transparent); max-width: 36rem; }
.italic-gold { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--gold); letter-spacing: 0.04em; }
.italic-gold.large { font-size: 1.6rem; }

.heptagram { width: 2rem; height: 2rem; color: var(--gold-hi); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--ink) 92%, transparent);
  backdrop-filter: blur(12px);
}
.bar {
  width: min(72rem, calc(100% - 2rem));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 4.25rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--gold-hi); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-kicker { font-family: var(--font-display); font-size: 0.58rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.brand-name { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-hi); }

.nav-desktop { display: none; align-items: center; gap: 1.75rem; }
.nav-desktop a, .nav-mobile a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-desktop a:hover, .nav-mobile a:hover, .nav-desktop a.is-active { color: var(--gold-hi); }
.header-cta { display: none; }
.menu-btn {
  width: 2.75rem; height: 2.75rem;
  display: grid; place-content: center; gap: 5px;
  background: none; border: 0; color: var(--gold);
}
.menu-btn span { display: block; width: 1.15rem; height: 1.5px; background: currentColor; }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.nav-mobile a { display: flex; align-items: center; min-height: 3rem; }
.site-header.is-open .nav-mobile { display: flex; }

@media (min-width: 860px) {
  .nav-desktop, .header-cta { display: flex; }
  .menu-btn, .nav-mobile { display: none !important; }
}

.leather-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.leather-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.leather-shade {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgb(20 9 12 / 0.28) 0%, rgb(20 9 12 / 0.55) 55%, rgb(20 9 12 / 0.78) 100%);
}
.leather-inner { position: relative; z-index: 2; padding: 0 1.5rem; }
@media (min-width: 768px) { .leather-inner { padding: 0 2.5rem; } }

.page-intro { max-width: 40rem; margin: 0 auto; padding: 3.5rem 1rem; text-align: center; }
.page-intro p:not(.kicker) { margin: 1rem auto 0; font-size: 1.15rem; color: var(--muted); }
.page-intro .rule { margin-inline: auto; }
.page-intro.slim { padding: 2rem 1rem; }

.hero-grid {
  width: min(72rem, 100%);
  margin-inline: auto;
  display: grid; gap: 2.5rem; align-items: center;
  padding: 3.5rem 0;
}
.display { font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.08; }
.hero-photo img {
  width: 100%;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgb(0 0 0 / 0.55);
  outline: 1px solid rgb(255 255 255 / 0.1);
  outline-offset: -1px;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1fr 1fr; padding: 5rem 0; }
}

.section { padding: 4rem 0; }
.band { padding: 3.5rem 0; border-block: 1px solid var(--line); }
.band.leather { background: var(--leather); }
.row-gap { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.mt { margin-top: 2rem; }
.center { text-align: center; }
.center .heptagram { margin-inline: auto; }
.center .muted { margin-inline: auto; }
.listen-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.split-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 0.75rem; }

.hosts { display: grid; gap: 2.5rem; align-items: center; }
.host-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.host-photos img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  outline: 1px solid rgb(255 255 255 / 0.1); outline-offset: -1px;
}
.host-photos figcaption {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (min-width: 860px) { .hosts { grid-template-columns: 1fr 1fr; } }

.guest-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 560px) { .guest-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .guest-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) { .guest-grid.preview { grid-template-columns: repeat(4, 1fr); } }

.guest-card {
  display: block;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--panel) 40%, transparent);
  color: inherit;
  transition: border-color 150ms var(--ease);
}
.guest-card:hover { border-color: var(--gold); color: inherit; }
.guest-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; }
.guest-card .pad { padding: 1rem; }
.guest-card h3 { color: var(--gold-hi); font-size: 1.1rem; }
.guest-card p { margin: 0.5rem 0 0; font-size: 0.95rem; color: color-mix(in oklab, var(--cream) 90%, transparent); }
.guest-card .meta {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.spotlight-brief {
  display: grid; gap: 1.25rem;
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--panel) 50%, transparent);
  padding: 1.25rem;
  color: inherit;
  transition: border-color 150ms var(--ease);
}
.spotlight-brief:hover { border-color: var(--gold); color: inherit; }
.spotlight-brief img {
  width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top;
  outline: 1px solid rgb(255 255 255 / 0.1); outline-offset: -1px;
}
.spotlight-brief h3 { margin-top: 0.5rem; font-size: 1.35rem; }
.spotlight-brief .gold { margin: 0.25rem 0 0; font-size: 0.95rem; }
.spotlight-brief p { margin: 0.75rem 0 0; }
@media (min-width: 700px) { .spotlight-brief { grid-template-columns: 8rem 1fr; } }

.spotlight-full h1, .spotlight-full h2 { margin-top: 0.75rem; }
.spotlight-grid { display: grid; gap: 2rem; align-items: start; margin-top: 2rem; }
.spotlight-grid > img {
  width: 100%; max-width: 16rem; aspect-ratio: 3/4; object-fit: cover; object-position: top;
  outline: 1px solid rgb(255 255 255 / 0.1); outline-offset: -1px;
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--gold-hi);
  margin: 0 0 1.5rem;
}
.spotlight-full p { font-size: 1.12rem; color: color-mix(in oklab, var(--cream) 90%, transparent); }
.share-hint { margin-top: 1.5rem; font-size: 0.95rem; color: var(--dim); }
.path { font-size: 0.9rem; color: var(--muted); }
@media (min-width: 800px) { .spotlight-grid { grid-template-columns: 16rem 1fr; } }

.stack { display: flex; flex-direction: column; gap: 1.25rem; }

.apply-form, .thanks {
  border: 1px solid var(--line);
  background: color-mix(in oklab, var(--panel) 55%, transparent);
  padding: 1.25rem;
}
@media (min-width: 700px) { .apply-form, .thanks { padding: 2rem; } }
.thanks { text-align: center; }
.thanks .listen-row { justify-content: center; }

.form-grid { display: grid; gap: 1.25rem; margin: 1rem 0 0; }
@media (min-width: 700px) { .form-grid { grid-template-columns: 1fr 1fr; } .span-2 { grid-column: 1 / -1; } }

.field { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 1rem; }
.field-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.field-hint { font-size: 0.88rem; color: var(--dim); line-height: 1.4; }
.field-error { font-size: 0.88rem; color: color-mix(in oklab, #e8a0a4 80%, var(--cream)); }
.control {
  width: 100%; min-height: 3rem; padding: 0.7rem 0.9rem;
  background: color-mix(in oklab, var(--panel) 80%, transparent);
  color: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 1.02rem;
  line-height: 1.4;
  outline: none;
  border-radius: 0;
}
textarea.control { min-height: 7.5rem; resize: vertical; }
.control::placeholder { color: var(--dim); }
.control:focus { border-color: var(--gold); box-shadow: 0 0 0 1px color-mix(in oklab, var(--gold) 45%, transparent); }
select.control {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { border-top: 1px solid var(--line); background: var(--leather-deep); padding: 3rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-grid h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: none;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0.75rem 0 0; }
.footer-grid li { margin: 0.4rem 0; }
.footer-grid a { color: var(--muted); }
.footer-grid a:hover { color: var(--gold-hi); }
.footer-bottom { margin-top: 2rem; }
.footer-bottom .rule { max-width: none; margin: 0 0 1.5rem; }
.footer-bottom p { color: var(--dim); font-size: 0.9rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

@media (prefers-reduced-motion: reduce) {
  .btn-gold, .btn-ghost, .text-link, .control { transition: none; }
}
