/* ==========================================================================
   Bodenhamer & Co. — Shared site stylesheet
   ========================================================================== */

:root {
  --navy: #0f1e35;
  --navy-deep: #081123;
  --navy-soft: #1a2c4a;
  --moss: #5a7a4f;
  --moss-bright: #7a9b6e;
  --moss-deep: #3d5638;
  --grey-50: #f4f5f4;
  --grey-100: #e6e8e5;
  --grey-200: #cdd1cb;
  --grey-300: #9aa19a;
  --grey-400: #6b716b;
  --grey-500: #4a4f4a;
  --grey-600: #2d302d;
  --bone: #f8f7f3;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bone);
  color: var(--navy);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; }

a { color: inherit; }

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.wrap-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ====== TOP BAR / NAVIGATION ====== */
.topbar {
  background: var(--navy);
  color: var(--grey-100);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.topbar .brand {
  color: var(--bone);
  font-weight: 500;
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.topbar .brand-mark {
  width: 18px; height: 18px;
  border: 1.5px solid var(--moss-bright);
  background: linear-gradient(135deg, transparent 50%, var(--moss-bright) 50%);
}
.topbar nav { display: flex; gap: 32px; }
.topbar nav a {
  color: var(--grey-300);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.topbar nav a:hover, .topbar nav a.active { color: var(--bone); }
.topbar nav a.active::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  height: 2px; background: var(--moss-bright);
}

/* ====== MASTHEAD (HOME) ====== */
.masthead {
  background: var(--navy);
  color: var(--bone);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.masthead::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(122, 155, 110, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.masthead::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--moss-bright) 0%, var(--moss-bright) 25%, transparent 25%);
}
.masthead-inner { position: relative; z-index: 2; }

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-bright);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 16px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--moss-bright);
}

h1.headline {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--bone);
  max-width: 14ch;
  font-variation-settings: "opsz" 72;
}
h1.headline em {
  font-style: italic;
  color: var(--moss-bright);
  font-weight: 400;
}

.deck {
  margin-top: 40px;
  max-width: 580px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--grey-200);
  font-weight: 300;
}

.masthead-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(205, 209, 203, 0.15);
  max-width: 920px;
}
.masthead-meta .stat { font-family: 'IBM Plex Mono', monospace; }
.masthead-meta .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 8px;
}
.masthead-meta .value {
  font-family: 'Newsreader', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ====== INNER PAGE HEADER ====== */
.page-header {
  background: var(--navy);
  color: var(--bone);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(122, 155, 110, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 2; }

.breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-bright);
  margin-bottom: 32px;
}
.breadcrumb a {
  color: var(--grey-300);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--bone); }
.breadcrumb span { margin: 0 12px; color: var(--grey-400); }

h1.page-title {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--bone);
  max-width: 18ch;
  font-variation-settings: "opsz" 72;
}
h1.page-title em {
  font-style: italic;
  color: var(--moss-bright);
  font-weight: 400;
}

.page-deck {
  margin-top: 28px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--grey-200);
  font-weight: 300;
}

/* ====== SECTIONS ====== */
section {
  padding: 96px 0;
  border-bottom: 1px solid var(--grey-100);
}
section.dark {
  background: var(--navy-deep);
  color: var(--bone);
  border-bottom: none;
}
section.tinted {
  background: var(--grey-50);
}
section.compact { padding: 64px 0; }

.section-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: start;
}
.section-header .marker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  padding-top: 14px;
  border-top: 2px solid var(--moss);
  display: inline-block;
  width: fit-content;
}
section.dark .section-header .marker {
  color: var(--moss-bright);
  border-color: var(--moss-bright);
}

.section-header h2 {
  font-family: 'Newsreader', serif;
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--navy);
  max-width: 18ch;
  font-variation-settings: "opsz" 60;
}
section.dark .section-header h2 { color: var(--bone); }

.body-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
}
.body-grid .lead {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-400);
  line-height: 1.8;
}
section.dark .body-grid .lead { color: var(--grey-300); }

.body-grid .body { max-width: 700px; }
.body-grid .body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-500);
  margin-bottom: 22px;
}
section.dark .body-grid .body p { color: var(--grey-200); }

.body-grid .body p strong {
  color: var(--navy);
  font-weight: 500;
}
section.dark .body-grid .body p strong { color: var(--bone); }

