@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-semibold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Barlow";
  src: url("assets/fonts/barlow-extrabold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-bold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-extrabold.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

:root {
  --ink: #070908;
  --charcoal: #171a18;
  --paper: #f5f5f1;
  --white: #ffffff;
  --muted: #646963;
  --line: #d7dad3;
  --lime: #69f51b;
  --lime-dark: #4fc50e;
  --green-text: #3a7f00;
  --display: "Barlow", Arial, sans-serif;
  --compact: "Barlow Condensed", Impact, sans-serif;
  --body: "Barlow", Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--green-text);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: clamp(76px, 8vw, 116px) 0;
}

.content-narrow {
  max-width: 980px;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-180%);
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.brand span {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 4px;
  font: inherit;
  letter-spacing: inherit;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.primary-nav a {
  display: grid;
  min-height: 42px;
  padding: 0 14px;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.primary-nav a:hover {
  background: #eceee8;
}

.primary-nav a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.header-cta {
  display: grid;
  min-width: 92px;
  min-height: 44px;
  padding: 0 20px;
  place-items: center;
  background: var(--lime);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--lime-dark);
}

.menu-toggle {
  display: none;
}

.kicker {
  margin: 0 0 20px;
  color: var(--green-text);
  font-family: var(--compact);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 {
  font-style: italic;
}

p {
  text-wrap: pretty;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.button-accent {
  background: var(--lime);
  color: var(--ink);
}

.button-accent:hover {
  background: var(--lime-dark);
}

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

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

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

.button-dark:hover {
  background: var(--charcoal);
}

.home-hero {
  background: var(--ink);
  color: var(--white);
}

.home-hero-layout {
  display: grid;
  min-height: min(720px, calc(100vh - 82px));
  min-height: min(720px, calc(100svh - 82px));
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.home-hero-copy-panel {
  display: flex;
  align-items: center;
  padding: clamp(64px, 7vw, 108px) clamp(42px, 5vw, 78px);
  padding-left: max(24px, calc((100vw - 1240px) / 2));
}

.home-hero-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.home-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 8, 0.22), transparent 32%);
  content: "";
  pointer-events: none;
}

.home-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.home-hero-copy {
  max-width: 610px;
}

.home-hero .kicker,
.watch-copy .kicker {
  color: var(--lime);
}

.home-hero-copy h1 {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(58px, 5.8vw, 84px);
}

.home-intro {
  max-width: 620px;
  margin-bottom: 38px;
  color: #c8ccc6;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.section-heading {
  margin-bottom: clamp(38px, 4vw, 56px);
}

.section-heading h2,
.media-heading h2,
.host-profile-copy h2,
.watch-copy h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.4vw, 68px);
}

.section-heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 48px;
}

.section-heading-split > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.directory-card {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.directory-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
}

.directory-card-featured {
  background: var(--lime);
  border-color: var(--lime);
}

.directory-card-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.directory-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--compact);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.directory-card-featured p,
.directory-card-dark p {
  color: currentColor;
  opacity: 0.7;
}

.directory-card h3 {
  margin-bottom: 18px;
  font-size: clamp(36px, 3.8vw, 50px);
}

.directory-card div > span {
  display: block;
  max-width: 300px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.directory-card-featured div > span,
.directory-card-dark div > span {
  color: currentColor;
  opacity: 0.72;
}

.home-listen {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.home-listen-inner {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-listen-copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-listen-copy .platform-mark {
  flex: 0 0 auto;
}

.home-listen h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 64px);
}

.page-masthead {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-masthead-inner {
  padding: clamp(82px, 9vw, 128px) 0 clamp(64px, 7vw, 96px);
}

.page-masthead h1 {
  max-width: 1050px;
  margin-bottom: 30px;
  font-size: clamp(62px, 8.7vw, 112px);
}

.page-masthead p:last-child {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.media-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.media-heading img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
}

.spotify-panel {
  padding: 20px;
  background: var(--ink);
}

.spotify-panel iframe {
  display: block;
  border: 0;
  border-radius: 12px;
}

.platform-list {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--ink);
}

.platform-list a {
  display: grid;
  min-height: 94px;
  grid-template-columns: 56px minmax(130px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.platform-list a:hover {
  padding-inline: 16px;
  background: var(--white);
}

.platform-list span {
  color: var(--muted);
  font-family: var(--compact);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform-list > a > img {
  width: 42px;
  height: 42px;
}

.platform-podbean-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  padding: 5px;
  background: #f0f1ed;
}

.platform-podbean-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.platform-list .platform-podbean-mark {
  width: 56px;
  height: 54px;
  padding: 6px;
}

.platform-list .platform-podbean-mark img {
  width: 42px;
  height: 42px;
}

.platform-list strong {
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}

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

.topic-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--ink);
  background: var(--white);
}

.topic-card-wide {
  grid-column: 1 / -1;
}

.topic-card h3 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4vw, 52px);
}

