:root {
  --ink: #0d1a30;
  --red: #dc1726;
  --cream: #e8e2d6;
  --line: #1b2430;
  --footer: #04172a;
}

* {
  box-sizing: border-box;
}

html {
  background: #f8f8f6;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  background: #f8f8f6;
}

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

.page-shell {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: #fbfbfa;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(226, 222, 214, 0.45), transparent 24%),
    radial-gradient(circle at 50% 82%, rgba(226, 222, 214, 0.35), transparent 23%),
    #fbfbfa;
}

@media (min-width: 761px) {
  .page-shell {
    height: auto;
  }

  .page {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    transform: none;
  }
}

.site-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 280px 1fr 54px;
  align-items: start;
  max-width: 992px;
  height: 228px;
  margin: 0 auto;
  padding: 42px 39px 0 41px;
}

.brand img {
  display: block;
  width: 220px;
  height: 135px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 37px;
  padding-top: 37px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-bottom: 16px;
}

.main-nav .active {
  color: var(--red);
}

.main-nav .active::after {
  content: "";
  position: absolute;
  left: -7px;
  right: -7px;
  bottom: 0;
  height: 2px;
  background: var(--red);
}

.small-square {
  display: block;
  width: 26px;
  height: 26px;
  background: #000;
}

.header-square {
  margin-top: 49px;
  justify-self: end;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 324px 1fr;
  gap: 34px;
  max-width: 992px;
  margin: 0 auto;
  padding: 54px 39px 0 39px;
}

.hero-copy {
  position: relative;
  padding-top: 0;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.rule-with-dot {
  position: relative;
  display: block;
  width: 297px;
  height: 1px;
  margin: 23px 0 25px;
  background: #1e2833;
}

.rule-with-dot::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -9px;
  width: 17px;
  height: 18px;
  background: #000;
}

h1 {
  max-width: 318px;
  margin: 0;
  color: var(--ink);
  font-size: 47px;
  line-height: 1.23;
  font-weight: 700;
}

.lead {
  position: relative;
  max-width: 292px;
  margin: 23px 0 32px 21px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
}

.lead::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 6px;
  width: 1px;
  height: 88px;
  background: var(--red);
}

.youtube-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 254px;
  height: 54px;
  padding: 0 31px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(135deg, #df1d2b, #c8101d);
  box-shadow: 0 12px 24px rgba(220, 23, 38, 0.16);
}

.youtube-icon {
  position: relative;
  width: 31px;
  height: 22px;
  border-radius: 6px;
  background: #fff;
}

.youtube-icon::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  border-left: 9px solid var(--red);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.episode-card {
  position: relative;
  padding-top: 34px;
}

.episode-card::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 18px;
  width: 1px;
  height: 382px;
  background: rgba(220, 23, 38, 0.32);
}

.corner-line {
  position: absolute;
  pointer-events: none;
}

.top-line {
  left: 21px;
  top: -24px;
  width: 579px;
  height: 82px;
  border-top: 1px solid var(--red);
  border-left: 1px solid var(--red);
}

.media-square {
  position: absolute;
  left: 50px;
  top: 60px;
  z-index: 2;
}

.episode-card img {
  position: relative;
  display: block;
  width: 551px;
  height: 382px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 16px 26px rgba(13, 26, 48, 0.11);
}

.episode-preview-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
}

.episode-preview-link img {
  transition: transform 280ms ease, filter 280ms ease;
}

.episode-preview-link:hover img {
  transform: scale(1.018);
  filter: brightness(0.92);
}

.preview-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 66px;
  height: 46px;
  border-radius: 9px;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%);
}

.preview-play::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 14px;
  border-left: 16px solid #fff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.pager {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
  padding: 37px 24px 0 0;
}

.pager span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #101b2d;
}

.about {
  position: relative;
  z-index: 2;
  max-width: 992px;
  min-height: 620px;
  margin: 0 auto;
  padding: 95px 39px 38px;
  text-align: center;
}

.about .eyebrow {
  letter-spacing: 4px;
}

