/* ============================================================
   Lessons from a Fintech — editorial microsite styles
   Tokens, base, layout, components, page-specific rules.
   ============================================================ */

:root {
  /* Color — warm cream paper, ink-blue body, editorial accents */
  --bg: oklch(0.965 0.018 85);       /* cream paper */
  --bg-2: oklch(0.945 0.022 85);     /* card / panel */
  --bg-3: oklch(0.92 0.025 82);      /* deeper panel */
  --bg-dark: oklch(0.22 0.045 250);  /* deep midnight ink-blue */
  --bg-warm: oklch(0.90 0.045 60);   /* warm sand band */
  --ink: oklch(0.22 0.045 250);      /* deep ink-blue */
  --ink-2: oklch(0.40 0.030 250);    /* secondary text */
  --ink-3: oklch(0.55 0.020 250);    /* tertiary / meta */
  --rule: oklch(0.85 0.020 80);      /* hairline */
  --rule-2: oklch(0.72 0.025 80);    /* stronger rule */

  /* Editorial accent palette — warm + cool counterpoints */
  --terra: oklch(0.58 0.14 38);      /* terracotta */
  --terra-soft: oklch(0.92 0.045 45);
  --ochre: oklch(0.72 0.13 75);      /* warm ochre */
  --ochre-soft: oklch(0.93 0.05 80);
  --moss: oklch(0.50 0.07 145);      /* deep moss green */
  --moss-soft: oklch(0.92 0.03 140);
  --signal: oklch(0.50 0.14 250);    /* signal blue */
  --signal-soft: oklch(0.93 0.04 245);

  /* Legacy aliases (existing rules read these) */
  --accent: var(--terra);
  --accent-soft: var(--terra-soft);
  --accent-ink: oklch(0.40 0.13 38);
  --warn: oklch(0.55 0.15 30);

  /* Type */
  --serif: "Fraunces", "Newsreader", "Source Serif Pro", Georgia, serif;
  --serif-alt: "Newsreader", "Source Serif Pro", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --shadow-sm: 0 1px 0 oklch(0.88 0.008 80);
  --shadow-card: 0 1px 0 oklch(0.90 0.008 80), 0 24px 48px -28px oklch(0.20 0.012 70 / 0.10);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;

  --max: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(ellipse 1200px 600px at 80% -10%, oklch(0.92 0.05 60 / 0.5), transparent 60%),
    radial-gradient(ellipse 800px 500px at -10% 30%, oklch(0.94 0.04 250 / 0.4), transparent 60%);
  background-attachment: fixed;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.muted { color: var(--ink-3); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ============================================================
   Top nav
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-nav.is-scrolled { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 28px; height: 28px;
  border: 1px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.brand-dot {
  width: 8px; height: 8px; background: var(--ink); border-radius: 50%;
}
.brand-name { display: inline-flex; flex-direction: column; line-height: 1.05; gap: 1px; }
.brand-line {
  font-family: var(--serif); font-size: 14px; letter-spacing: -0.01em; color: var(--ink);
}
.brand-line-2 { font-style: italic; }

.nav-links { display: flex; gap: 4px; justify-self: center; }
.nav-link {
  font-size: 14px;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
  transition: color .15s ease, background .15s ease;
}
.nav-link:hover { color: var(--ink); background: var(--bg-2); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 2px;
  height: 1px; background: var(--ink);
}

.nav-cta { display: flex; gap: 8px; justify-self: end; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--rule);
  border-radius: 8px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle-bars { position: relative; width: 18px; height: 12px; display: inline-block; }
.nav-toggle-bars span {
  position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink);
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 5px; }
.nav-toggle-bars span:nth-child(3) { top: 10px; }
.nav-toggle-bars.is-open span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav-toggle-bars.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle-bars.is-open span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform .28s cubic-bezier(.5,.05,.2,1);
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open { transform: translateY(0); }
.drawer-inner { padding: 88px 28px 28px; display: flex; flex-direction: column; gap: 28px; height: 100%; }
.drawer-eyebrow { color: var(--ink-3); }
.drawer-links { display: flex; flex-direction: column; }
.drawer-link {
  display: flex; align-items: baseline; gap: 16px;
  padding: 14px 0; border-top: 1px solid var(--rule);
  font-family: var(--serif); font-size: 28px; letter-spacing: -0.01em;
}
.drawer-link:last-child { border-bottom: 1px solid var(--rule); }
.drawer-num { color: var(--ink-3); font-size: 11px; }
.drawer-link.is-active { font-style: italic; }
.drawer-ctas { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

/* ============================================================
   Buttons / tags
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px;
  font-size: 14px; font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
  white-space: nowrap;
}
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover { background: var(--terra); color: var(--bg); }

.btn-secondary {
  background: var(--bg-2); color: var(--ink); border-color: var(--rule);
}
.btn-secondary:hover { background: var(--bg-3); }

.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.btn-link {
  background: transparent; color: var(--ink); border: 0; padding: 0;
  font-size: 14px;
  border-bottom: 1px solid var(--ink); border-radius: 0;
  padding-bottom: 1px;
}
.btn-link:hover { color: var(--accent-ink); border-bottom-color: var(--accent-ink); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.tag {
  display: inline-flex; align-items: center;
  font-family: var(--mono);
  font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 4px;
  background: var(--bg-3); color: var(--ink-2);
  border: 1px solid var(--rule);
}
.tag-accent { background: var(--terra-soft); color: oklch(0.40 0.13 38); border-color: color-mix(in oklab, var(--terra) 30%, transparent); }
.tag-ochre { background: var(--ochre-soft); color: oklch(0.45 0.12 75); border-color: color-mix(in oklab, var(--ochre) 35%, transparent); }
.tag-moss { background: var(--moss-soft); color: oklch(0.40 0.08 145); border-color: color-mix(in oklab, var(--moss) 30%, transparent); }
.tag-signal { background: var(--signal-soft); color: oklch(0.40 0.13 250); border-color: color-mix(in oklab, var(--signal) 30%, transparent); }
.tag-ink { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Auto-color tags by category text */
[data-cat="Revenue"] { background: var(--terra-soft); color: oklch(0.40 0.13 38); border-color: color-mix(in oklab, var(--terra) 30%, transparent); }
[data-cat="Sales"] { background: var(--ochre-soft); color: oklch(0.42 0.12 75); border-color: color-mix(in oklab, var(--ochre) 35%, transparent); }
[data-cat="Banks"] { background: var(--signal-soft); color: oklch(0.40 0.13 250); border-color: color-mix(in oklab, var(--signal) 30%, transparent); }
[data-cat="Procurement"] { background: var(--moss-soft); color: oklch(0.40 0.08 145); border-color: color-mix(in oklab, var(--moss) 30%, transparent); }
[data-cat="Funding"] { background: oklch(0.93 0.04 305); color: oklch(0.40 0.13 305); border-color: color-mix(in oklab, oklch(0.55 0.13 305) 30%, transparent); }
[data-cat="Resilience"] { background: var(--terra-soft); color: oklch(0.40 0.13 38); border-color: color-mix(in oklab, var(--terra) 30%, transparent); }
[data-cat="International Growth"] { background: var(--moss-soft); color: oklch(0.40 0.08 145); border-color: color-mix(in oklab, var(--moss) 30%, transparent); }
[data-cat="Ecosystem"] { background: var(--signal-soft); color: oklch(0.40 0.13 250); border-color: color-mix(in oklab, var(--signal) 30%, transparent); }
[data-cat="Traction"] { background: var(--terra-soft); color: oklch(0.40 0.13 38); }
[data-cat="Fundraising"] { background: oklch(0.93 0.04 305); color: oklch(0.40 0.13 305); }
[data-cat="Failure"] { background: oklch(0.92 0.04 30); color: oklch(0.40 0.14 30); }
[data-cat="Recovery"] { background: var(--moss-soft); color: oklch(0.40 0.08 145); }
[data-cat="Scaling"] { background: var(--ochre-soft); color: oklch(0.42 0.12 75); }

/* ============================================================
   Section header / general layout
   ============================================================ */
.page { padding-bottom: 96px; }

.section { padding: 88px 0; border-top: 1px solid var(--rule); position: relative; }
.section.tinted { background: var(--bg-2); }
.section.warm { background: linear-gradient(180deg, var(--ochre-soft), var(--bg)); border-top-color: color-mix(in oklab, var(--ochre) 25%, transparent); }
.section.dark { background: var(--bg-dark); color: oklch(0.92 0.025 60); border-top-color: oklch(0.30 0.045 250); }
.section.dark .section-title { color: oklch(0.95 0.025 60); }
.section.dark .section-title em { color: var(--ochre); }
.section.dark .section-kicker { color: oklch(0.75 0.025 60); }
.section.dark .eyebrow { color: var(--ochre); }
.section.dark .ch-n { color: var(--ochre); }
.section.dark .ch-title { color: oklch(0.95 0.025 60); }
.section.dark .ch-sum { color: oklch(0.75 0.025 60); }
.section.dark .ch-cta { color: var(--ochre); }
.section.dark .chapter-row { border-bottom-color: oklch(0.30 0.045 250); }
.section.dark .chapter-row:hover { background: oklch(0.26 0.045 250); }
.section.dark .btn-link { color: var(--ochre); border-bottom-color: var(--ochre); }
.section.no-rule { border-top: 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 720px) { .section { padding: 56px 0; } }

.eyebrow { color: var(--ink-3); margin-bottom: 12px; }

.section-header {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: end;
  margin-bottom: 40px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 400;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.section-title em { font-style: italic; font-variation-settings: "opsz" 144; color: var(--terra); font-weight: 400; }
.section-kicker {
  margin: 12px 0 0;
  max-width: 56ch;
  color: var(--ink-2);
  font-size: 16px;
}
@media (max-width: 720px) {
  .section-header { grid-template-columns: 1fr; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 72px 0 96px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 600px at 90% 20%, oklch(0.85 0.10 60 / 0.35), transparent 60%),
    radial-gradient(circle 500px at 10% 80%, oklch(0.85 0.08 250 / 0.25), transparent 60%);
}
.hero > .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 56px 0 64px; }
}
.hero-eyebrow { display: inline-flex; gap: 10px; align-items: center; margin-bottom: 24px; }
.hero-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--ink-3);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 6.6vw, 88px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 88px;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  padding-bottom: 0.25em;
}
.hero-headline em {
  font-variation-settings: "opsz" 144, "SOFT" 0 !important;
}
.hero-headline em {
  font-style: italic;
  color: var(--terra);
  font-variation-settings: "opsz" 144;
  position: relative;
  font-weight: 400;
}
.hero-headline em::after {
  content: "";
  position: absolute; left: 0; right: 4%; bottom: 0.05em;
  height: 0.18em;
  background: var(--ochre-soft);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 32px;
  line-height: 1.6;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-cred {
  display: flex; gap: 12px; align-items: flex-start;
  padding-top: 24px; border-top: 1px solid var(--rule);
  font-size: 13px; color: var(--ink-3); max-width: 52ch;
}
.hero-cred-tag { flex-shrink: 0; }

/* hero visual: stack of example lesson cards */
.hero-visual {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 30px 60px -40px oklch(0.22 0.045 250 / 0.25);
}
.hero-visual::after {
  content: ""; position: absolute; top: -8px; left: -8px; right: 16px; bottom: 16px;
  border: 1px solid var(--rule); border-radius: var(--r-lg);
  z-index: -1;
  background: linear-gradient(135deg, var(--ochre-soft), transparent 60%);
}

.hero-visual-eyebrow {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.hero-visual-eyebrow .mono.dim { color: var(--ink-3); }
.hero-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: transform .25s ease, border-color .2s ease;
}
.hero-card:hover { border-color: var(--ink); transform: translateX(2px); }
.hero-card-num {
  font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  flex-shrink: 0;
}
.hero-card-title {
  font-family: var(--serif); font-size: 17px; line-height: 1.25; letter-spacing: -0.015em;
  flex: 1; font-weight: 400;
}
.hero-card-tag { flex-shrink: 0; }

/* small ticker / metadata bar at top of hero */
.hero-meta {
  display: flex; gap: 24px; flex-wrap: wrap; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
  padding-bottom: 24px; border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
}
.hero-meta-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
  display: inline-block; margin-right: 6px;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
}

