/* =====================================================
   Insure Your Agent — Shared Design System
   Institutional but approachable. Editorial grid.
   ===================================================== */

:root {
  --bg: #FAF8F3;
  --bg-alt: #F3EFE6;
  --ink: #0F1B3D;
  --ink-soft: #3A4464;
  --ink-muted: #6B7391;
  --rule: #D9D2C1;
  --rule-soft: #E8E2D2;
  --accent: #2D4A7C;
  --accent-hover: #1E3560;
  --warm: #B8694A;
  --warm-soft: #D08A6B;
  --navy: #0F1B3D;
  --navy-text: #E8E2D2;
  --navy-rule: #2A3558;
  --max: 1240px;
  --col: 1040px;
  --prose: 680px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography ------------------------------------------ */

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  font-optical-sizing: auto;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.15;
  font-weight: 450;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 500;
}

h4 {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.005em;
}

p {
  margin: 0 0 1.1em;
  color: var(--ink-soft);
}

p.lede {
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  max-width: 32ch;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(45, 74, 124, 0.35);
  transition: color 0.15s, text-decoration-color 0.15s;
}

a:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}

.label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-feature-settings: 'ss02';
}

.label-warm {
  color: var(--warm);
}

/* Layout ---------------------------------------------- */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 40px;
}

.prose {
  max-width: var(--prose);
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.rule-soft {
  border-top-color: var(--rule-soft);
}

/* Masthead -------------------------------------------- */

.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: none;
}

.masthead-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Wordmark -------------------------------------------- */

.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}

.wordmark:hover { color: var(--ink); }

.wordmark-glyph {
  width: 36px;
  height: 42px;
  flex-shrink: 0;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark-name {
  font-family: 'Fraunces', serif;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant: small-caps;
  letter-spacing: 0.04em;
}

.wordmark-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Nav ------------------------------------------------- */

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  padding: 6px 0;
  position: relative;
}

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

.nav a.active {
  color: var(--ink);
}

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 2px;
  background: var(--warm);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}

.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* Hero ------------------------------------------------ */

.hero {
  padding: 100px 0 90px;
  border-bottom: 1px solid var(--rule);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.hero .label {
  margin-bottom: 28px;
  display: block;
}

.hero h1 {
  margin-bottom: 32px;
  max-width: 14ch;
}

.hero-meta {
  border-left: 1px solid var(--rule);
  padding-left: 28px;
  padding-top: 8px;
}

.hero-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-top: 20px;
}

.hero-meta dt:first-child { margin-top: 0; }

.hero-meta dd {
  margin: 4px 0 0;
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}

/* Page header (interior pages) ------------------------ */

.pageheader {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--rule);
}

.pageheader .label { margin-bottom: 24px; display: block; }

.pageheader h1 {
  max-width: 20ch;
  margin-bottom: 28px;
}

.pageheader .dek {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}

/* Sections -------------------------------------------- */

section {
  padding: 90px 0;
  border-bottom: 1px solid var(--rule);
}

section:last-of-type { border-bottom: 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: baseline;
}

.section-head-inline .label { margin-bottom: 14px; display: block; }

.section-head h2 {
  max-width: 20ch;
  margin: 0;
}

/* Three column framing -------------------------------- */

.framing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  counter-reset: frame;
}

.framing-item {
  counter-increment: frame;
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
}

.framing-item::before {
  content: counter(frame, decimal-leading-zero);
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  color: var(--warm);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}

.framing-item h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.framing-item p {
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

/* Start Here block ------------------------------------ */

.starthere {
  background: var(--navy);
  color: var(--navy-text);
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}

.starthere h2,
.starthere h3 { color: #fff; }

.starthere p { color: rgba(232, 226, 210, 0.75); }

.starthere .label { color: var(--warm-soft); }

.starthere-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.starthere-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  background: var(--warm);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 2px;
  letter-spacing: 0.005em;
  transition: background 0.15s;
}

.starthere-cta:hover { background: var(--warm-soft); color: #fff; }

.starthere-cta svg { width: 18px; height: 18px; }

.starthere-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--navy-rule);
}

.starthere-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--navy-rule);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: baseline;
}

.starthere-list .num {
  font-family: 'Fraunces', serif;
  color: var(--warm-soft);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
}

.starthere-list h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.starthere-list p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(232, 226, 210, 0.65);
}

/* Evidence block -------------------------------------- */

.evidence {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.evidence-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  margin: 0 0 24px;
  max-width: 22ch;
}