.short-red-rule {
  display: block;
  width: 22px;
  height: 2px;
  margin: 17px auto 23px;
  background: var(--red);
}

h2 {
  margin: 0 0 17px;
  font-size: 39px;
  line-height: 1.18;
  font-weight: 700;
}

.about-text {
  max-width: 430px;
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;
}

.about-body {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 52px;
  align-items: center;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.about-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 3px;
  background: var(--footer);
  box-shadow: 0 18px 38px rgba(13, 26, 48, 0.14);
}

.about-video::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: -18px;
  top: -18px;
  width: 62px;
  height: 62px;
  border: 1px solid var(--red);
  pointer-events: none;
}

.about-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-story {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
  max-width: 992px;
  min-height: 470px;
  margin: 0 auto 76px;
  padding: 62px 70px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 100%, rgba(70, 96, 119, 0.56), transparent 30%),
    var(--footer);
}

.home-story::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -34px;
  width: 110px;
  height: 34px;
  border-top: 1px solid var(--red);
  border-right: 1px solid var(--red);
}

.home-story-copy h2 {
  margin: 20px 0 24px;
  font-size: 39px;
  line-height: 1.16;
}

.home-story-copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.story-form {
  display: grid;
  gap: 23px;
  padding: 34px 36px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.story-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.story-form label {
  display: grid;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.story-form input,
.story-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aeb2b8;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
}

.story-form input {
  height: 38px;
}

.story-form textarea {
  min-height: 88px;
  padding: 8px 0;
  resize: vertical;
}

.story-form input:focus,
.story-form textarea:focus {
  border-color: var(--red);
}

.story-submit {
  width: fit-content;
  border: 0;
  color: #fff;
  background: var(--red);
  cursor: pointer;
  font-family: inherit;
}

.story-submit:hover {
  color: #fff;
  background: #bf111f;
}

.story-submit:disabled,
.form-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.story-form-note {
  margin: -10px 0 0;
  color: #717983;
  font-size: 10px;
  line-height: 1.5;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.about-text p {
  margin: 0 0 22px;
}

.dot-grid {
  position: absolute;
  left: 64px;
  top: 155px;
  width: 95px;
  height: 95px;
  background-image: radial-gradient(#111 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 235px 1fr 147px;
  align-items: center;
  max-width: 992px;
  height: 153px;
  margin: 0 auto;
  padding: 32px 45px 22px;
  color: #fff;
  background: radial-gradient(circle at 84% 30%, rgba(45, 70, 92, 0.55), transparent 22%), var(--footer);
}

.footer-logo {
  display: block;
  width: 150px;
  height: 96px;
  object-fit: contain;
  margin-left: 0;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.page .site-footer {
  width: 100%;
  max-width: none;
  padding-left: max(45px, calc((100% - 902px) / 2));
  padding-right: max(45px, calc((100% - 902px) / 2));
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: 13px;
  font-weight: 500;
}

.footer-nav a {
  padding: 0 23px;
  line-height: 18px;
  border-right: 1px solid var(--red);
}

.footer-nav a:last-child {
  border-right: 0;
}

.producer {
  position: relative;
  padding-left: 25px;
  line-height: 1;
}

.producer::before {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  width: 1px;
  height: 61px;
  background: var(--red);
}

.producer span {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
}

.producer strong {
  display: block;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 7px;
}

.producer a {
  display: inline-block;
  transition: color 180ms ease, transform 180ms ease;
}

.producer a:hover,
.producer a:focus-visible {
  color: #e8e2d6;
  transform: translateY(-2px);
}

.decor,
.footer-side-line {
  position: absolute;
  pointer-events: none;
}

.decor-cream {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  background: rgba(229, 223, 210, 0.72);
}

.top-cream {
  right: -78px;
  top: 131px;
}

.decor-red {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #df1c2a, #c8101d);
}

.right-red {
  right: 27px;
  top: 920px;
}

.decor-navy {
  width: 198px;
  height: 198px;
  border-radius: 50%;
  background: var(--footer);
}

.left-navy {
  left: -99px;
  top: 1040px;
}

.left-navy::before {
  content: "";
  position: absolute;
  right: -210px;
  top: 99px;
  width: 408px;
  height: 1px;
  background: #1e2833;
}

.left-navy::after {
  content: "";
  position: absolute;
  right: -111px;
  top: 118px;
  width: 269px;
  height: 1px;
  background: var(--red);
}

.left-cream {
  left: -90px;
  top: 1510px;
  width: 234px;
  height: 296px;
  border-radius: 0 234px 234px 0;
}

.lower-square {
  position: absolute;
  left: 88px;
  top: 1850px;
  width: 47px;
  height: 103px;
}

.about-square {
  position: absolute;
  right: 58px;
  top: 1920px;
}

.footer-side-line {
  right: 31px;
  top: 1250px;
  width: 1px;
  height: 720px;
  background: #1e2833;
}

.footer-side-line::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 63px;
  width: 213px;
  height: 1px;
  background: var(--red);
}

.page::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 41px;
  width: 1px;
  height: 783px;
  background: rgba(220, 23, 38, 0.56);
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr;
    height: auto;
    padding: 26px 22px 0;
  }

  .brand img {
    width: 205px;
    height: 130px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px;
    padding-top: 24px;
  }

  .header-square {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 42px 22px 0;
  }

  h1 {
    max-width: none;
    font-size: 38px;
  }

  .lead {
    max-width: 36rem;
  }

  .episode-card {
    padding-top: 18px;
  }

  .episode-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 551 / 382;
  }

  .top-line,
  .episode-card::after,
  .page::before {
    display: none;
  }

  .media-square {
    left: 24px;
    top: 42px;
  }

  .about {
    padding: 120px 22px 60px;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 36rem;
  }

  .about-text {
    max-width: none;
  }

  .home-story {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
    margin: 0;
    padding: 58px 22px;
  }

  .home-story-copy h2 {
    font-size: 34px;
  }

  .story-form {
    padding: 30px 24px;
  }

  .story-field-row {
    grid-template-columns: 1fr;
  }

  .dot-grid {
    left: 25px;
    top: 185px;
    opacity: 0.35;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
    height: auto;
    min-height: 340px;
    padding: 28px 24px;
  }

  .page .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-nav a {
    padding: 0 18px 0 0;
    margin-right: 18px;
    margin-bottom: 10px;
    border-right: 0;
  }

  .producer {
    padding-left: 18px;
  }
}