.body-grid .body h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 36px 0 14px;
}
section.dark .body-grid .body h3 { color: var(--bone); }

.body-grid .body h3:first-child { margin-top: 0; }

/* ====== CRITERIA LIST ====== */
ul.criteria {
  list-style: none;
  margin: 32px 0 0;
  border-top: 1px solid var(--grey-200);
}
ul.criteria li {
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid var(--grey-200);
  position: relative;
  font-size: 16px;
  color: var(--grey-500);
  line-height: 1.5;
}
ul.criteria li::before {
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  position: absolute; left: 0; top: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--moss);
  font-weight: 500;
}
ul.criteria { counter-reset: item; }

/* ====== CAPABILITIES GRID ====== */
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}
.capability {
  border-top: 2px solid var(--navy);
  padding-top: 24px;
}
.capability .cap-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 12px;
}
.capability h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 12px;
}
.capability p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-500);
  margin-bottom: 14px;
}
.capability a.read-more {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--moss);
  padding-bottom: 2px;
}
.capability a.read-more:hover { color: var(--navy); border-color: var(--navy); }

/* ====== ENGAGEMENT CARDS ====== */
.engagements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
}
.engagement {
  background: var(--bone);
  padding: 44px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.3s ease;
}
.engagement:hover { background: var(--grey-50); }
.engagement .tier {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 20px;
}
.engagement .price {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 44px;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 72;
}
.engagement .price .unit {
  font-size: 18px;
  color: var(--grey-400);
  font-style: italic;
}
.engagement .name {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 22px;
  margin: 16px 0 6px;
  color: var(--navy);
}
.engagement .duration {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-200);
}
.engagement p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--grey-500);
  margin-bottom: 20px;
}
.engagement ul.features {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
}
.engagement ul.features li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-500);
  padding: 8px 0 8px 18px;
  position: relative;
  line-height: 1.5;
}
.engagement ul.features li::before {
  content: '';
  position: absolute; left: 0; top: 14px;
  width: 8px; height: 1px;
  background: var(--moss);
}

/* ====== METHOD STEPS ====== */
.method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.step {
  padding: 28px 0 0;
  border-top: 1px solid rgba(205, 209, 203, 0.25);
  position: relative;
}
.step .step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--moss-bright);
  margin-bottom: 16px;
  display: block;
}
.step h4 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--bone);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey-200);
}

/* ====== DETAILED SCOPE BLOCK (engagements page) ====== */
.scope-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding: 56px 0;
  border-bottom: 1px solid var(--grey-200);
}
.scope-block:last-child { border-bottom: none; }
.scope-block .scope-meta .tier {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 16px;
}
.scope-block .scope-meta .price {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 48px;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 72;
}
.scope-block .scope-meta .price .unit {
  font-size: 18px; color: var(--grey-400); font-style: italic;
}
.scope-block .scope-meta .name {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}
.scope-block .scope-meta .duration {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.scope-block .scope-detail h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
  margin: 24px 0 10px;
  letter-spacing: -0.005em;
}
.scope-block .scope-detail h3:first-child { margin-top: 0; }
.scope-block .scope-detail p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-500);
  margin-bottom: 14px;
}
.scope-block .scope-detail ul {
  list-style: none;
  margin: 12px 0 24px;
}
.scope-block .scope-detail ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey-500);
}
.scope-block .scope-detail ul li::before {
  content: '—';
  position: absolute; left: 0; top: 6px;
  color: var(--moss);
  font-family: 'IBM Plex Mono', monospace;
}

/* ====== DISCLOSURE BLOCK ====== */
.disclosure-block {
  border-left: 3px solid var(--moss);
  padding: 8px 0 8px 36px;
  max-width: 700px;
}
.disclosure-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-bright);
  margin-bottom: 24px;
}
.disclosure-block p {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--grey-200);
  margin-bottom: 18px;
  font-style: italic;
  font-variation-settings: "opsz" 24;
}
.disclosure-block p:last-child { margin-bottom: 0; }