.evidence-attribution {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.evidence-attribution strong {
  color: var(--ink);
  font-weight: 600;
  display: block;
}

.evidence-body p:last-child { margin-bottom: 0; }

/* Callouts -------------------------------------------- */

.callout {
  background: var(--bg-alt);
  border-left: 3px solid var(--warm);
  padding: 28px 32px;
  margin: 40px 0;
}

.callout .label {
  color: var(--warm);
  margin-bottom: 10px;
  display: block;
}

.callout h4 {
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.callout p:last-child { margin-bottom: 0; }

.callout p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Pullquote ------------------------------------------- */

.pullquote {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  padding: 24px 0 24px 32px;
  border-left: 2px solid var(--warm);
  margin: 40px 0;
  font-weight: 400;
  max-width: 36ch;
}

.pullquote cite {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  color: var(--ink-muted);
  margin-top: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Article body --------------------------------------- */

.article {
  display: grid;
  grid-template-columns: minmax(0, 680px) 260px;
  gap: 80px;
  padding: 80px 0 100px;
}

.article-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}

.article-aside .label { margin-bottom: 14px; display: block; }

.article h2 {
  margin-top: 56px;
  font-size: 1.75rem;
}

.article h2:first-child { margin-top: 0; }

.article h3 {
  margin-top: 36px;
  font-size: 1.2rem;
}

.article p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.article ul, .article ol {
  padding-left: 22px;
  margin: 0 0 1.2em;
}

.article li {
  color: var(--ink-soft);
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* References ------------------------------------------ */

.references {
  background: var(--bg-alt);
  padding: 60px 0;
  border-top: 1px solid var(--rule);
}

.references .label { margin-bottom: 24px; display: block; }

.references ol {
  list-style: none;
  padding: 0;
  counter-reset: ref;
  max-width: 780px;
}

.references li {
  counter-increment: ref;
  padding: 14px 0 14px 36px;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  position: relative;
}

.references li::before {
  content: counter(ref, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: 'Fraunces', serif;
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}

.references li:last-child { border-bottom: 1px solid var(--rule-soft); }

/* Questions page -------------------------------------- */

.questions {
  padding: 80px 0 100px;
}

.question {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--rule);
}

.question:last-of-type { border-bottom: 1px solid var(--rule); }

.question-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--warm);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.question-body h2 {
  font-size: 1.9rem;
  margin-bottom: 24px;
  max-width: 22ch;
}

.question-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
}

.question-nextstep {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 2px;
  letter-spacing: 0.005em;
}

.question-nextstep:hover { background: var(--accent); color: var(--bg); }

.question-redflags {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--warm);
  max-width: 60ch;
}

.question-redflags .label { color: var(--warm); display: block; margin-bottom: 8px; }

.question-redflags p { font-size: 0.95rem; margin: 0; }

/* Coverage pathway ------------------------------------ */

.pathway {
  padding: 80px 0 100px;
}

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

.pathway-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.pathway-step {
  counter-increment: step;
  position: relative;
  padding: 40px 0 40px 80px;
  border-top: 1px solid var(--rule);
}

.pathway-step:last-child { border-bottom: 1px solid var(--rule); }

.pathway-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 40px;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--warm);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  padding: 8px 16px 8px 0;
  border-right: 1px solid var(--rule);
}

.pathway-step h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.pathway-step p { font-size: 1.02rem; }

.pathway-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--rule-soft);
}

.pathway-meta dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
}

.pathway-meta dd {
  margin: 4px 0 0;
  font-size: 0.92rem;
  color: var(--ink);
}

.pathway-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  background: var(--bg-alt);
  padding: 32px;
  border-left: 2px solid var(--warm);
}

.pathway-sidebar .label { display: block; margin-bottom: 12px; }

.pathway-sidebar h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.pathway-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.pathway-sidebar li {
  padding: 12px 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 0.9rem;
}

.pathway-sidebar li:last-child { border-bottom: 1px solid var(--rule-soft); }

.pathway-sidebar a { display: block; }

.pathway-sidebar .host {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

/* Network page ---------------------------------------- */

.network-list {
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 60px;
}

.network-card {
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.network-card .domain {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.network-card .role {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.network-card p {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.network-card .visit {
  font-size: 0.85rem;
  font-weight: 500;
}

.network-self {
  background: var(--bg-alt);
  padding: 28px;
  margin-top: -28px;
  border-left: 3px solid var(--warm);
  border-top: 0;
}

.network-self::before {
  content: 'You are here';
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--warm);
  margin-bottom: 14px;
}

/* Footer ---------------------------------------------- */

.footer {
  background: var(--navy);
  color: var(--navy-text);
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--navy-rule);
}

.footer-brand .wordmark-name { color: #fff; }
.footer-brand .wordmark-sub { color: rgba(232, 226, 210, 0.55); }
.footer-brand p {
  color: rgba(232, 226, 210, 0.7);
  max-width: 36ch;
  font-size: 0.92rem;
  margin-top: 22px;
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 226, 210, 0.55);
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--navy-text);
  text-decoration: none;
  font-size: 0.9rem;
  text-decoration-color: transparent;
}

.footer-col a:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.4); text-decoration: underline; }