/* Inner pages */

.inner-page-shell {
  width: 100%;
  overflow: hidden;
  background: #fbfbfa;
}

.inner-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(229, 223, 210, 0.58), transparent 13%),
    radial-gradient(circle at 8% 58%, rgba(229, 223, 210, 0.45), transparent 16%),
    #fbfbfa;
}

.inner-page::before {
  content: "";
  position: absolute;
  right: 28px;
  top: 41px;
  width: 1px;
  height: 520px;
  background: rgba(220, 23, 38, 0.5);
}

.inner-page::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -68px;
  top: 128px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(229, 223, 210, 0.78);
}

.inner-header {
  max-width: 1120px;
  height: 210px;
  padding-left: 50px;
  padding-right: 50px;
}

.inner-page main {
  position: relative;
  z-index: 1;
}

.inner-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: 80px;
  max-width: 1050px;
  min-height: 350px;
  margin: 0 auto;
  padding: 22px 36px 78px;
}

.inner-hero::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 45px;
  width: 38px;
  height: 106px;
  background: var(--footer);
}

.inner-hero-copy {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  max-width: 620px;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -3px;
}

.align-left {
  margin: 18px 0 26px;
}

.inner-intro,
.manifesto-quote {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin: 0 0 12px;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--red);
  color: #2b3544;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 500;
}

.manifesto-quote {
  font-size: 22px;
  line-height: 1.55;
  font-weight: 600;
  font-style: normal;
}

.hero-outline {
  position: absolute;
  right: 26px;
  top: 0;
  width: 54%;
  height: 244px;
  border-top: 1px solid var(--red);
  border-right: 1px solid var(--red);
}

.episode-library {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 40px 36px 116px;
}