/* ====== ESSAY / LONG-FORM CONTENT ====== */
.essay {
  font-family: 'Newsreader', serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--grey-600);
  font-variation-settings: "opsz" 16;
  font-weight: 400;
}
.essay > * { max-width: 680px; margin-left: auto; margin-right: auto; }
.essay h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 64px auto 24px;
  font-variation-settings: "opsz" 60;
}
.essay h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
  margin: 40px auto 12px;
}
.essay p { margin-bottom: 22px; }
.essay p strong { font-weight: 600; color: var(--navy); }
.essay em { font-style: italic; }
.essay hr {
  border: none;
  border-top: 1px solid var(--grey-200);
  margin: 56px auto;
  max-width: 100px;
}
.essay .essay-byline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 56px;
}
.essay .essay-lede {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: var(--grey-500);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--grey-200);
}
.essay-end {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-400);
  text-align: center;
  margin: 64px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
  font-style: normal;
}

/* ====== CTA ====== */
.cta-block {
  display: flex; flex-direction: column;
  gap: 32px;
  max-width: 600px;
}
.cta-block > p {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: var(--grey-500);
  font-variation-settings: "opsz" 32;
}
.cta-row {
  display: flex; gap: 16px;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--bone);
  padding: 20px 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid var(--navy);
}
.cta-primary:hover {
  background: var(--moss);
  border-color: var(--moss);
}
.cta-primary::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.25s ease;
}
.cta-primary:hover::after { transform: translateX(4px); }
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: transparent;
  color: var(--navy);
  padding: 20px 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: all 0.25s ease;
}
.cta-secondary:hover {
  background: var(--navy);
  color: var(--bone);
}

.contact-direct {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  font-size: 14px;
  color: var(--grey-500);
}
.contact-direct a {
  color: var(--moss-deep);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--moss);
  padding-bottom: 1px;
}

/* ====== FAQ ====== */
.faq-list { border-top: 1px solid var(--grey-200); }
.faq-item {
  border-bottom: 1px solid var(--grey-200);
  padding: 28px 0;
}
.faq-item h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.faq-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey-500);
  margin-bottom: 12px;
}
.faq-item p:last-child { margin-bottom: 0; }

/* ====== READING / ESSAY INDEX ====== */
.reading-list { border-top: 1px solid var(--grey-200); }
.reading-item {
  border-bottom: 1px solid var(--grey-200);
  padding: 32px 0;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 32px;
  align-items: baseline;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}
.reading-item:hover { background: var(--grey-50); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }
.reading-item .date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
}
.reading-item h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.reading-item p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grey-500);
}
.reading-item .arrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 18px;
  color: var(--moss);
}

/* ====== FOOTER ====== */
footer {
  background: var(--navy-deep);
  color: var(--grey-300);
  padding: 56px 0 40px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-grid h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-bright);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-grid p, .footer-grid li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey-200);
}
.footer-grid ul { list-style: none; }
.footer-grid a {
  color: var(--grey-200);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer-grid a:hover {
  color: var(--bone);
  border-bottom-color: var(--moss-bright);
}
.footer-base {
  padding-top: 32px;
  border-top: 1px solid rgba(205, 209, 203, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-400);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .wrap, .topbar-inner, .footer-inner { padding: 0 24px; }
  .wrap-narrow { padding: 0 24px; }
  .topbar-inner { padding: 14px 24px; }
  .topbar nav { display: none; }
  .masthead { padding: 64px 0 72px; }
  .page-header { padding: 56px 0 64px; }
  .section-header, .body-grid, .scope-block { grid-template-columns: 1fr; gap: 24px; }
  .engagements, .capabilities, .method { grid-template-columns: 1fr; gap: 32px; }
  .masthead-meta { grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-base { flex-direction: column; gap: 12px; align-items: flex-start; }
  section { padding: 64px 0; }
  .disclosure-block { padding-left: 24px; }
  .reading-item { grid-template-columns: 1fr; gap: 8px; }
  .reading-item .arrow { display: none; }
  .essay h2 { font-size: 26px; margin: 44px auto 18px; }
  .essay { font-size: 17px; }
}

/* ====== ENTRANCE ANIMATIONS ====== */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.masthead .eyebrow,
.page-header .breadcrumb { animation: rise 0.7s ease-out 0.1s backwards; }
.masthead h1, .page-header h1 { animation: rise 0.9s ease-out 0.25s backwards; }
.masthead .deck, .page-header .page-deck { animation: rise 0.9s ease-out 0.45s backwards; }
.masthead-meta { animation: rise 0.9s ease-out 0.65s backwards; }
