/* ====================================================
   De Wooncast — NVM Limburg
   Editorial magazine layout, NVM design language
   ==================================================== */

/* ----------------------------------------------------
   FONT LICENTIE — Futura PT
   Optie A (Adobe Typekit): activeer in elke HTML <head>:
       <link rel="stylesheet" href="https://use.typekit.net/XXXXXX.css">
       Vervang XXXXXX met jullie kit-ID.
   Optie B (self-hosted): plaats woff2 in /assets/fonts/ en
       activeer onderstaande @font-face declaraties.
   ----------------------------------------------------
@font-face {
  font-family: "Futura PT";
  src: url("/assets/fonts/FuturaPT-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("/assets/fonts/FuturaPT-BookOblique.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("/assets/fonts/FuturaPT-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("/assets/fonts/FuturaPT-Demi.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura PT";
  src: url("/assets/fonts/FuturaPT-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
   ---------------------------------------------------- */

:root {
  --nvm-blue: #1B3A8C;
  --nvm-blue-deep: #0F2154;
  --nvm-blue-soft: #E8EDF7;
  --nvm-accent: #C9A961;
  --nvm-accent-deep: #A8884C;
  --ink: #0A0E1A;
  --ink-soft: #4A5168;
  --ink-mute: #7A8094;
  --paper: #FAFAF7;
  --paper-warm: #F4F1E8;
  --line: #E5E2D8;
  --line-soft: #EFECE2;
  --white: #ffffff;

  /* Brand font: Futura PT — geactiveerd zodra Typekit kit-ID of woff2 set wordt geleverd.
     Fallback chain probeert in volgorde: Adobe-naam, lokale macOS Futura, geometrische sans. */
  --serif: "futura-pt", "Futura PT", "Futura PT Book", "Futura", "Avenir Next", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  --sans:  "futura-pt", "Futura PT", "Futura PT Book", "Futura", "Avenir Next", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;

  --container-max: 1400px;
  --content-max: 720px;
  --content-wide: 960px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;

  --transition: 220ms cubic-bezier(.2,.8,.2,1);
}

/* ----------- reset ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: 'kern', 'liga', 'calt';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--nvm-blue); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--nvm-accent-deep); font-weight: 500; }
p { margin: 0 0 1em; }

/* ----------- container ----------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
.content { max-width: var(--content-max); margin: 0 auto; }
.content-wide { max-width: var(--content-wide); margin: 0 auto; }

/* ----------- labels (kicker/eyebrow) ----------- */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--nvm-accent-deep);
}
.eyebrow.on-dark { color: var(--nvm-accent); }
.eyebrow .sep { opacity: .5; padding: 0 .6em; }

/* ----------- header ----------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,247,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.brand em { font-style: italic; color: var(--nvm-accent-deep); }
.brand small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-mute); margin-top: 2px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-size: 14px; text-decoration: none; color: var(--ink-soft); letter-spacing: 0.04em; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--nvm-blue); }
.nav-toggle { display: none; }
@media (max-width: 720px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; gap: 0; padding: 8px 24px 24px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 0; }
  .nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); position: relative; }
  .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink); }
  .nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
}

/* ----------- hero ----------- */
.hero {
  background: var(--nvm-blue-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--nvm-accent) 30%, var(--nvm-accent) 70%, transparent);
}
.hero__inner { padding: 96px 0 112px; }
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin: 18px 0 24px;
}
.hero h1 em { color: var(--nvm-accent); font-style: italic; font-weight: 400; }
.hero p.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 60ch;
  margin: 0 0 36px;
}
.hero .ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero--episode { padding-bottom: 0; }
.hero--episode .hero__inner { padding: 64px 0 72px; }
.hero--episode h1 { font-size: clamp(30px, 4.4vw, 52px); margin-top: 12px; max-width: 22ch; }
.hero--episode .ep-num {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 110px);
  font-weight: 500;
  font-style: italic;
  color: var(--nvm-accent);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.hero--episode .ep-meta {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

/* ----------- buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn:hover { background: var(--white); color: var(--nvm-blue-deep); border-color: var(--white); }
.btn--gold { background: var(--nvm-accent); border-color: var(--nvm-accent); color: var(--nvm-blue-deep); }
.btn--gold:hover { background: var(--white); color: var(--nvm-blue-deep); border-color: var(--white); }
.btn--dark { color: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

/* ----------- sections ----------- */
section { padding: clamp(64px, 9vw, 112px) 0; }
.section-title {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  max-width: 22ch;
}
.section-lede {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 56px;
}

.bg-paper { background: var(--paper-warm); }
.bg-soft { background: var(--nvm-blue-soft); }

/* ----------- intro split ----------- */
.intro-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 880px) { .intro-split { grid-template-columns: 1fr 1.4fr; } }
.intro-split .col-lead { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.35; color: var(--ink); font-weight: 400; }
.intro-split .col-lead em { font-style: italic; color: var(--nvm-accent-deep); }
.intro-split .col-body p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.intro-split .col-body p:first-child { font-size: 19px; color: var(--ink); }