/* ============================================================
   Cards
   ============================================================ */
.grid { display: grid; gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.grid > * { background: var(--bg); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.cell {
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: background .15s ease;
}
.cell:hover { background: var(--bg-2); }
.cell-num { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.cell-title { font-family: var(--serif); font-size: 24px; line-height: 1.15; letter-spacing: -0.02em; margin: 0; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 30; }
.cell:nth-child(4n+1) .cell-num { color: var(--terra); }
.cell:nth-child(4n+2) .cell-num { color: var(--ochre); }
.cell:nth-child(4n+3) .cell-num { color: var(--moss); }
.cell:nth-child(4n+4) .cell-num { color: var(--signal); }
.cell-body { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* lesson card */
.lesson-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 24px 24px 20px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, transform .15s ease, box-shadow .2s ease;
  cursor: pointer;
  text-align: left;
  position: relative;
}
.lesson-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--terra); border-radius: var(--r-md) 0 0 var(--r-md);
  opacity: 0; transition: opacity .2s ease;
}
.lesson-card:hover { border-color: var(--ink); box-shadow: 0 12px 30px -20px oklch(0.22 0.045 250 / 0.25); }
.lesson-card:hover::before { opacity: 1; }
.lesson-card:nth-child(4n+1)::before { background: var(--terra); }
.lesson-card:nth-child(4n+2)::before { background: var(--ochre); }
.lesson-card:nth-child(4n+3)::before { background: var(--moss); }
.lesson-card:nth-child(4n+4)::before { background: var(--signal); }
.lesson-card-top { display: flex; justify-content: space-between; align-items: center; }
.lesson-card-title {
  font-family: var(--serif); font-size: 22px; line-height: 1.15;
  letter-spacing: -0.02em; margin: 0; font-weight: 400;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.lesson-card-summary {
  color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.lesson-card-meta {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px dashed var(--rule);
  font-size: 13px; color: var(--ink-3);
}
.lesson-card-related { display: flex; gap: 6px; align-items: center; }
.lesson-card-cta { color: var(--ink); font-weight: 500; display: inline-flex; gap: 6px; align-items: center; }
.lesson-card-cta .arrow { transition: transform .2s ease; }
.lesson-card:hover .lesson-card-cta .arrow { transform: translateX(3px); }

.lessons-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) { .lessons-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .lessons-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Chapters
   ============================================================ */
.chapters {
  border-top: 1px solid var(--rule);
}
.chapter-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 32px; align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: padding-left .2s ease;
}
.chapter-row:hover { padding-left: 12px; }
.chapter-row .ch-n {
  font-family: var(--mono); font-size: 12px; color: var(--ink-3);
}
.chapter-row .ch-title {
  font-family: var(--serif); font-size: 26px; letter-spacing: -0.02em; line-height: 1.1;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.chapter-row:nth-child(4n+1) .ch-n { color: var(--terra); }
.chapter-row:nth-child(4n+2) .ch-n { color: var(--ochre); }
.chapter-row:nth-child(4n+3) .ch-n { color: var(--moss); }
.chapter-row:nth-child(4n+4) .ch-n { color: var(--signal); }
.chapter-row .ch-sum { color: var(--ink-2); font-size: 15px; }
.chapter-row .ch-cta { color: var(--ink); display: inline-flex; gap: 6px; align-items: center; font-size: 14px; }
.chapter-row .ch-cta .arrow { transition: transform .2s ease; }
.chapter-row:hover .ch-cta .arrow { transform: translateX(4px); }
@media (max-width: 800px) {
  .chapter-row { grid-template-columns: 56px 1fr; gap: 16px; padding: 20px 0; }
  .chapter-row .ch-sum { grid-column: 1 / -1; padding-left: 72px; }
  .chapter-row .ch-cta { grid-column: 1 / -1; padding-left: 72px; }
}

/* ============================================================
   Resource cards
   ============================================================ */
.resources-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) { .resources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .resources-grid { grid-template-columns: 1fr; } }
.resource-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, background .15s ease;
}
.resource-card:hover { border-color: var(--ink); }
.resource-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.resource-format-stack { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.resource-format {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}
.resource-icon {
  width: 40px; height: 48px; border: 1px solid var(--ink); border-radius: 3px;
  position: relative;
  background:
    linear-gradient(var(--rule), var(--rule)) 8px 14px / 22px 1px no-repeat,
    linear-gradient(var(--rule), var(--rule)) 8px 20px / 16px 1px no-repeat,
    linear-gradient(var(--rule), var(--rule)) 8px 26px / 22px 1px no-repeat,
    linear-gradient(var(--rule), var(--rule)) 8px 32px / 14px 1px no-repeat;
  flex-shrink: 0;
}
.resource-icon::before {
  content: ""; position: absolute; top: -1px; right: -1px;
  width: 10px; height: 10px;
  background: var(--bg);
  border-left: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.resource-title { font-family: var(--serif); font-size: 21px; line-height: 1.15; letter-spacing: -0.02em; margin: 0; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 30; }
.resource-card:nth-child(4n+1) .resource-icon { background-color: var(--terra-soft); border-color: oklch(0.55 0.13 38); }
.resource-card:nth-child(4n+2) .resource-icon { background-color: var(--ochre-soft); border-color: oklch(0.55 0.13 75); }
.resource-card:nth-child(4n+3) .resource-icon { background-color: var(--moss-soft); border-color: oklch(0.45 0.08 145); }
.resource-card:nth-child(4n+4) .resource-icon { background-color: var(--signal-soft); border-color: oklch(0.45 0.13 250); }
.resource-desc { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin: 0; flex: 1; }
.resource-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; }

/* ============================================================
   Quote strip
   ============================================================ */
.quote-strip {
  padding: 112px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-dark);
  color: oklch(0.92 0.025 60);
  position: relative;
  overflow: hidden;
}
.quote-strip::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle 500px at 80% 30%, oklch(0.55 0.13 38 / 0.35), transparent 60%),
    radial-gradient(circle 400px at 20% 80%, oklch(0.55 0.13 75 / 0.25), transparent 60%);
}
.quote-content { position: relative; }
.quote-strip .quote-mark { color: var(--ochre); font-size: 96px; }
.quote-strip .quote-text em { color: var(--ochre); font-style: italic; }
.quote-strip .mono { color: oklch(0.7 0.025 60); }
.quote-content { max-width: 880px; margin: 0 auto; padding: 0 32px; text-align: left; }
.quote-mark { font-family: var(--serif); font-size: 64px; line-height: 1; color: var(--ink-3); margin-bottom: 8px; }
.quote-text {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.18; letter-spacing: -0.02em;
  margin: 0; font-weight: 400;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.quote-attr { margin-top: 24px; display: flex; gap: 12px; align-items: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: oklch(0.85 0.008 80); padding: 64px 0 32px; }
.footer-grid {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .brand-mark { border-color: oklch(0.7 0.008 80); }
.footer-grid .brand-dot { background: oklch(0.85 0.008 80); }
.footer-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-title { font-family: var(--serif); font-size: 17px; color: oklch(0.95 0.008 80); }
.footer-tag { color: oklch(0.75 0.008 80); font-size: 14px; margin: 4px 0; line-height: 1.5; }
.footer-tag.muted { color: oklch(0.55 0.008 80); font-size: 12.5px; font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.footer-col { display: flex; flex-direction: column; gap: 6px; }
.footer-h { color: oklch(0.6 0.008 80); margin-bottom: 8px; }
.footer-link { color: oklch(0.85 0.008 80); font-size: 14px; padding: 4px 0; transition: color .15s ease; }
.footer-link:hover { color: var(--bg); }
.footer-small { color: oklch(0.7 0.008 80); font-size: 13.5px; line-height: 1.5; margin: 0 0 8px; }
.site-footer .btn-ghost { color: oklch(0.95 0.008 80); border-color: oklch(0.7 0.008 80); }
.site-footer .btn-ghost:hover { background: oklch(0.95 0.008 80); color: var(--ink); }
.footer-rule { border-top: 1px solid oklch(0.32 0.012 70); margin: 48px 32px 16px; max-width: var(--max); margin-left: auto; margin-right: auto; }
.footer-meta { max-width: var(--max); margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Lessons Library: filters, search, empty state
   ============================================================ */
.library-controls {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
  position: sticky; top: 64px; z-index: 5;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(8px);
}
.library-search {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--bg-2); border: 1px solid var(--rule);
  border-radius: 8px;
  transition: border-color .15s ease;
}
.library-search:focus-within { border-color: var(--ink); }
.library-search input {
  flex: 1; border: 0; outline: none; background: transparent;
  font: inherit; color: var(--ink); font-size: 14px;
}
.library-search input::placeholder { color: var(--ink-3); }
.library-search-icon { color: var(--ink-3); }
.library-search kbd {
  font-family: var(--mono); font-size: 10px;
  border: 1px solid var(--rule); border-radius: 4px;
  padding: 2px 6px; color: var(--ink-3);
  background: var(--bg);
}

.filter-row {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 14px;
  font-size: 13px;
  border: 1px solid var(--rule);
  background: var(--bg);
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .15s ease;
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.results-meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px;
}

.empty-state {
  border: 1px dashed var(--rule-2);
  border-radius: var(--r-lg);
  padding: 64px 32px;
  text-align: center;
  color: var(--ink-2);
}
.empty-state h3 {
  font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em;
  font-weight: 500; margin: 0 0 8px;
}
.empty-state .btn { margin-top: 20px; }

/* ============================================================
   Chapter Detail
   ============================================================ */
.chapter-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--rule);
}
.chapter-hero-eyebrow { display: flex; gap: 14px; align-items: center; margin-bottom: 24px; }
.chapter-hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 6vw, 72px); line-height: 1.0;
  letter-spacing: -0.035em; margin: 0 0 20px; font-weight: 400;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.chapter-hero-intro {
  font-size: 18px; color: var(--ink-2); max-width: 64ch; line-height: 1.6;
  margin: 0;
}