.footer-legal {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(232, 226, 210, 0.55);
  letter-spacing: 0.02em;
}

.footer-legal a { color: rgba(232, 226, 210, 0.75); }

/* Responsive ------------------------------------------ */

@media (max-width: 960px) {
  body { font-size: 17px; }

  .container, .container-narrow { padding: 0 24px; }

  .masthead-inner { padding: 18px 24px; gap: 16px; }

  .nav {
    display: none;
  }

  .nav-mobile {
    display: flex;
    gap: 16px;
  }

  .nav-cta { padding: 8px 14px; font-size: 0.8rem; }

  .hero { padding: 60px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { border-left: 0; border-top: 1px solid var(--rule); padding: 20px 0 0; }

  .pageheader { padding: 50px 0 40px; }

  section { padding: 60px 0; }

  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }

  .framing { grid-template-columns: 1fr; gap: 36px; }

  .starthere-grid { grid-template-columns: 1fr; gap: 40px; }

  .evidence { grid-template-columns: 1fr; gap: 32px; }

  .article { grid-template-columns: 1fr; gap: 40px; padding: 50px 0 70px; }
  .article-aside { position: static; }

  .question { grid-template-columns: 1fr; gap: 20px; padding: 40px 0; }
  .question-num { font-size: 2.2rem; }

  .pathway-grid { grid-template-columns: 1fr; gap: 40px; }
  .pathway-sidebar { position: static; }
  .pathway-meta { grid-template-columns: 1fr; gap: 14px; }
  .pathway-step { padding: 32px 0 32px 56px; }
  .pathway-step::before { font-size: 1.3rem; top: 32px; }

  .network-list { grid-template-columns: 1fr; gap: 40px; padding: 50px 0 70px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .footer-legal { flex-direction: column; gap: 10px; }
}

@media (min-width: 961px) {
  .nav-mobile { display: none; }
}

/* Footer disclaimer ----------------------------------- */

.footer-disclaimer {
  padding: 28px 0 20px;
  margin-top: 24px;
  border-top: 1px solid rgba(232, 226, 210, 0.15);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(232, 226, 210, 0.68);
  max-width: 900px;
}

.footer-disclaimer strong {
  color: rgba(232, 226, 210, 0.9);
  font-weight: 500;
}

/* Latest reading (index) ------------------------------- */

.latest-reading {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}

.latest-reading-card {
  display: block;
  padding: 26px 24px 28px;
  background: var(--card);
  border: 1px solid var(--rule-soft);
  border-radius: 6px;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.latest-reading-card:hover {
  border-color: var(--warm);
  transform: translateY(-2px);
}

.latest-reading-card .kicker {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--warm);
  margin-bottom: 12px;
  display: block;
}

.latest-reading-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  line-height: 1.3;
  margin: 0 0 12px;
  color: var(--ink);
}

.latest-reading-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 14px;
}

.latest-reading-card .meta {
  font-size: 0.78rem;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .latest-reading { grid-template-columns: 1fr; }
}

/* Article (long-form) --------------------------------- */

.longform {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 0 90px;
}

.longform .byline {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0 0 28px;
  letter-spacing: 0.01em;
}

.longform .byline strong { color: var(--ink); font-weight: 500; }

.longform h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--ink);
}

.longform .dek {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ink-muted);
  margin: 0 0 36px;
  font-weight: 400;
}

.longform h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem;
  line-height: 1.25;
  margin: 56px 0 18px;
  color: var(--ink);
}

.longform h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.22rem;
  line-height: 1.3;
  margin: 36px 0 12px;
  color: var(--ink);
}

.longform p {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink);
  margin: 0 0 18px;
}

.longform ul, .longform ol {
  margin: 0 0 22px 0;
  padding-left: 22px;
}

.longform li {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: var(--ink);
}

.longform a {
  color: var(--warm);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.takeaways {
  background: var(--card);
  border: 1px solid var(--rule-soft);
  border-left: 3px solid var(--warm);
  padding: 26px 28px 22px;
  margin: 36px 0 40px;
  border-radius: 4px;
}

.takeaways h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  color: var(--warm);
}

.takeaways ul {
  margin: 0;
  padding-left: 18px;
}

.takeaways li {
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.longform .faq-section h2 { margin-top: 48px; }
.longform .faq-q {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin: 24px 0 10px;
  color: var(--ink);
}

.article-footer-nav {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  gap: 24px;
  flex-wrap: wrap;
}

.article-footer-nav a { color: var(--warm); text-decoration: none; }
.article-footer-nav a:hover { text-decoration: underline; }

/* Utilities ------------------------------------------- */

.hidden { display: none; }
.sr { position: absolute; left: -9999px; }
