/* John Cucksack — The Documented Record
   Premium minimal + cinematic documentary */

:root {
  --bg: #F5F0E8;
  --paper: #EEE6DC;
  --navy: #0D1724;
  --navy-2: #162438;
  --ink: #111418;
  --muted: #646B73;
  --red: #B5332E;
  --red-dark: #8E2521;
  --gold: #B28C4E;
  --divider: #D5CDC1;
  --white: #FFFFFF;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1320px;
  --prose: 40.5rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--bg);
  background-image: url("images/paper.jpg");
  background-size: 900px;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  text-wrap: pretty;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { background: none; border: 0; cursor: pointer; color: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--navy);
  color: var(--bg);
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.skip-link:focus { top: 0.75rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 220ms var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(13, 23, 36, 0.08);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  justify-self: start;
  min-width: 0;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: var(--navy);
}
.brand-tag {
  margin-top: 0.15rem;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.nav-desktop {
  display: none;
  justify-content: center;
  gap: 1.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-desktop a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem 0;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.3rem;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}
.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }
.publisher-link {
  display: none;
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--navy);
  white-space: nowrap;
}
.publisher-link span { color: var(--red); margin-left: 0.15rem; }
.nav-toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 200ms var(--ease), opacity 200ms;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.nav-mobile {
  display: none;
  border-top: 1px solid var(--divider);
  background: var(--bg);
  padding: 0.5rem 1.25rem 1.25rem;
}
.nav-mobile.is-open { display: block; }
.nav-mobile a {
  display: block;
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-mobile .publisher-link {
  display: inline-flex;
  margin-top: 1rem;
  justify-self: start;
}

@media (min-width: 1040px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0;
    min-height: 0;
    padding-top: 0.7rem;
    padding-bottom: 0;
  }
  .brand { grid-column: 1; grid-row: 1; padding-bottom: 0.55rem; }
  .nav-desktop {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 1.7rem;
    border-top: 1px solid var(--divider);
    padding: 0.5rem 0;
    font-size: 0.72rem;
  }
  .publisher-link {
    display: inline-flex;
    align-items: center;
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 0.35rem;
  }
  .nav-toggle { display: none; }
}

/* ---------- Shared type ---------- */
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0.55rem 0 1rem;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  color: var(--navy);
}
.lede {
  font-size: 1.12rem;
  color: var(--ink);
  max-width: 42rem;
  line-height: 1.7;
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 4.5rem 0; }
.hairline {
  border: 0;
  border-top: 1px solid var(--divider);
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  min-height: 44px;
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  background: transparent;
  color: var(--bg);
  border: 1px solid color-mix(in srgb, var(--bg) 45%, transparent);
}
.btn-ghost:hover { border-color: var(--bg); background: color-mix(in srgb, var(--bg) 10%, transparent); }
.btn-navy {
  background: var(--navy);
  color: var(--bg);
}
.btn-navy:hover { background: var(--navy-2); }
.btn-text {
  padding-left: 0;
  padding-right: 0;
  color: var(--red);
  letter-spacing: 0.06em;
}
.btn-text:hover { color: var(--red-dark); }