.chapter-body {
  display: grid; grid-template-columns: 200px 1fr; gap: 64px;
  padding: 64px 0;
}
@media (max-width: 900px) { .chapter-body { grid-template-columns: 1fr; gap: 32px; } }

.chapter-toc {
  position: sticky; top: 100px; align-self: start;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 6px;
}
.toc-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.toc-link {
  font-size: 14px; color: var(--ink-2); padding: 4px 0;
  border-left: 1px solid var(--rule); padding-left: 12px;
  transition: all .15s ease;
}
.toc-link:hover { color: var(--ink); border-left-color: var(--ink); }
@media (max-width: 900px) { .chapter-toc { position: static; flex-direction: row; flex-wrap: wrap; } .toc-link { border-left: 0; padding-left: 0; padding-right: 12px; border-right: 1px solid var(--rule); } }

.chapter-sec {
  padding: 28px 0; border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 160px 1fr; gap: 32px;
  scroll-margin-top: 96px;
}
.chapter-sec:first-child { border-top: 0; padding-top: 0; }
.chapter-sec h2 {
  font-family: var(--serif); font-size: 18px; letter-spacing: -0.005em;
  font-weight: 500; margin: 0; color: var(--ink-3);
}
.chapter-sec h2 .num {
  display: block; font-family: var(--mono); font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; font-weight: 400;
}
.chapter-sec .body { font-size: 16.5px; line-height: 1.65; color: var(--ink); }
.chapter-sec .body p { margin: 0 0 12px; }
.chapter-sec .body ul { margin: 0; padding: 0; list-style: none; }
.chapter-sec .body li {
  padding: 12px 0; border-top: 1px dashed var(--rule);
  display: flex; gap: 16px; align-items: baseline;
  font-size: 16px; line-height: 1.5;
}
.chapter-sec .body li:first-child { border-top: 0; padding-top: 0; }
.chapter-sec .body li::before {
  content: counter(li, decimal-leading-zero);
  counter-increment: li;
  font-family: var(--mono); font-size: 11px; color: var(--ink-3); flex-shrink: 0;
  letter-spacing: 0.04em;
}
.chapter-sec .body ul { counter-reset: li; }
.chapter-sec.callout { background: linear-gradient(135deg, var(--terra-soft), var(--ochre-soft)); padding: 36px; border-radius: var(--r-lg); border: 1px solid color-mix(in oklab, var(--terra) 20%, transparent); margin: 12px 0; }
.chapter-sec.callout h2 { color: var(--terra); }
.chapter-sec.callout .body { font-family: var(--serif); font-size: 26px; line-height: 1.25; letter-spacing: -0.02em; font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 50; color: oklch(0.30 0.05 38); }
@media (max-width: 900px) {
  .chapter-sec { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
}

.chapter-related {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding: 32px 0; border-top: 1px solid var(--rule);
}
@media (max-width: 720px) { .chapter-related { grid-template-columns: 1fr; } }

.chapter-next {
  display: flex; justify-content: space-between; align-items: center;
  padding: 36px; background: var(--bg-dark); color: oklch(0.92 0.025 60);
  border-radius: var(--r-lg); margin-top: 40px; gap: 24px;
  position: relative; overflow: hidden;
}
.chapter-next::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle 300px at 90% 50%, oklch(0.55 0.13 38 / 0.3), transparent 60%);
}
.chapter-next > * { position: relative; }
.chapter-next .next-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: oklch(0.7 0.008 80); margin-bottom: 6px; }
.chapter-next .next-title { font-family: var(--serif); font-size: 28px; letter-spacing: -0.02em; font-weight: 400; font-variation-settings: "opsz" 144; color: var(--ochre); }
.chapter-next .btn-ghost { color: var(--bg); border-color: oklch(0.7 0.008 80); }
.chapter-next .btn-ghost:hover { background: var(--bg); color: var(--ink); }