.episode-library::before {
  content: "";
  position: absolute;
  left: -76px;
  top: 370px;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: var(--red);
}

.episode-tile {
  position: relative;
  background: #fff;
}

.featured-episode {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  margin-bottom: 66px;
  box-shadow: 0 24px 50px rgba(13, 26, 48, 0.09);
}

.episode-image {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  background: #d9d9d4;
}

.episode-image::after,
.guest-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 23, 42, 0.4));
  transition: background 180ms ease;
}

.episode-image:hover::after,
.guest-feature-image:hover::after {
  background: linear-gradient(180deg, rgba(220, 23, 38, 0.08), rgba(4, 23, 42, 0.45));
}

.episode-image img,
.guest-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.episode-image:hover img,
.guest-feature-image:hover img {
  transform: scale(1.025);
}

.play-badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 25px;
  width: 55px;
  height: 40px;
  border-radius: 7px;
  background: var(--red);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.play-badge::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.episode-number {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 28px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
}

.episode-info {
  padding: 32px 32px 34px;
}

.episode-origin {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.episode-info h2 {
  margin: 0 0 18px;
  font-size: 27px;
  line-height: 1.2;
}

.episode-info p:not(.episode-origin) {
  margin: 0 0 24px;
  color: #3d4653;
  font-size: 14px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--red);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--red);
  font-size: 17px;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.episode-grid .episode-tile {
  box-shadow: 0 16px 34px rgba(13, 26, 48, 0.07);
}

.episode-grid .episode-image {
  aspect-ratio: 16 / 10;
  min-height: 0;
}

.episode-grid .episode-info {
  padding: 26px 24px 28px;
}

.episode-grid .episode-info h2 {
  min-height: 82px;
  font-size: 23px;
}

.episode-grid .episode-info p:not(.episode-origin) {
  min-height: 69px;
}

.channel-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1050px;
  min-height: 220px;
  margin: 0 auto 90px;
  padding: 46px 62px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(61, 89, 114, 0.72), transparent 24%),
    var(--footer);
}

.light-eyebrow {
  color: #fff;
  opacity: 0.72;
}

.channel-cta h2 {
  margin: 14px 0 0;
  font-size: 40px;
}

.outline-button,
.red-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.outline-button:hover {
  color: var(--footer);
  background: #fff;
  transform: translateY(-2px);
}

.inner-footer {
  width: 100%;
  max-width: none;
  padding-left: max(45px, calc((100% - 1100px) / 2));
  padding-right: max(45px, calc((100% - 1100px) / 2));
}

/* About */

.story-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 112px 70px 104px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(13, 26, 48, 0.06);
}

.section-marker {
  position: absolute;
  right: 30px;
  top: 18px;
  color: rgba(13, 26, 48, 0.07);
  font-size: 94px;
  font-weight: 800;
}

.story-heading h2 {
  margin: 24px 0 0;
  font-size: 42px;
  line-height: 1.16;
}

.story-copy {
  padding-top: 20px;
  color: #35404d;
  font-size: 16px;
  line-height: 1.82;
}

.story-copy p {
  margin: 0 0 22px;
}

.values-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1050px;
  margin: 0 auto;
  color: #fff;
  background: var(--footer);
}

.value-card {
  position: relative;
  min-height: 260px;
  padding: 50px 38px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.value-card:last-child {
  border-right: 0;
}

.value-card > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
}

.value-card h3 {
  margin: 28px 0 16px;
  font-size: 27px;
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.host-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 84px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
  padding: 120px 58px;
}

.host-art {
  position: relative;
  min-height: 360px;
}

.host-circle {
  position: absolute;
  left: 0;
  top: 20px;
  width: 265px;
  height: 265px;
  border-radius: 50%;
  background: var(--red);
}

.host-square {
  position: absolute;
  left: 178px;
  top: 178px;
  width: 130px;
  height: 130px;
  background: var(--footer);
}

.host-art strong {
  position: absolute;
  z-index: 2;
  left: 31px;
  top: 126px;
  color: #fff;
  font-size: 46px;
  letter-spacing: 10px;
}