.topic-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.fact-band {
  padding: 56px 0;
  background: var(--lime);
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact-grid div {
  padding: 0 30px;
  border-right: 1px solid rgba(7, 9, 8, 0.24);
}

.fact-grid div:first-child {
  padding-left: 0;
}

.fact-grid div:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact-grid span,
.fact-grid strong {
  display: block;
}

.fact-grid span {
  margin-bottom: 9px;
  font-family: var(--compact);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fact-grid strong {
  font-family: var(--display);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
  text-transform: uppercase;
}

.host-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(56px, 9vw, 128px);
}

.host-profile-art {
  background: var(--ink);
}

.host-profile-art img {
  width: 100%;
}

.profile-lede {
  margin: 34px 0 18px;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.25;
}

.host-profile-copy > p:not(.kicker):not(.profile-lede) {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.profile-facts {
  margin: 42px 0;
  border-top: 1px solid var(--ink);
}

.profile-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.profile-facts dt {
  color: var(--muted);
  font-family: var(--compact);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin: 0;
  font-weight: 600;
}

.watch-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  min-height: 590px;
  background: var(--ink);
  color: var(--white);
}

.watch-art {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: clamp(32px, 6vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.watch-art img {
  width: min(100%, 480px);
}

.watch-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 78px);
}

.watch-copy p:not(.kicker) {
  margin: 30px 0 36px;
  color: #c6cac4;
  font-size: 18px;
  line-height: 1.6;
}

.watch-facts {
  margin-top: 16px;
  padding: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

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

.connect-card {
  --platform-color: var(--ink);
  --platform-text: var(--ink);
  display: flex;
  min-height: 260px;
  grid-column: span 2;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--platform-color);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.connect-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.connect-card:hover {
  border-color: var(--platform-color);
  transform: translateY(-4px);
}

.connect-card-spotify {
  --platform-color: #1ed760;
  --platform-text: #137536;
}

.connect-card-apple {
  --platform-color: #9933cc;
  --platform-text: #8124ad;
}

.connect-card-facebook {
  --platform-color: #0866ff;
  --platform-text: #0752c7;
}

.connect-card-youtube {
  --platform-color: #ff0033;
  --platform-text: #c90029;
}

.connect-card-podbean {
  --platform-color: #428200;
  --platform-text: #356d00;
}

.connect-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.connect-card-top > span:last-child {
  color: var(--muted);
  font-family: var(--compact);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.platform-mark {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  padding: 5px;
  background: #f0f1ed;
}

.platform-mark img {
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

.connect-card h3 {
  margin: 28px 0 16px;
  font-size: clamp(30px, 3vw, 42px);
}

.connect-card p {
  max-width: 310px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.connect-card strong {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--platform-text);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.button-youtube {
  background: #c90029;
  color: var(--white);
}

.button-youtube:hover {
  background: #a90023;
}

.about-masthead h1 {
  max-width: 1180px;
}

.about-host {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
}

.about-host-media {
  aspect-ratio: 1.16;
  overflow: hidden;
  background: var(--ink);
}

.about-host-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.about-host-copy h2,
.about-watch-copy h2,
.about-connect-inner h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 68px);
}

.about-host-copy > p:not(.kicker) {
  max-width: 580px;
}

.about-host-copy > p:not(.kicker):not(.profile-lede) {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}

.about-coverage {
  padding: clamp(76px, 8vw, 116px) 0;
  background: var(--ink);
  color: var(--white);
}

.about-coverage .kicker {
  color: var(--lime);
}

.about-coverage .section-heading-split > p {
  color: #aeb3ad;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.coverage-list span {
  display: flex;
  min-height: 136px;
  align-items: flex-end;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-family: var(--display);
  font-size: clamp(21px, 2.1vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-watch-section {
  background: var(--white);
}

.about-watch {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(48px, 8vw, 104px);
}

.about-watch-mark {
  display: grid;
  min-height: 250px;
  place-items: center;
  background: #f0f1ed;
}

.about-watch-mark img {
  width: min(55%, 150px);
  height: auto;
}

.about-watch-copy p:not(.kicker) {
  max-width: 570px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.about-connect-band {
  background: var(--lime);
}

.about-connect-inner {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-footer {
  padding-top: 72px;
  background: var(--ink);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(520px, 1.42fr);
  align-items: start;
  gap: 80px;
  padding-bottom: 72px;
}

.footer-brand {
  width: min(100%, 260px);
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1.58fr);
  gap: 36px;
}

.footer-site-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-links p {
  margin-bottom: 7px;
  color: var(--lime);
  font-family: var(--compact);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a {
  color: #c6cac4;
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.footer-platform-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 11px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.footer-platform-list a:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.footer-platform-list img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer-platform-list .podbean-logo {
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin-bottom: 0;
  color: #8f958e;
  font-family: var(--compact);
  font-size: 13px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 14px;
  }

  .primary-nav a {
    padding-inline: 10px;
  }

  .header-cta {
    min-width: 82px;
    padding-inline: 14px;
  }

  .home-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .home-hero-copy-panel {
    padding-right: 42px;
  }

  .connect-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .connect-card,
  .connect-card:nth-last-child(-n + 2) {
    grid-column: span 3;
  }

  .connect-card:last-child {
    grid-column: 2 / span 4;
  }
}

@media (max-width: 960px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    backdrop-filter: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle i {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 160ms ease, top 160ms ease;
  }

  .menu-toggle i:first-of-type {
    top: 18px;
  }

  .menu-toggle i:last-of-type {
    top: 27px;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    top: 22px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    top: 22px;
    transform: rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 74px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 28px 18px 48px;
    overflow-y: auto;
    visibility: hidden;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    display: flex;
    min-height: 68px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .primary-nav a[aria-current="page"] {
    background: var(--lime);
    color: var(--ink);
  }

  .home-hero-layout,
  .host-profile,
  .watch-feature,
  .about-host,
  .about-watch {
    grid-template-columns: 1fr;
  }

  .home-hero-layout {
    min-height: 0;
  }

  .home-hero-copy-panel {
    padding: 68px max(18px, calc((100vw - 760px) / 2)) 82px;
  }

  .home-hero-media {
    min-height: min(68vw, 560px);
    order: -1;
  }

  .home-hero-copy {
    max-width: 720px;
  }

  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-card:last-child {
    grid-column: 1 / -1;
  }

  .section-heading-split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .host-profile-art {
    max-width: 620px;
  }

  .watch-feature {
    min-height: 0;
  }

  .watch-art {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .about-host-media {
    max-height: 620px;
  }

  .about-watch-mark {
    min-height: 220px;
  }

  .coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-list span:last-child {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .section {
    padding: 64px 0;
  }

  .brand span {
    font-size: 16px;
  }

  .home-hero-copy-panel {
    padding: 56px 16px 72px;
  }

  .home-hero-media {
    min-height: min(76vw, 360px);
    order: 0;
  }

  .home-hero-copy h1 {
    font-size: clamp(50px, 14vw, 64px);
  }

  .home-intro {
    font-size: 17px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .directory-grid,
  .topic-grid,
  .connect-grid {
    grid-template-columns: 1fr;
  }

  .directory-card,
  .directory-card-featured,
  .directory-card-dark,
  .directory-card:not(.directory-card-featured):not(.directory-card-dark),
  .directory-card:last-child,
  .connect-card,
  .connect-card:nth-last-child(-n + 2),
  .connect-card:last-child,
  .topic-card-wide {
    min-height: 210px;
    grid-column: auto;
  }

  .directory-card h3 {
    font-size: 42px;
  }

  .home-listen-inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 0;
  }

  .home-listen-copy {
    align-items: flex-start;
  }

  .page-masthead-inner {
    padding: 56px 0 50px;
  }

  .page-masthead h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .about-masthead h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .media-heading {
    align-items: flex-start;
  }

  .media-heading img {
    width: 68px;
    height: 68px;
  }

  .spotify-panel {
    margin-inline: -16px;
    padding: 10px;
  }

  .platform-list a {
    min-height: 108px;
    grid-template-columns: 48px 1fr;
    gap: 8px 16px;
    padding: 20px 0;
  }

  .platform-list strong {
    grid-column: 2;
  }

  .platform-list a:hover {
    padding-inline: 12px;
  }

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

  .fact-grid div,
  .fact-grid div:first-child,
  .fact-grid div:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 9, 8, 0.24);
  }

  .fact-grid div:last-child {
    border-bottom: 0;
  }

  .profile-facts div {
    grid-template-columns: 92px 1fr;
  }

  .watch-art {
    min-height: 370px;
    padding: 34px;
  }

  .watch-copy {
    padding: 44px 28px 50px;
  }

  .watch-facts {
    padding: 18px 26px;
  }

  .connect-card {
    min-height: 0;
    padding: 22px;
  }

  .connect-card h3 {
    margin: 22px 0 12px;
  }

  .connect-card p {
    margin-bottom: 18px;
  }

  .connect-card strong {
    padding-top: 16px;
  }

  .about-coverage {
    padding: 64px 0;
  }

  .coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-list span {
    min-height: 96px;
    grid-column: auto;
  }

  .coverage-list span:last-child {
    grid-column: 1 / -1;
  }

  .about-connect-inner {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 64px 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-platform-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    width: 145px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }
}

@media (max-width: 340px) {
  .coverage-list,
  .footer-platform-list {
    grid-template-columns: 1fr;
  }

  .coverage-list span:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