/* ---------- Homepage hero ---------- */
.home-hero {
  position: relative;
  max-width: 1360px;
  margin: 0.85rem auto 0;
  min-height: 680px;
  height: min(92svh, 740px);
  overflow: hidden;
  background: var(--navy);
  color: var(--bg);
}
.home-hero picture {
  position: absolute;
  inset: 0;
  display: block;
}
.home-hero img.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.home-hero .hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,23,36,0.18) 0%, rgba(13,23,36,0.15) 38%, rgba(13,23,36,0.88) 100%);
  pointer-events: none;
}
.home-hero .hero-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.25rem 2rem;
  max-width: 36rem;
}
.home-hero .eyebrow { color: #e26a64; }
.home-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 11vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0.55rem 0 0.85rem;
  text-wrap: balance;
  color: var(--white);
}
.home-hero h1 .keep { white-space: nowrap; }
.home-hero .hero-sub {
  margin: 0 0 1.4rem;
  color: color-mix(in srgb, var(--bg) 82%, transparent);
  font-size: 1.02rem;
  max-width: 28rem;
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero-deco {
  display: none;
}
.hero-hand {
  display: none;
}
.ai-label {
  position: absolute;
  right: 0.7rem;
  bottom: 0.55rem;
  z-index: 3;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  background: rgba(13,23,36,0.45);
  padding: 0.22rem 0.45rem;
}

@media (min-width: 780px) {
  .home-hero {
    min-height: 650px;
    height: 650px;
    margin-top: 1.1rem;
  }
  .home-hero img.hero-photo { object-position: 82% 28%; }
  .home-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(13,23,36,0.88) 0%, rgba(13,23,36,0.62) 38%, rgba(13,23,36,0.18) 68%, rgba(13,23,36,0.28) 100%),
      linear-gradient(180deg, rgba(13,23,36,0.12) 0%, rgba(13,23,36,0.05) 50%, rgba(13,23,36,0.45) 100%);
  }
  .home-hero .hero-copy {
    justify-content: center;
    padding: 3.5rem 3.5rem 3.5rem 3.25rem;
    max-width: 38rem;
  }
  .home-hero h1 { font-size: clamp(3.6rem, 5.4vw, 5.4rem); }
  .hero-deco {
    display: flex;
    position: absolute;
    right: 2.2rem;
    top: 2.2rem;
    z-index: 2;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    gap: 1.6rem;
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--bg) 62%, transparent);
  }
  .hero-hand {
    display: block;
    position: absolute;
    right: 7%;
    bottom: 12%;
    z-index: 2;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.2;
    color: color-mix(in srgb, var(--bg) 78%, var(--gold));
    transform: rotate(-7deg);
    text-align: right;
    pointer-events: none;
  }
}

/* grain overlay */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("images/grain.png");
  background-size: 220px;
}

/* ---------- Intro ---------- */
.intro-grid {
  display: grid;
  gap: 2rem;
}
.intro-copy p { max-width: 40rem; }
.follow-money {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--navy);
  margin: 1.1rem 0;
  line-height: 1.2;
}
.follow-money span {
  display: inline-block;
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.1rem;
}

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ---------- Timeline ---------- */
.timeline-head { margin-bottom: 2rem; }
.timeline-track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.6rem;
  scrollbar-width: thin;
  scrollbar-color: var(--divider) transparent;
}
.timeline-card {
  flex: 0 0 min(78vw, 340px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--divider);
  padding: 1.5rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.year-mark {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--red);
  line-height: 1;
  margin: 0 0 0.85rem;
}
.timeline-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0.8rem;
  color: var(--navy);
  text-wrap: balance;
}
.timeline-card p {
  color: var(--ink);
  margin: 0 0 1.2rem;
  flex: 1;
  font-size: 0.98rem;
}
.timeline-card .btn-text { margin-top: auto; }

@media (min-width: 980px) {
  .timeline-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 1.4rem;
  }
  .timeline-card { flex: none; }
}

/* ---------- Quote band ---------- */
.quote-band {
  background: var(--navy);
  color: var(--bg);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.quote-band .wrap { max-width: 54rem; }
.quote-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-wrap: balance;
}
.quote-band .support {
  margin: 1.4rem 0 0;
  color: color-mix(in srgb, var(--bg) 72%, transparent);
  max-width: 38rem;
}
.quote-band .signoff {
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 650;
}

/* ---------- Features ---------- */
.feature-list {
  display: grid;
  gap: 2.2rem;
}
.feature-card {
  display: grid;
  gap: 1.1rem;
  text-decoration: none;
  color: inherit;
}
.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--navy);
}
.feature-meta {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 400;
  margin: 0.35rem 0 0.55rem;
  color: var(--navy);
  text-wrap: balance;
}
.feature-card p { margin: 0 0 0.8rem; color: var(--ink); }
.feature-card .btn-text { color: var(--red); }