.host-copy h2 {
  margin: 20px 0 28px;
  font-size: 45px;
}

.host-copy > p:not(.eyebrow) {
  margin: 0 0 20px;
  color: #35404d;
  font-size: 16px;
  line-height: 1.8;
}

.host-note {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 0 22px 20px;
  border-left: 2px solid var(--red);
}

.host-note strong,
.host-note span {
  display: block;
}

.host-note strong {
  font-size: 15px;
}

.host-note span {
  color: #626b76;
  font-size: 13px;
}

/* Guests */

.guest-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  max-width: 1050px;
  min-height: 520px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 24px 54px rgba(13, 26, 48, 0.07);
}

.guest-feature-image {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
}

.guest-feature-copy {
  padding: 64px 52px 52px;
}

.guest-feature-copy h2 {
  margin: 0;
  font-size: 48px;
}

.guest-feature-copy h3 {
  margin: 12px 0 30px;
  color: var(--red);
  font-size: 17px;
}

.guest-feature-copy > p:not(.episode-origin) {
  margin: 0 0 20px;
  color: #35404d;
  font-size: 15px;
  line-height: 1.75;
}

.voices-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  max-width: 1050px;
  margin: 0 auto;
  padding: 110px 36px;
}

.voices-heading h2 {
  margin: 22px 0 0;
  font-size: 40px;
  line-height: 1.18;
}

.voice-row {
  display: grid;
  grid-template-columns: 54px 1fr 36px;
  gap: 20px;
  align-items: center;
  min-height: 104px;
  border-top: 1px solid rgba(13, 26, 48, 0.24);
  transition: padding 180ms ease, color 180ms ease;
}

.voice-row:last-child {
  border-bottom: 1px solid rgba(13, 26, 48, 0.24);
}

.voice-row:hover {
  padding-left: 10px;
  color: var(--red);
}

.voice-index {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.voice-row small,
.voice-row strong {
  display: block;
}

.voice-row small {
  margin-bottom: 8px;
  color: #737a83;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.voice-row strong {
  font-size: 21px;
}

.voice-arrow {
  font-size: 24px;
}

.guest-cta {
  display: grid;
  grid-template-columns: 1fr 0.75fr auto;
  gap: 50px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto 90px;
  padding: 55px 58px;
  border: 1px solid rgba(13, 26, 48, 0.18);
  background: rgba(255, 255, 255, 0.55);
}

.guest-cta h2 {
  margin: 16px 0 0;
  font-size: 32px;
  line-height: 1.2;
}

.guest-cta > p {
  margin: 0;
  color: #45505c;
  font-size: 14px;
  line-height: 1.7;
}

.red-button {
  border-color: var(--red);
  background: var(--red);
}

.red-button:hover {
  background: #bf111f;
  transform: translateY(-2px);
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  max-width: 1050px;
  margin: 0 auto 100px;
  box-shadow: 0 24px 54px rgba(13, 26, 48, 0.07);
}

.contact-aside {
  padding: 60px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(66, 91, 113, 0.62), transparent 30%),
    var(--footer);
}

.contact-aside .eyebrow {
  color: #fff;
  opacity: 0.7;
}

.contact-aside h2 {
  margin: 22px 0 48px;
  font-size: 35px;
  line-height: 1.2;
}

.contact-detail {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-detail span,
.contact-detail a,
.contact-detail strong {
  display: block;
}

.contact-detail span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  font-size: 15px;
  font-weight: 600;
}

.contact-aside .text-link {
  margin-top: 40px;
  color: #fff;
}

.contact-form {
  display: grid;
  gap: 26px;
  padding: 60px 56px;
  background: #fff;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: #283342;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #9ea3aa;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
}

.contact-form input,
.contact-form select {
  height: 42px;
}

.contact-form textarea {
  min-height: 118px;
  padding: 10px 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
}

.form-button {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.form-note {
  margin: -12px 0 0;
  color: #747b84;
  font-size: 11px;
  line-height: 1.5;
}

.thank-you-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.thank-you-main {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: 90px 0 130px;
  flex: 1;
}

.thank-you-main h1 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1.02;
}

