:root {
  --ink: #f7f8fb;
  --muted: #aeb9c6;
  --paper: #06111d;
  --cream: #101f2d;
  --steel: #1c3448;
  --navy: #071522;
  --gold: #f0b23f;
  --gold-dark: #c98722;
  --line: rgba(240, 178, 63, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(5, 14, 25, 0.82);
  border-bottom: 1px solid rgba(240, 178, 63, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  background: #071522;
  border: 1px solid rgba(240, 178, 63, 0.78);
  border-radius: 50%;
}

.nav-links {
  gap: clamp(16px, 3vw, 34px);
  color: #d7dde6;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--gold);
}

.hero {
  padding-top: 74px;
  background: #02060c;
}

.hero picture {
  display: block;
  padding: 0;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-panel {
  padding: clamp(28px, 5vw, 54px) clamp(20px, 6vw, 84px);
  background: linear-gradient(90deg, #06111d, #10273a);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-content {
  width: min(980px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  margin-bottom: 24px;
  font-size: clamp(58px, 10vw, 132px);
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h2 {
  font-size: clamp(36px, 6vw, 74px);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: #eef3f7;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.contact-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #06111d;
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.intro {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(240, 178, 63, 0.2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro > div {
  min-height: 150px;
  padding: clamp(26px, 5vw, 52px);
  background: #0b1a29;
}

.metric {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.intro h2 {
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
}

.compass-strip > div {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
}

.intro p,
.section-copy p,
.author-copy p,
.feature-copy p,
.contact-band p,
.site-footer {
  color: var(--muted);
}

.section {
  padding: clamp(72px, 11vw, 140px) clamp(20px, 6vw, 84px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 120px;
}

.section-copy h2,
.section-heading h2,
.contact-band h2 {
  margin-bottom: 24px;
}

.section-copy p,
.contact-band p {
  max-width: 650px;
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list article,
.program-card {
  padding: 30px;
  background: linear-gradient(145deg, #0c1e2e, #071522);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.process-list .alignment-card {
  background: linear-gradient(145deg, rgba(240, 178, 63, 0.18), rgba(16, 31, 45, 0.98));
  border-color: rgba(240, 178, 63, 0.42);
}

.process-list span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.author {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 820px);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  background: #08121f;
  border-top: 1px solid var(--line);
}

.author-photo {
  width: 112px;
  aspect-ratio: 1;
  margin: 0;
  justify-self: center;
  overflow: hidden;
  background: #071522;
  border: 2px solid rgba(240, 178, 63, 0.65);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.author-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-copy h2 {
  margin-bottom: 24px;
}

.author-copy p {
  max-width: 760px;
  font-size: 18px;
}

.disclaimer {
  padding: 0 clamp(20px, 6vw, 84px) clamp(72px, 10vw, 120px);
  background: #08121f;
}

.disclaimer-inner {
  max-width: 980px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.disclaimer h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4vw, 52px);
}

.disclaimer p:not(.eyebrow) {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
}

.books {
  background: #071522;
}

.books .section-heading > p {
  max-width: 420px;
  color: var(--muted);
  font-size: 17px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.book-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(145deg, #0c1e2e, #071522);
  border: 1px solid rgba(240, 178, 63, 0.22);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.book-card.featured-book {
  background: linear-gradient(145deg, rgba(240, 178, 63, 0.2), #0c1e2e);
  border-color: rgba(240, 178, 63, 0.5);
}

.book-status {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-card h3 {
  max-width: 18ch;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.book-card p:not(.book-status) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.programs {
  background: #0b1724;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(240px, 0.3fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 860px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.feature img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-copy h3 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
}

.episode-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 6vw, 70px);
}

.episode-card {
  display: grid;
  min-height: 128px;
  align-content: space-between;
  padding: 22px;
  background: linear-gradient(145deg, #0c1e2e, #071522);
  border: 1px solid rgba(240, 178, 63, 0.2);
  border-radius: 8px;
}

.episode-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.episode-card h3 {
  margin: 26px 0 0;
  font-size: 19px;
}

.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.episode-actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #06111d;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.episode-actions a.secondary-link {
  color: var(--ink);
  background: transparent;
  border-color: rgba(240, 178, 63, 0.44);
}

.episode-actions a:hover {
  transform: translateY(-1px);
}

.episode-card.start-here {
  background: linear-gradient(145deg, rgba(240, 178, 63, 0.2), #0c1e2e);
  border-color: rgba(240, 178, 63, 0.48);
}

.contact-band {
  justify-content: space-between;
  color: var(--ink);
  background: #030912;
}

.contact-band > div:first-child {
  flex: 1 1 420px;
}

.contact-band .eyebrow,
.contact-band p {
  color: #f0c17f;
}

.contact-band h2 {
  color: var(--ink);
}

.contact-band .button.primary {
  color: #06111d;
  background: var(--gold);
}

.social-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-links a,
.footer-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid rgba(240, 178, 63, 0.32);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.social-links a:hover,
.footer-links a:hover {
  color: #06111d;
  background: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 84px);
  background: #02060c;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer .music-note {
  margin-top: 6px;
  color: #8f9cac;
  font-size: 13px;
}

.site-footer .presented-note {
  margin-top: 6px;
  color: #6f7b89;
  font-size: 12px;
}

.site-footer .music-note a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.site-footer .music-note a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 84px);
  }

  .intro,
  .split,
  .author,
  .section-heading,
  .feature,
  .book-grid,
  .episode-list {
    grid-template-columns: 1fr;
  }

  .author-photo {
    width: 92px;
    justify-self: start;
  }

  .section-copy {
    position: static;
  }

  .intro > div,
  .program-card {
    min-height: auto;
  }

  .contact-band {
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 100px;
  }


  .hero-actions,
  .hero-actions .button,
  .contact-band .button,
  .social-links,
  .social-links a,
  .episode-actions,
  .episode-actions a {
    width: 100%;
  }

  .button {
    padding-inline: 16px;
  }
}
