@font-face {
  font-family: "Integral CF";
  src: url("fonts/integralcf-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Integral CF ExtraBold";
  src: url("fonts/integralcf-extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Integral CF";
  src: url("fonts/integralcf-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Integral CF";
  src: url("fonts/integralcf-extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Integral CF";
  src: url("fonts/integralcf-heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #170029;
  --purple-dark: #26004f;
  --purple: #6500c9;
  --magenta: #f100d7;
  --glow: #a66bff;
  --paper: #ffffff;
  --paper-soft: #f6f3f8;
  --line: #ded8e3;
  --muted: #6d6472;
  --display: "Integral CF ExtraBold", "Integral CF", "Arial Black", sans-serif;
  --ui: "Integral CF ExtraBold", "Integral CF", Arial, Helvetica, sans-serif;
  --body: Arial, Helvetica, sans-serif;
  --page: min(1380px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-synthesis: none;
  line-height: 1.45;
}

button,
input {
  font: inherit;
}

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

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

button,
input {
  border: 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;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 14px max(32px, calc((100vw - 1380px) / 2));
  border-bottom: 1px solid rgba(38, 0, 79, 0.12);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--purple-dark);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.site-nav a,
.header-cta,
.menu-toggle {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--magenta);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  padding: 14px 20px;
  color: white;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  background: none;
}

.hero {
  position: relative;
  min-height: min(850px, calc(100vh - 82px));
  overflow: hidden;
  background: linear-gradient(120deg, #22003f 0%, #6900a8 50%, #f100d7 100%);
}

.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(255,255,255,.2), transparent 24%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(580px, 43vw);
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 0 80px max(32px, calc((100vw - 1380px) / 2));
  color: white;
  background: linear-gradient(90deg, rgba(24, 0, 48, .92) 0%, rgba(34, 0, 65, .72) 68%, transparent 100%);
}

.hero-wordmark {
  width: min(490px, 38vw);
  margin: 24px 0 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.hero-lead {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.hero-earth {
  position: absolute;
  z-index: 1;
  top: -18%;
  right: -4%;
  width: 74%;
  height: 112%;
  object-fit: contain;
  opacity: .32;
  filter: saturate(1.1);
}

.hero-presenters {
  position: absolute;
  z-index: 3;
  right: max(-70px, calc((100vw - 1500px) / 2));
  bottom: 0;
  width: min(900px, 62vw);
  height: 96%;
  object-fit: contain;
  object-position: right bottom;
}

.eyebrow {
  margin: 0;
  color: var(--purple);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.eyebrow-light {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid transparent;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  color: var(--ink);
  background: white;
}

.button-light:hover,
.button-light:focus-visible {
  color: white;
  background: var(--ink);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--purple);
}

.button-outline-light {
  color: white;
  border-color: rgba(255,255,255,.72);
  background: transparent;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  color: var(--ink);
  background: white;
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid currentColor;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.text-link-light {
  color: white;
}

.section {
  width: var(--page);
  margin-inline: auto;
  padding: 96px 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-kicker > span {
  color: var(--muted);
  font-family: var(--ui);
  font-size: 11px;
}

.about-grid,
.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .8fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: start;
}

.about h2,
.section-heading-row h2,
.listen h2,
.live h2,
.newsletter h2,
.social h2 {
  margin: 0;
  font-family: "Integral CF", var(--display);
  font-size: clamp(38px, 4.7vw, 70px);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0;
}

.about h2 span,
.section-heading-row h2 span,
.social h2 span {
  color: var(--purple);
}

.listen h2 span,
.live h2 span,
.newsletter h2 span {
  color: rgba(255,255,255,.72);
}

.about-copy {
  padding-top: 10px;
  color: #423947;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

.about-copy p:first-child {
  margin-top: 0;
}

.people-panel {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  min-height: 620px;
  margin-top: 90px;
  background: var(--paper-soft);
}

.people-image-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--purple-dark), var(--magenta));
}

.people-image-wrap::before {
  position: absolute;
  content: "";
  inset: 0;
  background: url("assets/zemekoule.png") center / 110% auto no-repeat;
  opacity: .22;
}

.people-image-wrap img {
  position: absolute;
  z-index: 2;
  inset: 28px 0 0;
  width: 100%;
  height: calc(100% - 28px);
  object-fit: contain;
  object-position: center bottom;
}

.people-list {
  display: grid;
  align-content: center;
  padding: 50px clamp(32px, 6vw, 90px);
}

.people-list article {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.people-list article:last-child {
  border-bottom: 0;
}

.people-list article > span {
  color: var(--magenta);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
}

.people-list h3 {
  grid-column: 2;
  margin: 0;
  font-family: "Integral CF", var(--display);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.people-list p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.person-link {
  grid-column: 2;
  width: fit-content;
  margin-top: 16px;
  padding: 9px 12px;
  border: 1px solid currentColor;
  color: var(--purple);
  font-family: "Integral CF", Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .07em;
  transition: color 180ms ease, background 180ms ease;
}

.person-link:hover,
.person-link:focus-visible {
  color: white;
  background: var(--purple);
}

.listen {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(60px, 9vw, 150px);
  padding: 96px max(32px, calc((100vw - 1380px) / 2));
  color: white;
  background: var(--purple-dark);
}

.listen h2 {
  margin-top: 22px;
  font-size: clamp(38px, 4.4vw, 64px);
}

.platforms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.platforms a {
  position: relative;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px;
  border: 1px solid rgba(255,255,255,.3);
  font-family: "Integral CF", Arial, Helvetica, sans-serif;
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.platforms a::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.platforms a:hover,
.platforms a:focus-visible {
  border-color: white;
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
}

.platforms a:hover::after,
.platforms a:focus-visible::after {
  transform: scaleX(1);
}

.platforms .platform-spotify::after {
  background: #1ed760;
}

.platforms .platform-apple::after {
  background: #a778e8;
}

.platforms span {
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.platforms small {
  margin-bottom: 10px;
  color: rgba(255,255,255,.7);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
}

.platforms b {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 19px;
  font-weight: 500;
}

.platforms .platform-featured {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
}

.platforms .platform-featured::after {
  background: white;
}

.section-heading-row > p,
.books-heading > p {
  margin: 0;
  padding-top: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.herohero-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 150px;
  margin-top: 66px;
  padding: 32px clamp(28px, 5vw, 68px);
  color: white;
  background: linear-gradient(110deg, var(--purple-dark), var(--purple) 54%, var(--magenta));
  transition: transform 180ms ease;
}

.herohero-promo:hover,
.herohero-promo:focus-visible {
  transform: translateY(-3px);
}

.herohero-promo span {
  display: grid;
  gap: 8px;
}

.herohero-promo small {
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.herohero-promo strong {
  font-family: "Integral CF", var(--display);
  font-size: clamp(21px, 2.7vw, 39px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: 0;
}

.herohero-promo b {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 54px);
}

.episode-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 18px;
  background: var(--paper-soft);
}

.episode-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  outline: 0;
  color: var(--ink);
  background: white;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.episode-search input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 2px rgba(101,0,201,.14);
}

.episode-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.episode-filters button {
  min-height: 40px;
  padding: 0 13px;
  color: var(--ink);
  background: white;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
}

.episode-filters button:hover,
.episode-filters button:focus-visible,
.episode-filters button.is-active {
  color: white;
  background: var(--purple);
}

#episode-count {
  min-width: 76px;
  margin: 0;
  color: var(--muted);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: right;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 24px;
  margin-top: 68px;
}

.episode-card {
  min-width: 0;
}

.episode-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: var(--purple-dark);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.episode-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 180ms ease;
}

.episode-card:hover .episode-media,
.episode-card:focus-visible .episode-media {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(36, 0, 62, .16);
}

.episode-card:hover .episode-media img,
.episode-card:focus-visible .episode-media img {
  filter: brightness(.9);
}

.episode-card:hover .episode-play,
.episode-card:focus-visible .episode-play {
  color: white;
  background: var(--magenta);
}

.episode-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  width: 56px;
  height: 56px;
  padding-left: 4px;
  border-radius: 50%;
  color: var(--ink);
  background: white;
  font-size: 18px;
}

.episode-duration {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(23,0,41,.8);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
}

.episode-copy {
  padding: 22px 2px 0;
}

.episode-date,
.episode-link,
.book-state {
  margin: 0;
  color: var(--purple);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.episode-copy h3 {
  min-height: 2.4em;
  margin: 12px 0 20px;
  font-family: "Integral CF", var(--display);
  font-size: clamp(17px, 1.45vw, 23px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.episode-link {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
}

.episodes-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 68px;
}

.live {
  width: 100%;
  padding-inline: max(32px, calc((100vw - 1380px) / 2));
  color: white;
  background: var(--purple-dark);
}

.section-kicker-light {
  border-color: rgba(255,255,255,.25);
}

.section-kicker-light > span {
  color: rgba(255,255,255,.6);
}

.live-card {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 560px;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
}

.live-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #1d0038;
}

.live-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, transparent 75%, rgba(101,0,201,.18));
}

.live-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.live-badge {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  color: var(--ink);
  background: white;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
}

.live-copy {
  align-self: center;
  padding: clamp(42px, 6vw, 86px);
}

.live-copy h2 {
  margin: 22px 0 30px;
  font-size: clamp(36px, 4vw, 58px);
}

.live-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0 0 36px;
  font-size: 17px;
}

.live-copy .live-place {
  margin-bottom: 16px;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
}

.live-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.books-heading {
  margin-bottom: 70px;
}

.book-collection {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.book-collection-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 44px;
}

.book-collection-heading .eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
}

.book-collection-heading h3 {
  margin: 0;
  font-family: "Integral CF", var(--display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.book-collection-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.book-collection-heading > p a,
.books-heading > p a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

.book-row-title {
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--purple);
  font-family: "Integral CF", var(--display);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .05em;
}

.book-row-title-upcoming {
  margin-top: 76px;
  color: var(--magenta);
}

.book-cover {
  position: relative;
  aspect-ratio: 2 / 3;
  display: grid;
  place-content: center;
  overflow: hidden;
  padding: 10%;
  background: var(--paper-soft);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 17px rgba(26,0,45,.16));
  transition: transform 250ms ease;
}

.book-card-small-cover .book-cover img {
  transform: scale(.8);
}

.book-card:hover .book-cover img {
  transform: translateY(-5px);
}

.book-card-small-cover:hover .book-cover img {
  transform: translateY(-5px) scale(.8);
}

.book-cover > span {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  color: white;
  background: var(--magenta);
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .06em;
}

.book-state {
  margin-top: 20px;
}

.book-card-upcoming .book-state {
  color: var(--magenta);
}

.book-card h3 {
  margin: 9px 0 0;
  font-family: "Integral CF", var(--display);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.book-action {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--purple);
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .07em;
}

.book-card-upcoming .book-action {
  color: var(--magenta);
}

.shop-link {
  margin-top: 44px;
}

.book-recommendations {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(60px, 10vw, 150px);
  overflow: hidden;
  margin-top: 100px;
  padding: clamp(44px, 6vw, 82px);
  color: white;
  background:
    linear-gradient(115deg, rgba(38,0,79,.98) 0%, rgba(101,0,201,.96) 62%, rgba(241,0,215,.9) 100%),
    url("assets/zemekoule.png") right -160px bottom -230px / 620px auto no-repeat;
}

.book-recommendations-copy {
  position: relative;
  z-index: 1;
}

.book-recommendations-copy h3 {
  margin: 20px 0 28px;
  font-family: "Integral CF", var(--display);
  font-size: clamp(38px, 4.7vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.book-recommendations-copy h3 span {
  color: #d4bbf2;
}

.book-recommendations-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.6;
}

.book-recommendations-topics {
  position: relative;
  z-index: 1;
  align-self: center;
  border-top: 1px solid rgba(255,255,255,.35);
}

.book-recommendations-topics > p,
.book-recommendations-topics small {
  display: block;
  margin: 18px 0;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
}

.book-recommendations-topics span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 66px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.book-recommendations-topics span i {
  color: rgba(255,255,255,.58);
  font-family: var(--ui);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
}

.book-recommendations-topics span b {
  font-family: "Integral CF", var(--display);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
}

.book-recommendations-topics small {
  margin-bottom: 0;
  color: rgba(255,255,255,.64);
}

.newsletter {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: clamp(60px, 10vw, 170px);
  overflow: hidden;
  padding-inline: max(32px, calc((100vw - 1380px) / 2));
  color: white;
  background: linear-gradient(120deg, var(--purple-dark), var(--purple) 58%, var(--magenta));
}

.newsletter-copy,
.newsletter-form {
  position: relative;
  z-index: 2;
}

.newsletter h2 {
  margin: 24px 0 30px;
  font-size: clamp(38px, 4.3vw, 62px);
}

.newsletter-copy > p:last-child {
  max-width: 600px;
  margin: 0;
  font-size: 17px;
}

.newsletter-form {
  align-self: center;
}

.newsletter-form label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.newsletter-control {
  display: flex;
  min-height: 68px;
  background: white;
}

.newsletter-control input {
  min-width: 0;
  flex: 1;
  padding: 0 22px;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.newsletter-control input:focus {
  box-shadow: inset 0 0 0 3px var(--glow);
}

.newsletter-control button {
  padding: 0 24px;
  color: white;
  background: var(--ink);
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
}

.newsletter-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.5;
}

.newsletter-consent {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 16px 0 0 !important;
  color: rgba(255,255,255,.84);
  font-family: var(--body) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.45;
  letter-spacing: 0 !important;
}

.newsletter-consent input {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--magenta);
}

.newsletter-consent a {
  border-bottom: 1px solid currentColor;
}

.newsletter-note.is-confirmed {
  color: white;
  font-weight: 700;
}

.newsletter-earth {
  position: absolute;
  width: 760px;
  left: 16%;
  bottom: -65%;
  opacity: .14;
}

.social > h2 {
  max-width: 820px;
  font-size: clamp(36px, 4.2vw, 62px);
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.social-links a {
  position: relative;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: white;
  background: var(--purple);
}

.social-links span {
  color: var(--muted);
  font-size: 11px;
}

.social-links a:hover span,
.social-links a:focus-visible span {
  color: rgba(255,255,255,.7);
}

.social-links b {
  font-family: var(--ui);
  font-size: 15px;
}

.social-links i {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 18px;
  font-style: normal;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 70px max(32px, calc((100vw - 1380px) / 2));
  color: white;
  background: var(--ink);
}

.footer-brand img {
  width: 180px;
  filter: brightness(0) invert(1);
}

.site-footer div p {
  margin: 0 0 8px;
  color: rgba(255,255,255,.55);
  font-family: var(--ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
}

.site-footer div a {
  border-bottom: 1px solid rgba(255,255,255,.5);
}

.footer-legal {
  margin: 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-align: right;
}

.footer-legal a {
  display: inline-block;
  margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.4);
  color: white;
}

.legal-page {
  min-height: 100vh;
  padding: 90px max(24px, calc((100vw - 920px) / 2));
  color: var(--ink);
  background: var(--paper-soft);
}

.legal-page h1,
.legal-page h2 {
  font-family: var(--display);
  line-height: 1.1;
  letter-spacing: 0;
}

.legal-page h1 {
  max-width: 820px;
  margin: 34px 0 58px;
  font-size: clamp(44px, 7vw, 86px);
}

.legal-page h2 {
  margin: 42px 0 14px;
  font-size: 25px;
}

.legal-page p,
.legal-page li {
  max-width: 760px;
  color: #423947;
  font-size: 17px;
  line-height: 1.65;
}

.legal-back {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}

@media (max-width: 1100px) {
  :root {
    --page: calc(100vw - 48px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }

  .brand-name,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 24px;
    border-top: 1px solid var(--line);
    background: white;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-copy {
    width: 52vw;
    padding-left: 40px;
  }

  .hero-wordmark {
    width: 43vw;
  }

  .hero-presenters {
    right: -120px;
    width: 68vw;
  }

  .listen,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .book-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px 24px;
  }

  .book-recommendations {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .episode-toolbar {
    grid-template-columns: 1fr;
  }

  #episode-count {
    text-align: left;
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100vw - 32px);
  }

  .site-header {
    min-height: 70px;
    padding: 9px 16px;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    width: 100%;
    min-height: 420px;
    justify-content: flex-start;
    padding: 60px 24px 180px;
    background: linear-gradient(180deg, rgba(24,0,48,.88) 0%, rgba(24,0,48,.3) 70%, transparent 100%);
  }

  .hero-wordmark {
    width: min(370px, 82vw);
    margin-block: 20px 24px;
  }

  .hero-presenters {
    right: -9%;
    width: 112%;
    height: 58%;
    object-position: center bottom;
  }

  .hero-earth {
    top: 26%;
    right: -33%;
    width: 140%;
    height: 80%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .section {
    padding-block: 70px;
  }

  .about-grid,
  .section-heading-row,
  .people-panel,
  .live-card {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .section-heading-row {
    gap: 34px;
  }

  .about-copy,
  .section-heading-row > p,
  .books-heading > p {
    padding-top: 0;
  }

  .about h2,
  .section-heading-row h2,
  .listen h2,
  .live h2,
  .newsletter h2,
  .social h2 {
    font-size: clamp(32px, 9.5vw, 46px);
    line-height: 1.15;
  }

  .people-panel {
    margin-top: 55px;
  }

  .people-image-wrap {
    min-height: 430px;
  }

  .people-list {
    padding: 26px 30px;
  }

  .listen,
  .live,
  .newsletter {
    padding-inline: 16px;
  }

  .listen {
    gap: 50px;
    padding-block: 70px;
  }

  .platforms {
    grid-template-columns: 1fr;
  }

  .platforms a {
    min-height: 110px;
  }

  .episode-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .episode-copy h3 {
    min-height: 0;
  }

  .episodes-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .episodes-actions .text-link {
    align-self: flex-start;
  }

  .herohero-promo {
    min-height: 130px;
    padding: 26px 22px;
  }

  .herohero-promo b {
    font-size: 38px;
  }

  .episode-toolbar {
    margin-top: 18px;
    padding: 12px;
  }

  .episode-filters {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .episode-filters button {
    padding-inline: 8px;
  }

  .live-card {
    min-height: 0;
  }

  .live-media {
    min-height: 300px;
  }

  .live-media::after {
    background: linear-gradient(180deg, transparent 65%, rgba(101,0,201,.6));
  }

  .live-copy {
    padding: 38px 26px 48px;
  }

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

  .books-heading {
    margin-bottom: 46px;
  }

  .book-collection-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .book-collection-heading h3 {
    font-size: clamp(28px, 9vw, 40px);
  }

  .book-recommendations {
    gap: 44px;
    margin-top: 70px;
    padding: 38px 24px;
    background:
      linear-gradient(140deg, rgba(38,0,79,.98), rgba(101,0,201,.96) 68%, rgba(241,0,215,.88)),
      url("assets/zemekoule.png") right -210px bottom -160px / 480px auto no-repeat;
  }

  .book-recommendations-copy h3 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .book-recommendations-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .book-card h3 {
    font-size: 15px;
  }

  .newsletter {
    gap: 44px;
  }

  .newsletter-control {
    min-height: 0;
    flex-direction: column;
    background: transparent;
  }

  .newsletter-control input {
    min-height: 62px;
    background: white;
  }

  .newsletter-control button {
    min-height: 54px;
  }

  .social-links {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding-inline: 24px;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