@media (min-width: 800px) {
  .feature-card {
    grid-template-columns: 1.05fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .feature-card:nth-child(even) { grid-template-columns: 1fr 1.05fr; }
  .feature-card:nth-child(even) .feature-visual { order: 2; }
  .feature-card img { aspect-ratio: 4 / 3; }
}

/* ---------- Pattern dark ---------- */
.pattern-block {
  background: var(--navy);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.pattern-inner {
  display: grid;
  min-height: 520px;
}
.pattern-inner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.pattern-copy {
  padding: 2.4rem 1.25rem 3rem;
  position: relative;
  z-index: 1;
}
.pattern-block .eyebrow { color: #e26a64; }
.pattern-block .section-title { color: var(--white); }
.pattern-copy p { color: color-mix(in srgb, var(--bg) 82%, transparent); max-width: 36rem; }
.pattern-copy .follow-money { color: var(--white); }

@media (min-width: 900px) {
  .pattern-inner {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 560px;
  }
  .pattern-inner img {
    height: 100%;
    min-height: 560px;
  }
  .pattern-copy {
    padding: 4.5rem 3.5rem 4.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* ---------- Reactions ---------- */
.reaction-grid {
  display: grid;
  gap: 1.1rem;
}
.reaction-card {
  background: var(--white);
  border: 1px solid var(--divider);
  padding: 1.4rem 1.3rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.reaction-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--red);
}
.reaction-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 650;
  margin-bottom: 0.85rem;
}
.reaction-top img {
  width: 14px;
  height: 14px;
  color: var(--ink);
}
.reaction-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--navy);
  font-weight: 400;
}
.reaction-card .who {
  margin: 1rem 0 0.2rem;
  font-weight: 650;
  font-size: 0.92rem;
}
.reaction-card .meta {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0 0 1rem;
}
.reaction-card .btn {
  margin-top: auto;
  align-self: flex-start;
  border: 1px solid var(--divider);
  color: var(--navy);
  font-size: 0.72rem;
}
.reaction-card .btn:hover { border-color: var(--navy); }

@media (min-width: 720px) {
  .reaction-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .reaction-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* ---------- Publisher strip ---------- */
.publisher-strip {
  background: var(--paper);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 2.4rem 0;
}
.publisher-strip .eyebrow { color: var(--muted); }
.publisher-strip a {
  font-family: var(--serif);
  font-size: 1.7rem;
  text-decoration: none;
  color: var(--navy);
}
.publisher-strip a:hover { color: var(--red); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: var(--bg);
  padding: 3.2rem 0 1.6rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
.site-footer .brand-name { color: var(--bg); }
.site-footer .brand-tag { color: color-mix(in srgb, var(--bg) 55%, transparent); }
.footer-blurb {
  color: color-mix(in srgb, var(--bg) 70%, transparent);
  max-width: 22rem;
  font-size: 0.95rem;
  margin: 0.8rem 0 0;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.4rem;
}
.footer-nav a {
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 82%, transparent);
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid color-mix(in srgb, var(--bg) 14%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  font-size: 0.82rem;
  color: color-mix(in srgb, var(--bg) 58%, transparent);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
  .footer-nav { grid-template-columns: 1fr 1fr; justify-self: end; }
}

/* ---------- Page heroes (inner) ---------- */
.page-hero {
  position: relative;
  min-height: 380px;
  background: var(--navy);
  color: var(--bg);
  overflow: hidden;
}
.page-hero img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,23,36,0.25) 0%, rgba(13,23,36,0.78) 100%);
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 3.4rem;
  padding-bottom: 2.6rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0.5rem 0 0.8rem;
  text-wrap: balance;
  color: var(--white);
}
.page-hero .dek {
  font-size: 1.12rem;
  color: color-mix(in srgb, var(--bg) 86%, transparent);
  max-width: 38rem;
  line-height: 1.55;
}
.page-hero .byline {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 650;
}