.thank-you-main > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 0 38px;
  color: #46515e;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 980px) {
  .inner-header {
    grid-template-columns: 250px 1fr 42px;
    padding-left: 34px;
    padding-right: 34px;
  }

  .inner-header .main-nav {
    gap: 24px;
  }

  .inner-hero,
  .episode-library,
  .story-section,
  .values-band,
  .host-section,
  .guest-feature,
  .voices-section,
  .guest-cta,
  .contact-layout,
  .channel-cta {
    margin-left: 28px;
    margin-right: 28px;
  }

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

  .episode-grid .episode-tile:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 14px);
  }

  .guest-cta {
    grid-template-columns: 1fr 1fr;
  }

  .guest-cta .red-button {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .inner-page::before,
  .inner-page::after {
    display: none;
  }

  .inner-header {
    grid-template-columns: 1fr;
    height: auto;
    padding: 26px 22px 0;
  }

  .inner-header .main-nav {
    gap: 18px;
  }

  .inner-hero {
    grid-template-columns: 1fr;
    gap: 38px;
    min-height: 0;
    margin: 0;
    padding: 72px 22px 82px;
  }

  .inner-hero::before {
    left: 0;
    top: 58px;
    width: 10px;
    height: 92px;
  }

  .inner-hero h1 {
    font-size: clamp(50px, 16vw, 68px);
    letter-spacing: -2px;
  }

  .hero-outline {
    right: 22px;
    top: 38px;
    width: 48%;
    height: 156px;
  }

  .inner-intro,
  .manifesto-quote {
    max-width: 90%;
    font-size: 17px;
  }

  .episode-library,
  .story-section,
  .values-band,
  .host-section,
  .guest-feature,
  .voices-section,
  .guest-cta,
  .contact-layout,
  .channel-cta {
    margin-left: 0;
    margin-right: 0;
  }

  .episode-library {
    padding: 10px 22px 82px;
  }

  .episode-library::before {
    display: none;
  }

  .featured-episode,
  .episode-grid,
  .story-section,
  .values-band,
  .host-section,
  .guest-feature,
  .voices-section,
  .guest-cta,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .featured-episode {
    margin-bottom: 30px;
  }

  .featured-episode .episode-image {
    aspect-ratio: 16 / 11;
  }

  .episode-grid {
    gap: 30px;
  }

  .episode-grid .episode-tile:last-child {
    grid-column: auto;
    width: auto;
  }

  .episode-grid .episode-info h2,
  .episode-grid .episode-info p:not(.episode-origin) {
    min-height: 0;
  }

  .channel-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 0;
    padding: 48px 30px;
  }

  .channel-cta h2 {
    font-size: 34px;
  }

  .story-section {
    gap: 32px;
    padding: 70px 28px 60px;
  }

  .section-marker {
    font-size: 72px;
  }

  .story-heading h2 {
    font-size: 34px;
  }

  .values-band {
    margin: 0;
  }

  .value-card {
    min-height: 0;
    padding: 38px 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .host-section {
    gap: 26px;
    padding: 76px 26px;
  }

  .host-art {
    min-height: 300px;
  }

  .host-circle {
    width: 225px;
    height: 225px;
  }

  .host-square {
    left: 146px;
    top: 148px;
    width: 112px;
    height: 112px;
  }

  .host-art strong {
    left: 24px;
    top: 106px;
    font-size: 38px;
  }

  .host-copy h2 {
    font-size: 37px;
  }

  .guest-feature-image {
    min-height: 360px;
  }

  .guest-feature-copy {
    padding: 46px 28px;
  }

  .guest-feature-copy h2 {
    font-size: 41px;
  }

  .voices-section {
    gap: 38px;
    padding: 78px 24px;
  }

  .guest-cta {
    gap: 28px;
    margin: 0;
    padding: 52px 28px;
  }

  .contact-layout {
    margin-bottom: 0;
  }

  .contact-aside,
  .contact-form {
    padding: 52px 28px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .inner-footer {
    height: auto;
    min-height: 340px;
  }
}