/* ----------- episode grid ----------- */
.episodes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) {
  .episodes { grid-template-columns: 1fr 1fr; }
}

.ep-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), padding var(--transition);
  position: relative;
}
@media (min-width: 800px) {
  .ep-card { padding: 44px 36px; }
  .ep-card:nth-child(odd) { border-right: 1px solid var(--line); }
}
.ep-card:hover { background: var(--paper-warm); }
.ep-card:hover .ep-card__title { color: var(--nvm-blue); }
.ep-card:hover .ep-card__cta .arrow { transform: translateX(4px); }

.ep-card__num {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  color: var(--nvm-accent);
  letter-spacing: -0.04em;
}
.ep-card__body { min-width: 0; }
.ep-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.ep-card__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  transition: color var(--transition);
}
.ep-card__teaser {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 16px;
}
.ep-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nvm-blue);
}
.ep-card__cta .arrow { transition: transform var(--transition); }

/* ----------- breadcrumb ----------- */
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--ink-mute); text-decoration: none; }
.breadcrumb a:hover { color: var(--nvm-blue); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* ----------- player row (facade) ----------- */
.player-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 56px;
}
@media (min-width: 880px) { .player-row { grid-template-columns: 1.6fr 1fr; } }

.player {
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.player__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.player__label .open-link { color: var(--nvm-blue); text-decoration: none; }
.player__label .open-link:hover { text-decoration: underline; }

.facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: var(--ink);
  overflow: hidden;
}
.facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; transition: opacity var(--transition); }
.facade:hover img { opacity: 1; }
.facade__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.facade__play-btn {
  width: 76px;
  height: 76px;
  background: rgba(15,33,84,0.9);
  border: 2px solid var(--nvm-accent);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.facade:hover .facade__play-btn { transform: scale(1.08); background: var(--nvm-blue); }
.facade__play-btn::after {
  content: '';
  width: 0; height: 0;
  border-left: 18px solid var(--nvm-accent);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 6px;
}
.facade__caption {
  position: absolute;
  left: 18px; bottom: 16px; right: 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.facade--spotify {
  aspect-ratio: 16 / 9;
  background: linear-gradient(155deg, #0F2154 0%, #1B3A8C 100%);
}
.facade--spotify .facade__caption { font-family: var(--sans); font-size: 14px; letter-spacing: 0.04em; }
.facade--spotify .facade__play-btn { background: #1ED760; border-color: #1ED760; }
.facade--spotify .facade__play-btn::after { border-left-color: var(--nvm-blue-deep); }
.facade--spotify .spotify-mark {
  position: absolute;
  top: 18px; left: 18px;
  width: 32px; height: 32px;
  background: #1ED760;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.facade--spotify .spotify-mark::after {
  content: ''; display: block;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.5 17.3c-.2.4-.7.5-1 .3-2.9-1.8-6.5-2.2-10.8-1.2-.4.1-.8-.2-.9-.5-.1-.4.2-.8.5-.9 4.7-1.1 8.7-.6 11.9 1.4.4.2.5.6.3.9zm1.4-3.2c-.3.4-.8.6-1.3.3-3.3-2-8.4-2.6-12.3-1.4-.5.1-1-.1-1.1-.6-.1-.5.2-1 .6-1.1 4.5-1.4 10.1-.7 13.9 1.6.4.2.5.7.2 1.2zm.1-3.3c-4-2.4-10.5-2.6-14.3-1.4-.6.2-1.2-.2-1.4-.7-.2-.6.2-1.2.7-1.4 4.4-1.3 11.6-1.1 16.2 1.7.5.3.7 1 .4 1.5-.3.5-1 .6-1.5.3z'/></svg>") center/contain no-repeat;
}

.player iframe { width: 100%; height: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.player.player--spotify iframe { aspect-ratio: auto; height: 232px; }

/* ----------- show notes ----------- */
.show-notes { padding-top: 56px; }
.show-notes h2 { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 18px; }
.show-notes ol { list-style: none; padding: 0; margin: 0 0 32px; counter-reset: topic; }
.show-notes ol li {
  counter-increment: topic;
  padding: 18px 0 18px 56px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
  font-size: 17px;
  line-height: 1.5;
}
.show-notes ol li::before {
  content: counter(topic, decimal-leading-zero);
  position: absolute;
  left: 0; top: 18px;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--nvm-accent-deep);
  letter-spacing: 0.05em;
}

/* ----------- guests ----------- */
.guests {
  background: var(--paper-warm);
  padding: 56px 40px;
  border-left: 3px solid var(--nvm-accent);
  margin: 56px 0 0;
}
.guests h2 { font-size: 22px; margin: 0 0 28px; font-style: italic; font-weight: 500; }
.guests h2 em { color: var(--nvm-accent-deep); }
.guests__list { display: grid; gap: 24px; }
@media (min-width: 720px) { .guests__list { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.guests__item .name { font-family: var(--serif); font-size: 21px; font-weight: 500; margin: 0 0 4px; }
.guests__item .role { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ----------- summary ----------- */
.summary { padding-top: 56px; }
.summary h2 { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 24px; }
.summary p { font-size: 18px; line-height: 1.7; color: var(--ink); }
.summary p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 64px;
  line-height: 0.85;
  font-weight: 500;
  font-style: italic;
  color: var(--nvm-accent-deep);
  margin: 6px 8px 0 0;
}
.summary .insight {
  border-left: 3px solid var(--nvm-accent);
  padding: 18px 28px;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--ink);
  margin: 36px 0;
  position: relative;
}
.summary .insight::before {
  content: '“';
  position: absolute;
  left: -8px; top: -28px;
  font-family: var(--serif);
  font-size: 80px;
  color: var(--nvm-accent);
  line-height: 1;
}

/* ----------- nav between episodes ----------- */
.ep-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 64px;
}
@media (min-width: 720px) { .ep-nav { grid-template-columns: 1fr 1fr; } }
.ep-nav a {
  padding: 32px 24px;
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background var(--transition);
}
.ep-nav a:hover { background: var(--paper-warm); }
.ep-nav a .label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 8px; }
.ep-nav a .title { font-family: var(--serif); font-size: 18px; font-weight: 500; }
.ep-nav .next { text-align: right; }

/* ----------- CTA strip ----------- */
.cta-strip {
  background: var(--nvm-blue-deep);
  color: var(--white);
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
}
.cta-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--nvm-accent);
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  margin: 0 0 12px;
  max-width: 22ch;
}
.cta-strip h2 em { color: var(--nvm-accent); font-style: italic; }
.cta-strip p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 56ch; margin-bottom: 28px; }
.cta-strip .ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ----------- newsletter / volg ----------- */
.follow {
  text-align: center;
}
.follow .section-title { margin-left: auto; margin-right: auto; }
.follow .section-lede { margin-left: auto; margin-right: auto; }
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.socials a:hover { background: var(--ink); color: var(--paper); }