/* ---------- Article body ---------- */
.article-layout {
  padding: 3rem 0 5rem;
}
.article-body {
  max-width: var(--prose);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.article-body > p.drop::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 3.6rem;
  line-height: 0.8;
  padding: 0.18rem 0.5rem 0 0;
  color: var(--navy);
  font-weight: 400;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 400;
  color: var(--navy);
  margin: 2.6rem 0 0.9rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.article-body p { margin: 0 0 1.15rem; }
.article-body ul, .article-body ol { padding-left: 1.2rem; margin: 0 0 1.2rem; }
.article-body li { margin: 0.3rem 0; }
.article-body a { color: var(--red-dark); }
.pull {
  margin: 2rem 0;
  padding: 0.4rem 0 0.4rem 1.2rem;
  border-left: 2px solid var(--red);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--navy);
  text-wrap: balance;
}
.theme-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: grid;
  gap: 0.55rem;
}
.theme-list li {
  background: var(--white);
  border: 1px solid var(--divider);
  padding: 0.7rem 0.95rem;
  font-weight: 550;
}
.compare {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 1.8rem;
}
.compare article {
  background: var(--white);
  border: 1px solid var(--divider);
  padding: 1.2rem 1.15rem;
}
.compare h3 {
  font-family: var(--serif);
  margin: 0 0 0.6rem;
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 400;
}
.compare ul { margin: 0; padding-left: 1.05rem; }
@media (min-width: 720px) {
  .compare { grid-template-columns: 1fr 1fr; }
}

.sources-block {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--divider);
}
.sources-block h2 { margin-top: 0; }
.source-row {
  display: grid;
  gap: 0.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
}
.source-row strong { font-family: var(--serif); font-size: 1.12rem; color: var(--navy); font-weight: 400; }
.source-row span { color: var(--muted); font-size: 0.88rem; }
.source-row:hover strong { color: var(--red); }

.next-read {
  margin-top: 2.8rem;
  padding: 1.4rem;
  background: var(--navy);
  color: var(--bg);
}
.next-read .eyebrow { color: #e26a64; }
.next-read a {
  font-family: var(--serif);
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--white);
}
.next-read a:hover { color: var(--gold); }

/* ---------- Archive ---------- */
.archive-list { display: grid; gap: 0; }
.archive-item {
  display: grid;
  gap: 0.4rem 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
}
.archive-item .yr {
  font-family: var(--serif);
  color: var(--red);
  font-size: 1.15rem;
}
.archive-item h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 400;
  margin: 0;
  color: var(--navy);
  text-wrap: balance;
}
.archive-item p { margin: 0.2rem 0 0; color: var(--muted); }
@media (min-width: 760px) {
  .archive-item {
    grid-template-columns: 7rem 1fr auto;
    align-items: center;
  }
}

/* ---------- Sources library ---------- */
.source-group { margin: 2.4rem 0 3rem; }
.source-group h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--divider);
}
.source-card {
  display: grid;
  gap: 0.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
}
.source-card .pub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.source-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0.15rem 0;
  color: var(--navy);
}
.source-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.source-card:hover h3 { color: var(--red); }

/* ---------- Definitions ---------- */
.def-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--divider);
}
.def-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 0.8rem;
}
.frameworks {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.frameworks a {
  display: block;
  background: var(--white);
  border: 1px solid var(--divider);
  padding: 1rem 1.1rem;
  text-decoration: none;
  font-weight: 600;
}
.frameworks a:hover { border-color: var(--navy); }
.frameworks span { display: block; font-weight: 400; color: var(--muted); font-size: 0.88rem; margin-top: 0.2rem; }

/* ---------- Year chapters on reactions page ---------- */
.year-chapter { margin: 2.6rem 0 3.2rem; }
.year-chapter > h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--red);
  font-weight: 400;
  margin: 0 0 1.1rem;
}

/* ---------- Misc ---------- */
.caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.45rem;
}
.inline-quote {
  font-family: var(--serif);
  font-style: italic;
  color: var(--navy);
}
figure.article-figure { margin: 1.6rem 0 1.8rem; }
figure.article-figure img { width: 100%; }
.note {
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--divider);
  padding-top: 0.8rem;
  margin-top: 2rem;
}

body.nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 389px) {
  .home-hero h1 { font-size: 2.5rem; }
}
