:root {
  --navy: #1a2744;
  --deep: #0e1628;
  --red: #b22234;
  --cream: #f7f1e3;
  --gold: #c9a227;
  --warm: #fffaf3;
  --ink: #2a2433;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
main { flex: 1; }

header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 22, 40, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
}
nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #fffaf3;
  font-family: "Playfair Display", serif;
  font-weight: 700; font-size: 1.05rem;
}
.brand img {
  width: 42px; height: 42px; object-fit: cover;
  border-radius: 50%; border: 1px solid var(--gold);
}
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  color: #e8e0d0; text-decoration: none;
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: flex-end;
  background: #0e1628 center/cover no-repeat;
  color: white;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,40,.12) 15%, rgba(14,22,40,.78) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 0 0 64px; width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.pill {
  display: inline-block; background: var(--red); color: #fff;
  font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; margin-bottom: 14px;
}
.hero h1 {
  font-family: "Playfair Display", serif; font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5rem); line-height: 0.95;
  text-shadow: 0 4px 24px rgba(0,0,0,.45);
}
.hero h1 em { font-style: italic; color: #ffe9b0; }
.hero-sub { margin-top: 16px; max-width: 560px; color: #f3ead8; font-size: 1.12rem; }
.hero-meta { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px 26px; font-weight: 700; }
.btn {
  display: inline-block; margin-top: 26px; background: var(--red); color: #fff;
  text-decoration: none; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 13px 22px; border: 2px solid transparent;
}
.btn:hover { background: #8e1a28; }
.btn-ghost { background: transparent; border-color: #ffe9b0; color: #ffe9b0; margin-left: 8px; }
.btn-ghost:hover { background: rgba(255,233,176,.12); }

section { padding: 72px 0; }
h1.page, h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 12px; color: var(--navy);
}
.lede { font-size: 1.12rem; max-width: 680px; color: #3b3348; }
.page-hero {
  background: var(--deep); color: var(--cream); padding: 56px 0 40px;
  border-bottom: 3px solid var(--red);
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: #d7cbb3; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 36px; }
.card {
  background: #fff; border: 1px solid #e6dcc8; border-top: 5px solid var(--red);
  padding: 26px 22px; box-shadow: 0 8px 24px rgba(26,39,68,.06);
}
.card h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--navy); }
.handle { color: var(--red); font-weight: 700; font-size: .92rem; margin: 4px 0 12px; }
.handle a { text-decoration: none; }
.handle a:hover { text-decoration: underline; }

.band { background: var(--deep); color: var(--cream); }
.band h2 { color: #fff; }
.band .lede { color: #d7cbb3; }
.time-card { border: 1px solid rgba(201,162,39,.35); padding: 22px; background: rgba(255,255,255,.03); }
.time-card strong { display: block; color: var(--gold); font-size: 1.4rem; font-family: "Playfair Display", serif; }

.links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.links a {
  background: var(--navy); color: #fff; text-decoration: none;
  padding: 11px 16px; font-weight: 700; font-size: .88rem; letter-spacing: .03em;
}
.links a:hover { background: var(--red); }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; }
.split img { width: 100%; height: 420px; object-fit: cover; border: 1px solid #e6dcc8; }
.episode {
  background: #fff; border: 1px solid #e6dcc8; padding: 22px;
  margin-top: 18px;
}
.episode.featured {
  border-left: 6px solid var(--red);
  background: #fffdf8;
}
.episode small { color: var(--red); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.archive-title { margin-top: 48px; }
.muted { color: #5c5566; margin-top: 10px; }
.mail-block {
  background: var(--warm);
  border: 1px solid #e6dcc8;
  padding: 16px 18px;
  margin-top: 18px;
}
.mail-block h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 16px 0 8px;
}
.mail-block h3:first-child { margin-top: 0; }
.mail-block address {
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  white-space: pre-line;
}
.mail-block ul { margin: 8px 0 0 18px; }

footer {
  background: var(--deep); color: #c9bda6; padding: 34px 0 26px;
  border-top: 3px solid var(--red); font-size: .92rem; margin-top: auto;
}
footer .brand { margin-bottom: 8px; }
footer a { color: #ffe9b0; text-decoration: none; }

form { display: grid; gap: 12px; max-width: 520px; margin-top: 24px; }
label { font-weight: 700; font-size: .9rem; }
input, textarea {
  font: inherit; padding: 12px 14px; border: 1px solid #d7ccb6; background: #fff;
}
textarea { min-height: 140px; resize: vertical; }

@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
  .split img { height: 280px; }
  .nav-links { display: none; }
  .btn-ghost { margin-left: 0; margin-top: 10px; }
}