/* ============================================================
   Interview clips
   ============================================================ */
.clips-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (max-width: 720px) { .clips-grid { grid-template-columns: 1fr; } }
.clip-card {
  background: var(--bg);
  border: 1px solid var(--rule); border-radius: var(--r-md);
  padding: 24px;
  display: grid; grid-template-columns: 96px 1fr; gap: 20px;
  transition: border-color .2s ease;
  text-align: left;
  cursor: pointer;
}
.clip-card:hover { border-color: var(--ink); }
.clip-thumb {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--r-sm);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.clip-card:nth-child(4n+1) .clip-thumb { background: linear-gradient(135deg, var(--terra), oklch(0.30 0.10 38)); }
.clip-card:nth-child(4n+2) .clip-thumb { background: linear-gradient(135deg, var(--ochre), oklch(0.40 0.12 75)); }
.clip-card:nth-child(4n+3) .clip-thumb { background: linear-gradient(135deg, var(--moss), oklch(0.30 0.07 145)); }
.clip-card:nth-child(4n+4) .clip-thumb { background: linear-gradient(135deg, var(--signal), oklch(0.30 0.12 250)); }
.clip-thumb::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 6px, oklch(0.30 0.012 70) 6px 7px);
  opacity: 0.5;
}
.clip-thumb-play {
  position: relative; z-index: 1;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--bg); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.clip-time {
  position: absolute; bottom: 6px; right: 6px;
  font-family: var(--mono); font-size: 10px;
  background: oklch(0.20 0.012 70 / 0.85); color: var(--bg);
  padding: 2px 6px; border-radius: 3px; z-index: 1;
}
.clip-content { display: flex; flex-direction: column; gap: 10px; }
.clip-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.clip-title { font-family: var(--serif); font-size: 21px; line-height: 1.15; letter-spacing: -0.02em; margin: 0; font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 30; }
.clip-insight { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.clip-meta {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
  padding-top: 12px; border-top: 1px dashed var(--rule);
}

/* ============================================================
   About page
   ============================================================ */
.about-hero { padding: 80px 0 64px; }
.about-hero h1 {
  font-family: var(--serif); font-size: clamp(48px, 6vw, 76px); line-height: 0.98;
  letter-spacing: -0.035em; margin: 0 0 24px; font-weight: 400; max-width: 18ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.about-lede {
  font-size: 20px; color: var(--ink-2); line-height: 1.55; max-width: 64ch;
  margin: 0 0 16px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  padding: 64px 0; border-top: 1px solid var(--rule);
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; } }
.about-grid h2 {
  font-family: var(--serif); font-size: 32px; letter-spacing: -0.025em; line-height: 1.1;
  font-weight: 400; margin: 0 0 16px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.about-list {
  list-style: none; padding: 0; margin: 16px 0 0;
  border-top: 1px solid var(--rule);
}
.about-list li {
  padding: 14px 0; border-bottom: 1px solid var(--rule);
  display: flex; gap: 16px; align-items: baseline;
  font-size: 15.5px;
}
.about-list li::before {
  content: "→"; color: var(--ink-3); font-size: 13px;
}

.creator-card {
  background: linear-gradient(135deg, var(--ochre-soft), var(--terra-soft));
  border: 1px solid color-mix(in oklab, var(--ochre) 25%, transparent);
  border-radius: var(--r-lg);
  padding: 40px;
  display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: start;
}
@media (max-width: 600px) { .creator-card { grid-template-columns: 1fr; gap: 20px; padding: 28px; } }
.creator-avatar {
  width: 96px; height: 96px;
  background: var(--bg-dark); color: var(--ochre);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 36px; letter-spacing: -0.03em;
  font-style: italic; font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.creator-card h3 {
  font-family: var(--serif); font-size: 28px; letter-spacing: -0.02em; line-height: 1.15;
  font-weight: 400; margin: 0 0 12px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.creator-card p { color: var(--ink-2); margin: 0 0 16px; line-height: 1.6; max-width: 60ch; }

/* ============================================================
   Contact / Contribute
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px;
  padding: 64px 0;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 64px; } }

.contact-intent {
  display: flex; flex-direction: column; gap: 8px;
}
.contact-intent-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.intent-pill {
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  background: var(--bg);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  transition: all .15s ease;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.intent-pill:hover { border-color: var(--ink); }
.intent-pill.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.intent-pill .arrow { font-size: 14px; color: var(--ink-3); transition: transform .2s ease, color .2s ease; }
.intent-pill.is-active .arrow { color: var(--bg); transform: translateX(4px); }
.intent-pill:hover .arrow { transform: translateX(3px); }

.form {
  background: var(--bg-2); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
}
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px; color: var(--ink);
  padding: 12px 14px;
  border: 1px solid var(--rule); border-radius: 8px;
  background: var(--bg); outline: none;
  transition: border-color .15s ease;
  font-family: var(--sans);
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field-error { color: var(--warn); font-size: 12.5px; }
.form-success {
  background: var(--accent-soft); color: var(--accent-ink);
  border: 1px solid color-mix(in oklab, var(--accent) 30%, transparent);
  padding: 24px; border-radius: var(--r-md);
  display: flex; gap: 16px; align-items: flex-start;
}
.form-success-mark {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent-ink); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   Misc / utilities
   ============================================================ */
.kicker-strip {
  display: flex; gap: 32px; padding: 16px 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  white-space: nowrap;
}

/* Stat number colour rotation */
.stat-num:nth-child(4n+1) { color: var(--terra); }
.stat-num:nth-child(4n+2) { color: var(--ochre); }
.stat-num:nth-child(4n+3) { color: var(--moss); }
.stat-num:nth-child(4n+4) { color: var(--signal); }
.kicker-strip span { flex-shrink: 0; }
.kicker-strip span::before {
  content: "·"; margin-right: 32px; color: var(--rule-2);
}
.kicker-strip span:first-child::before { display: none; }

.divider { height: 1px; background: var(--rule); margin: 0; border: 0; }

.arrow { display: inline-block; }

::selection { background: oklch(0.85 0.04 250); color: var(--ink); }

/* page hero (used by Library, Resources, Interviews, About, Contact) */
.page-hero { padding: 64px 0 40px; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(44px, 5.6vw, 72px); line-height: 1.0;
  letter-spacing: -0.035em; margin: 0 0 16px; font-weight: 400; max-width: 18ch;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.page-hero h1 em { font-style: italic; color: var(--terra); font-variation-settings: "opsz" 144; }
.page-hero p { color: var(--ink-2); font-size: 18px; max-width: 60ch; line-height: 1.55; margin: 0; }

/* tiny "back" link for chapter etc */
.back-link {
  display: inline-flex; gap: 6px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3);
  padding: 8px 0; margin-bottom: 8px;
}
.back-link:hover { color: var(--ink); }

/* highlight key phrase in serif headings */
.under {
  background-image: linear-gradient(transparent 65%, var(--ochre-soft) 65%);
  background-repeat: no-repeat; background-size: 100% 100%;
  padding: 0 2px;
}

/* Pull-quote drop cap for editorial body */
.dropcap::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 4.5em;
  line-height: 0.85;
  padding: 0.05em 0.08em 0 0;
  font-weight: 400;
  font-style: italic;
  color: var(--terra);
  font-variation-settings: "opsz" 144;
}

/* Marquee-ish ticker accent */
.hero-meta-dot { background: var(--terra) !important; box-shadow: 0 0 0 4px color-mix(in oklab, var(--terra) 20%, transparent) !important; }