/* ----------- footer ----------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 32px;
  font-size: 14px;
}
.site-footer a { color: rgba(255,255,255,0.78); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) { .site-footer__top { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h3 { color: var(--white); font-size: 14px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.site-footer__brand em { color: var(--nvm-accent); font-style: italic; }
.site-footer__brand .tagline { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 8px; max-width: 40ch; }
.credit { font-size: 12px; color: rgba(255,255,255,0.55); }
.credit a { color: var(--nvm-accent); }
.credit a:hover { color: var(--white); }

/* ----------- 404 ----------- */
.error-404 { text-align: center; padding: clamp(80px, 14vw, 180px) 0; }
.error-404 .big { font-family: var(--serif); font-style: italic; font-size: clamp(120px, 22vw, 240px); line-height: 1; color: var(--nvm-accent); margin: 0; }
.error-404 h1 { font-size: clamp(28px, 4vw, 44px); margin: 16px 0 24px; }
.error-404 p { color: var(--ink-soft); max-width: 50ch; margin: 0 auto 32px; }

/* ----------- about page ----------- */
.about-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 7vw, 80px);
}
.about-hero h1 { font-size: clamp(40px, 6vw, 80px); max-width: 18ch; margin: 16px 0 24px; font-weight: 500; }
.about-hero h1 em { color: var(--nvm-accent-deep); font-style: italic; }
.about-hero .lead { font-size: clamp(18px, 1.6vw, 22px); color: var(--ink-soft); max-width: 62ch; line-height: 1.55; }

.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  padding-top: 32px;
}
@media (min-width: 880px) { .about-grid { grid-template-columns: 1fr 1.5fr; gap: 80px; } }
.about-grid h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 16px; font-weight: 500; }
.about-grid h2 em { color: var(--nvm-accent-deep); font-style: italic; }
.about-grid p { font-size: 17px; color: var(--ink-soft); line-height: 1.7; }
.about-grid .meta-list { list-style: none; padding: 0; margin: 0; }
.about-grid .meta-list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; font-size: 15px; }
.about-grid .meta-list li span:first-child { color: var(--ink-mute); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; font-weight: 600; }

/* ----------- utilities ----------- */
.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; }
.visually-hidden { @extend .sr-only; }
.text-center { text-align: center; }
.divider { height: 1px; background: var(--line); margin: 64px 0; border: 0; }
.ext::after { content: ' ↗'; font-size: 0.85em; color: var(--ink-mute); }

/* focus */
:focus-visible { outline: 2px solid var(--nvm-blue); outline-offset: 3px; }
.btn:focus-visible { outline-offset: 4px; }

/* print niceties */
@media print {
  .site-header, .cta-strip, .ep-nav, .site-footer, .player-row { display: none; }
  body { background: white; color: black; }
}
