/* ==========================================================================
   sarojininaidu.com — "The Many Voices of Sarojini"
   Core stylesheet. Layout, typography, colour fields, components.
   Breakpoint overrides live in responsive.css.
   ========================================================================== */

/* --------------------------------------------------------------- 1. reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul[class], ol[class] { list-style: none; }
img, picture, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
table { border-collapse: collapse; width: 100%; }

/* -------------------------------------------------------------- 2. tokens */
:root {
  /* surfaces */
  --ivory:      #F7F1E6;
  --paper:      #FCF8F1;
  --paper-warm: #F1E7D6;
  --blush:      #F2DCD7;
  --blush-deep: #E7C6C0;

  /* darks */
  --plum:       #3A0E33;
  --plum-deep:  #260820;
  --plum-soft:  #5E2453;
  --indigo:     #232A6B;
  --indigo-deep:#171C4C;
  --indigo-soft:#3A4293;

  /* speaking colours */
  --coral:      #D34A42;
  --rose:       #E0837B;
  --turquoise:  #2C948C;
  --turquoise-l:#5FB9B1;
  --bronze:     #A0762C;
  --magenta:    #8E2A6E;

  /* ink */
  --ink:        #2B1226;
  --ink-mid:    #614A5B;
  --ink-faint:  #6E5A6B;
  --on-dark:    #F6EFE4;
  --on-dark-mid:#C9B4C4;

  /* the voice accent — swapped by js/voice-selector.js */
  --accent:     #D34A42;
  --accent-2:   #E0837B;
  --accent-ink: #7E241F;

  /* type */
  --f-display: "Bodoni Moda", "Didot", "Playfair Display", Georgia, "Times New Roman", serif;
  --f-body:    "Spectral", Georgia, "Iowan Old Style", "Times New Roman", serif;
  --f-ui:      "Jost", "Futura", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --f-script:  "Mrs Saint Delafield", "Snell Roundhand", "Apple Chancery", cursive;

  /* metrics */
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --maxw: 1560px;
  --measure: 68ch;
  --head-h: 74px;
  --rule: 1px solid rgba(43,18,38,.16);
  --rule-light: 1px solid rgba(246,239,228,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* voice themes ------------------------------------------------------------ */
html[data-voice="poet"]        { --accent:#D34A42; --accent-2:#E0837B; --accent-ink:#7E241F; }
html[data-voice="orator"]      { --accent:#2C948C; --accent-2:#5FB9B1; --accent-ink:#17605A; }
html[data-voice="nationalist"] { --accent:#232A6B; --accent-2:#3A4293; --accent-ink:#171C4C; }
html[data-voice="leader"]      { --accent:#8E2A6E; --accent-2:#B3548F; --accent-ink:#5E1848; }
html[data-voice="governor"]    { --accent:#A0762C; --accent-2:#C29A52; --accent-ink:#6B4C15; }

/* ---------------------------------------------------------- 3. base type */
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: clamp(1rem, .96rem + .22vw, 1.125rem);
  line-height: 1.78;
  font-weight: 300;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.02; letter-spacing: -.012em; }

.display-xl { font-size: clamp(3.4rem, 12vw, 12rem); line-height: .86; letter-spacing: -.03em; }
.display-l  { font-size: clamp(2.6rem, 7vw, 6.2rem);  line-height: .95; letter-spacing: -.022em; }
.display-m  { font-size: clamp(2rem, 4.4vw, 3.9rem);  line-height: 1.02; letter-spacing: -.018em; }
.display-s  { font-size: clamp(1.5rem, 2.6vw, 2.35rem); line-height: 1.14; letter-spacing: -.01em; }

.script { font-family: var(--f-script); font-weight: 400; line-height: 1; }

.label {
  font-family: var(--f-ui);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.label--accent { color: var(--accent-ink); }
.on-dark .label, .field-dark .label { color: var(--on-dark-mid); }

.lede {
  font-size: clamp(1.15rem, 1.02rem + .6vw, 1.6rem);
  line-height: 1.62;
  font-weight: 300;
  color: var(--ink-mid);
}
.field-dark .lede, .field-indigo .lede { color: var(--on-dark-mid); }

.prose p + p { margin-top: 1.15em; }
.prose { max-width: var(--measure); }
.prose strong { font-weight: 600; color: var(--ink); }
.field-dark .prose strong, .field-indigo .prose strong { color: var(--on-dark); }
.prose em { font-style: italic; }

.serif-italic { font-family: var(--f-body); font-style: italic; font-weight: 300; }

/* drop numeral used to open long analytical passages */
.numeral {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .8;
  color: var(--accent);
  display: block;
  margin-bottom: .35em;
  transition: color .5s var(--ease);
}

/* ------------------------------------------------------- 4. layout blocks */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { width: 100%; max-width: 900px; margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(4.5rem, 9vw, 9.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 5.5vw, 5.5rem); }

.field-ivory  { background: var(--ivory); }
.field-paper  { background: var(--paper); }
.field-blush  { background: var(--blush); }
.field-warm   { background: var(--paper-warm); }
.field-dark   { background: var(--plum);   color: var(--on-dark); }
.field-darker { background: var(--plum-deep); color: var(--on-dark); }
.field-indigo { background: var(--indigo); color: var(--on-dark); }
.field-dark h1, .field-dark h2, .field-dark h3,
.field-darker h1, .field-darker h2, .field-darker h3,
.field-indigo h1, .field-indigo h2, .field-indigo h3 { color: var(--on-dark); }
.field-dark p, .field-darker p, .field-indigo p { color: var(--on-dark-mid); }

/* asymmetric editorial grid */
.grid12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.5rem, 3vw, 3.5rem); align-items: start; }
.c1-5   { grid-column: 1 / 6; }
.c1-6   { grid-column: 1 / 7; }
.c1-7   { grid-column: 1 / 8; }
.c2-7   { grid-column: 2 / 8; }
.c2-8   { grid-column: 2 / 9; }
.c3-9   { grid-column: 3 / 10; }
.c6-13  { grid-column: 6 / 13; }
.c7-13  { grid-column: 7 / 13; }
.c8-13  { grid-column: 8 / 13; }
.c5-13  { grid-column: 5 / 13; }
.c1-13  { grid-column: 1 / 13; }
.c3-10  { grid-column: 3 / 10; }
.c10-13 { grid-column: 10 / 13; }
.c4-10  { grid-column: 4 / 11; }
.rail   { grid-column: 1 / 3; }
.c1-8   { grid-column: 1 / 9; }
.motif-cell { grid-column: span 4; }

/* rotated archival label running up the side of a section */
.vlabel {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--f-ui);
  font-size: .66rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.field-dark .vlabel, .field-indigo .vlabel, .field-darker .vlabel { color: var(--on-dark-mid); }

.rule { height: 1px; background: rgba(43,18,38,.18); border: 0; margin-block: clamp(2rem,4vw,3.5rem); }
.field-dark .rule, .field-indigo .rule, .field-darker .rule { background: rgba(246,239,228,.22); }

/* section masthead used at the top of every inner page ------------------- */
.masthead { padding-top: calc(var(--head-h) + clamp(3rem, 7vw, 7rem)); padding-bottom: clamp(2.5rem, 5vw, 5rem); }
.masthead__no { font-family: var(--f-ui); font-size: .7rem; letter-spacing: .36em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 1.6rem; display: block; }
.masthead__title { margin-bottom: 1.4rem; }
.masthead__standfirst { max-width: 58ch; }

/* ------------------------------------------------------------- 5. the ink line */
.ink { display: block; width: 100%; overflow: visible; }
.ink path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.6;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition: stroke .5s var(--ease);
}
.ink--thin path { stroke-width: 1; }
.ink--pale path { stroke: rgba(43,18,38,.28); }
.field-dark .ink--pale path, .field-indigo .ink--pale path { stroke: rgba(246,239,228,.3); }

/* draw-on-scroll */
.ink[data-draw] path { stroke-dasharray: var(--len, 1200); stroke-dashoffset: var(--len, 1200); }
.ink[data-draw].is-drawn path { transition: stroke-dashoffset 2.4s var(--ease), stroke .5s var(--ease); stroke-dashoffset: 0; }

.ink-divider { padding-block: clamp(2rem, 4vw, 3.5rem); }
.ink-divider .ink { height: 40px; }

/* ------------------------------------------------------------ 6. buttons */
.btn {
  display: inline-flex; align-items: center; gap: .85rem;
  font-family: var(--f-ui); font-size: .78rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; text-decoration: none;
  padding: 1.05rem 2rem; border: 1px solid currentColor; border-radius: 0;
  color: var(--ink); background: transparent;
  position: relative; overflow: hidden; cursor: pointer;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; z-index: -1;
  transition: transform .5s var(--ease);
}
.btn > * { position: relative; }
.btn:hover, .btn:focus-visible { color: var(--ivory); border-color: var(--accent); }
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn { isolation: isolate; }
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.field-dark .btn, .field-indigo .btn, .field-darker .btn { color: var(--on-dark); }

/* quiet text link with an ink underline */
.tlink {
  font-family: var(--f-ui); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: .7rem;
  padding-bottom: .45rem; border-bottom: 1px solid var(--accent);
  transition: gap .35s var(--ease), color .35s var(--ease);
}
.tlink:hover, .tlink:focus-visible { gap: 1.2rem; color: var(--accent-ink); }
.field-dark .tlink:hover, .field-indigo .tlink:hover { color: var(--accent-2); }

/* ------------------------------------------------- 7. image plates */
/* Historical photographs are never cropped: contain + natural ratio. */
.plate { position: relative; }
.plate__frame {
  background: linear-gradient(150deg, #efe5d5, #e3d6c2);
  padding: clamp(.7rem, 1.4vw, 1.25rem);
  position: relative;
}
.field-dark .plate__frame, .field-indigo .plate__frame, .field-darker .plate__frame {
  background: linear-gradient(150deg, rgba(246,239,228,.14), rgba(246,239,228,.06));
}
.plate__frame img {
  width: 100%; height: auto; object-fit: contain;
  filter: saturate(.96) contrast(1.02);
}
.plate__cap {
  display: flex; gap: 1rem; align-items: baseline; justify-content: space-between;
  margin-top: .9rem; padding-top: .7rem; border-top: var(--rule);
  font-family: var(--f-ui); font-size: .68rem; letter-spacing: .12em; color: var(--ink-mid);
  text-transform: uppercase; line-height: 1.5;
}
.field-dark .plate__cap, .field-indigo .plate__cap, .field-darker .plate__cap { border-top: var(--rule-light); color: var(--on-dark-mid); }
.plate__cap b { font-weight: 500; color: var(--accent-ink); flex: none; }
.field-dark .plate__cap b, .field-indigo .plate__cap b, .field-darker .plate__cap b { color: var(--accent-2); }
.plate__note { font-family: var(--f-body); font-style: italic; font-size: .92rem; letter-spacing: 0; text-transform: none; color: var(--ink-faint); margin-top: .6rem; line-height: 1.6; }
.field-dark .plate__note, .field-indigo .plate__note, .field-darker .plate__note { color: var(--on-dark-mid); }

/* ------------------------------------------------------ 8. site header */
.site-head {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--head-h);
  display: flex; align-items: center;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), color .45s var(--ease);
  color: var(--ink);
}
.site-head__in { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.site-head.is-stuck { background: rgba(247,241,230,.94); backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 rgba(43,18,38,.12); }
.site-head.on-dark { color: var(--on-dark); }
.site-head.on-dark.is-stuck { background: rgba(38,8,32,.9); box-shadow: 0 1px 0 rgba(246,239,228,.16); }

.wordmark { text-decoration: none; font-family: var(--f-display); font-size: 1.12rem; letter-spacing: .04em; line-height: 1; display: flex; align-items: baseline; gap: .45rem; }
.wordmark em { font-family: var(--f-ui); font-style: normal; font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; opacity: .74; }

.nav-desk { display: flex; align-items: center; gap: clamp(.9rem, 1.5vw, 1.9rem); }
.nav-desk a {
  font-family: var(--f-ui); font-size: .7rem; font-weight: 400; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none; padding: .5rem 0; position: relative; white-space: nowrap;
  opacity: .82; transition: opacity .3s var(--ease);
}
.nav-desk a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-desk a:hover, .nav-desk a:focus-visible { opacity: 1; }
.nav-desk a:hover::after, .nav-desk a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-desk a[aria-current="page"] { opacity: 1; }
.nav-desk a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .6rem;
  align-items: center; gap: .7rem; font-family: var(--f-ui); font-size: .68rem;
  letter-spacing: .24em; text-transform: uppercase;
}
.nav-toggle__bars { display: block; width: 26px; height: 10px; position: relative; }
.nav-toggle__bars span { position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: transform .4s var(--ease), opacity .3s var(--ease); }
.nav-toggle__bars span:first-child { top: 0; }
.nav-toggle__bars span:last-child { bottom: 0; }
body.menu-open .nav-toggle__bars span:first-child { transform: translateY(4.5px) rotate(20deg); }
body.menu-open .nav-toggle__bars span:last-child { transform: translateY(-4.5px) rotate(-20deg); }

/* ------------------------------------------------- 9. mobile menu panel */
.menu:focus { outline: none; }
.menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--plum-deep); color: var(--on-dark);
  display: flex; flex-direction: column;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease), visibility 0s .7s;
  visibility: hidden; overflow-y: auto;
}
.menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .7s var(--ease); }
.menu__in { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--head-h) + 2rem) var(--gutter) 2rem; }
.menu__list { display: flex; flex-direction: column; gap: .1rem; }
.menu__list a {
  font-family: var(--f-display); font-size: clamp(1.6rem, 6.2vw, 2.9rem); line-height: 1.16;
  text-decoration: none; color: var(--on-dark); display: flex; align-items: baseline; gap: 1rem;
  padding: .18rem 0; opacity: 0; transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease);
}
.menu.is-open .menu__list a { opacity: 1; transform: none; transition-delay: calc(.16s + var(--i, 0) * .045s); }
.menu__list a i { font-family: var(--f-ui); font-style: normal; font-size: .58rem; letter-spacing: .2em; opacity: .45; }
.menu__list a:hover, .menu__list a:focus-visible { color: var(--accent-2); }
.menu__foot { padding: 1.6rem var(--gutter) 2.4rem; border-top: var(--rule-light); display: flex; flex-wrap: wrap; gap: .5rem 2rem; }
.menu__foot a { font-family: var(--f-ui); font-size: .78rem; letter-spacing: .12em; text-decoration: none; color: var(--on-dark-mid); }
.menu__foot a:hover { color: var(--accent-2); }
.menu .ink { position: absolute; left: 0; right: 0; bottom: 18%; height: 90px; opacity: .35; pointer-events: none; }
body.menu-open { overflow: hidden; }

/* --------------------------------------------- 10. the voice selector */
/* A floating bar, centred at the foot of the viewport, so it never sits on top
   of the text column. It docks to the full width of small screens. */
.voices {
  position: fixed; left: 50%; transform: translateX(-50%);
  bottom: clamp(.9rem, 1.8vw, 1.6rem); z-index: 80;
  display: flex; align-items: stretch; gap: .1rem;
  background: rgba(252,248,241,.92); backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(43,18,38,.16); padding: .4rem .45rem;
  box-shadow: 0 20px 44px -28px rgba(43,18,38,.6);
  max-width: calc(100vw - 2rem);
}
.voices__hd {
  font-family: var(--f-ui); font-size: .54rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-faint); display: flex; align-items: center; white-space: nowrap;
  padding: 0 .85rem 0 .55rem; margin-right: .35rem;
  border-right: 1px solid rgba(43,18,38,.14);
}
.voices button {
  display: flex; align-items: center; gap: .5rem;
  background: none; border: 0; cursor: pointer; padding: .5rem .8rem; white-space: nowrap;
  font-family: var(--f-ui); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid); text-align: left; transition: color .3s var(--ease), background .3s var(--ease);
}
.voices button .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vc); flex: none; box-shadow: 0 0 0 0 var(--vc); transition: box-shadow .4s var(--ease); }
.voices button:hover { color: var(--ink); background: rgba(43,18,38,.05); }
.voices button[aria-pressed="true"] { color: var(--ink); }
.voices .v-abbr { display: none; }
.voices button[aria-pressed="true"] .dot { box-shadow: 0 0 0 3px color-mix(in srgb, var(--vc) 28%, transparent); }

/* elements that respond to the selected voice, without hiding anything */
[data-voice-tag] { transition: background .6s var(--ease), box-shadow .6s var(--ease); }
[data-voice-tag].is-voiced { box-shadow: inset 4px 0 0 var(--accent); }
.voice-mark { position: relative; }
.voice-mark::after {
  content: ""; position: absolute; left: 0; right: -.04em; bottom: .2em; height: .12em;
  background: var(--accent-2); opacity: 0; z-index: -1; transform: scaleX(.2); transform-origin: left;
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
.voice-mark.is-voiced::after { opacity: .55; transform: scaleX(1); }

/* ------------------------------------------------------- 11. hero (home) */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--head-h); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2.5vw, 3rem); width: 100%; align-items: center; }
.hero__type { grid-column: 1 / 8; grid-row: 1; z-index: 2; }
.hero__img  { grid-column: 7 / 12; grid-row: 1; z-index: 1; }
.hero__img .plate__frame { background: linear-gradient(160deg, #efe4d2, #e0d0b8); box-shadow: 0 30px 80px -40px rgba(43,18,38,.55); }
.hero h1 { margin-bottom: .1em; }
.hero h1 span { display: block; }
.hero h1 span:last-child { padding-left: .12em; }
.hero__roles { font-family: var(--f-ui); font-size: clamp(.62rem, .5rem + .35vw, .82rem); letter-spacing: .34em; text-transform: uppercase; color: var(--ink-mid); margin-top: 1.6rem; }
.hero__roles i { font-style: normal; color: var(--accent); padding: 0 .35em; }
.hero__night { display: flex; align-items: baseline; gap: 1rem; margin-top: 2.2rem; flex-wrap: wrap; }
.hero__night .script { font-size: clamp(2.2rem, 4.6vw, 3.6rem); color: var(--accent); }
.hero__night small { font-family: var(--f-ui); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); flex: 1 1 240px; max-width: 34ch; line-height: 2; }
.hero__stroke { position: absolute; left: -4%; right: -4%; top: 46%; height: 340px; z-index: 0; pointer-events: none; opacity: .9; }
.hero__side { position: absolute; left: calc(var(--gutter) * .34); top: 50%; transform: translateY(-50%); display: none; }
.hero__cue { position: absolute; left: var(--gutter); bottom: 2.2rem; display: flex; align-items: center; gap: .8rem; font-family: var(--f-ui); font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-faint); }
.hero__cue span { width: 46px; height: 1px; background: var(--accent); transform-origin: left; animation: cue 2.6s var(--ease) infinite; }
@keyframes cue { 0%,100% { transform: scaleX(.25); opacity: .5 } 50% { transform: scaleX(1); opacity: 1 } }

/* ------------------------------------------- 12. the five voices (home) */
.leaf { position: relative; padding-block: clamp(3.4rem, 6vw, 6.4rem); overflow: hidden; }
.leaf__in { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.2rem, 3vw, 3rem); align-items: center; }
.leaf__no { font-family: var(--f-display); font-size: clamp(3.4rem, 8.6vw, 8.4rem); line-height: .78; opacity: .15; grid-column: 1 / 3; }
.leaf__body { grid-column: 3 / 10; }
.leaf__act { grid-column: 10 / 13; justify-self: end; text-align: right; }
.leaf h3 { margin-bottom: 1.15rem; }
.leaf__kicker { font-family: var(--f-ui); font-size: .64rem; letter-spacing: .32em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 1.1rem; display: block; }
.field-dark .leaf__kicker, .field-indigo .leaf__kicker, .field-darker .leaf__kicker { color: var(--accent-2); }
.leaf p { max-width: 54ch; }
.leaf .vc { color: var(--vc); }

/* ----------------------------------------- 13. horizontal journey ribbon */
.ribbon { position: relative; }
.ribbon__track {
  display: flex; gap: 0; overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 2rem; scrollbar-width: thin;
  scrollbar-color: rgba(246,239,228,.35) transparent;
}
.ribbon__track::-webkit-scrollbar { height: 3px; }
.ribbon__track::-webkit-scrollbar-thumb { background: rgba(246,239,228,.35); }
.ribbon__track::-webkit-scrollbar-track { background: rgba(246,239,228,.08); }
.stop {
  flex: 0 0 clamp(240px, 26vw, 330px); scroll-snap-align: start;
  padding: 0 clamp(1.2rem, 2vw, 2.2rem) 0 0; position: relative;
}
.stop__yr { font-family: var(--f-display); font-size: clamp(1.9rem, 3vw, 2.9rem); line-height: 1; color: var(--accent-2); margin-bottom: 1.4rem; }
.stop__dot { position: relative; height: 1px; background: rgba(246,239,228,.28); margin-bottom: 1.4rem; }
.stop__dot::before { content: ""; position: absolute; left: 0; top: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); transform: translateY(-50%); }
.stop h3 { font-size: 1.18rem; line-height: 1.28; margin-bottom: .6rem; }
.stop p { font-size: .95rem; line-height: 1.68; padding-right: 1rem; }
.ribbon__hint { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; font-family: var(--f-ui); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--on-dark-mid); }

/* --------------------------------------------------- 14. book plates */
.books { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2.6rem); }
.book { border-top: 2px solid var(--accent); padding-top: 1.4rem; }
.book__yr { font-family: var(--f-ui); font-size: .68rem; letter-spacing: .28em; color: var(--accent-ink); margin-bottom: .9rem; display: block; }
.book h3 { font-size: clamp(1.4rem, 2.1vw, 2rem); line-height: 1.1; margin-bottom: .3rem; }
.book__sub { font-family: var(--f-body); font-style: italic; font-size: .95rem; color: var(--ink-faint); margin-bottom: 1rem; display: block; }
.book p { font-size: .97rem; }
.field-dark .book__yr, .field-indigo .book__yr { color: var(--accent-2); }
.field-dark .book__sub, .field-indigo .book__sub { color: var(--on-dark-mid); }

/* --------------------------------------------- 15. verse / quotation */
.verse {
  font-family: var(--f-body); font-style: italic; font-weight: 300;
  font-size: clamp(1.25rem, 1rem + 1.1vw, 2.05rem); line-height: 1.5;
  padding-left: clamp(1.2rem, 2.4vw, 2.4rem); border-left: 2px solid var(--accent);
}
.verse cite {
  display: block; margin-top: 1.5rem; font-family: var(--f-ui); font-style: normal;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-faint);
  line-height: 1.9;
}
.field-dark .verse cite, .field-indigo .verse cite, .field-darker .verse cite { color: var(--on-dark-mid); }

/* --------------------------------------------- 16. fact ledger / lists */
.ledger { border-top: var(--rule); }
.ledger div { display: grid; grid-template-columns: minmax(120px, 24%) 1fr; gap: 1rem clamp(1rem, 2.5vw, 2.5rem); padding: 1.05rem 0; border-bottom: var(--rule); align-items: baseline; }
.ledger dt { font-family: var(--f-ui); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); }
.ledger dd { font-size: 1rem; line-height: 1.62; }
.field-dark .ledger, .field-indigo .ledger { border-top: var(--rule-light); }
.field-dark .ledger div, .field-indigo .ledger div { border-bottom: var(--rule-light); }
.field-dark .ledger dt, .field-indigo .ledger dt { color: var(--on-dark-mid); }

/* marginalia — a note set in the outer margin of a text column */
.marg { font-family: var(--f-ui); font-size: .78rem; line-height: 1.75; color: var(--ink-mid); border-left: 1px solid var(--accent); padding-left: 1rem; }
.marg b { display: block; font-size: .64rem; letter-spacing: .24em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: .55rem; font-weight: 500; }

/* the "wall of names" (women & leadership) */
.wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1px; background: rgba(43,18,38,.14); border: 1px solid rgba(43,18,38,.14); }
.wall li { background: var(--ivory); padding: 1.5rem 1.4rem; transition: background .4s var(--ease); }
.wall li:hover { background: var(--paper); }
.wall b { display: block; font-family: var(--f-display); font-size: 1.22rem; font-weight: 400; line-height: 1.2; margin-bottom: .5rem; }
.wall span { font-family: var(--f-ui); font-size: .72rem; line-height: 1.7; color: var(--ink-mid); }

/* numbered analytical blocks */
.analysis { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(2rem, 4vw, 4rem); }
.analysis > div { border-top: var(--rule); padding-top: 1.5rem; }
.field-dark .analysis > div, .field-indigo .analysis > div { border-top: var(--rule-light); }
.analysis h3 { font-size: clamp(1.3rem, 1.9vw, 1.72rem); margin-bottom: .9rem; }
.analysis p { font-size: .99rem; }

/* a chronology strip */
.chrono { border-top: var(--rule); }
.chrono li { display: grid; grid-template-columns: minmax(96px, 14%) 1fr; gap: 1rem clamp(1.2rem, 3vw, 3rem); padding: 1.4rem 0; border-bottom: var(--rule); }
.chrono b { font-family: var(--f-display); font-size: 1.3rem; font-weight: 400; color: var(--accent-ink); }
.chrono p { font-size: .99rem; }
.field-dark .chrono, .field-indigo .chrono { border-top: var(--rule-light); }
.field-dark .chrono li, .field-indigo .chrono li { border-bottom: var(--rule-light); }
.field-dark .chrono b, .field-indigo .chrono b { color: var(--accent-2); }

/* full-bleed portrait band with scrim */
.band { position: relative; min-height: min(88svh, 760px); display: flex; align-items: flex-end; overflow: hidden; }
.band__img { position: absolute; inset: 0; }
.band__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: grayscale(.15) contrast(1.04); }
.band__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(38,8,32,.42) 0%, rgba(38,8,32,.62) 42%, rgba(38,8,32,.92) 100%); }
.band__in { position: relative; z-index: 2; padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: clamp(6rem, 14vw, 12rem); width: 100%; }
.band h2, .band p { color: var(--on-dark); }
.band p { color: var(--on-dark-mid); }

/* pager between pages */
.pager { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(43,18,38,.14); border-top: var(--rule); border-bottom: var(--rule); }
.pager a { background: var(--ivory); padding: clamp(1.8rem, 3.5vw, 3rem) clamp(1.2rem, 2.5vw, 2.4rem); text-decoration: none; display: block; transition: background .4s var(--ease); }
.pager a:hover { background: var(--paper); }
.pager a:last-child { text-align: right; }
.pager small { font-family: var(--f-ui); font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: .7rem; }
.pager b { font-family: var(--f-display); font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 2.1rem); line-height: 1.14; }

/* ------------------------------------------------------------ 17. footer */
.site-foot { background: var(--plum-deep); color: var(--on-dark); position: relative; overflow: hidden; }
.site-foot__ink { position: absolute; left: 0; right: 0; top: 0; height: 200px; opacity: .3; pointer-events: none; }
.site-foot__top { padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(2.5rem, 5vw, 4rem); position: relative; }
.site-foot__mark { font-family: var(--f-display); font-size: clamp(2.6rem, 8vw, 6.6rem); line-height: .9; letter-spacing: -.02em; margin-bottom: .5rem; }
.site-foot__mark span { display: block; color: var(--accent-2); }
.site-foot__tag { font-family: var(--f-ui); font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--on-dark-mid); }
.site-foot__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding-block: clamp(2.5rem, 5vw, 4rem); border-top: var(--rule-light); }
.site-foot h5 { font-family: var(--f-ui); font-size: .64rem; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: var(--on-dark-mid); margin-bottom: 1.5rem; }
.foot-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem 1.5rem; }
.foot-nav a { font-family: var(--f-ui); font-size: .84rem; text-decoration: none; color: var(--on-dark); opacity: .78; transition: opacity .3s var(--ease), color .3s var(--ease); }
.foot-nav a:hover, .foot-nav a:focus-visible { opacity: 1; color: var(--accent-2); }
.foot-contact a { display: block; font-family: var(--f-body); font-size: 1.06rem; text-decoration: none; color: var(--on-dark); margin-bottom: .6rem; border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); width: fit-content; }
.foot-contact a:hover, .foot-contact a:focus-visible { border-color: var(--accent-2); }
.socials { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: .4rem; }
.socials li a, .socials li span {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(246,239,228,.26); color: var(--on-dark);
  transition: border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.socials li a:hover, .socials li a:focus-visible { border-color: var(--accent-2); background: var(--accent-2); color: var(--plum-deep); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }
.socials li span { opacity: .5; cursor: default; }
.site-foot__base { display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: space-between; align-items: center; padding-block: 1.8rem; border-top: var(--rule-light); font-family: var(--f-ui); font-size: .74rem; color: var(--on-dark-mid); }
.site-foot__base a { color: var(--on-dark); text-decoration: none; border-bottom: 1px solid rgba(246,239,228,.3); }
.site-foot__base a:hover { color: var(--accent-2); border-color: var(--accent-2); }

/* ------------------------------------------------------- 18. a11y utils */
.skip {
  position: absolute; left: .6rem; top: .6rem; z-index: 200;
  background: var(--plum); color: var(--on-dark); padding: .8rem 1.2rem;
  font-family: var(--f-ui); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none; transform: translateY(-160%); transition: transform .3s var(--ease);
}
.skip:focus { transform: none; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.field-dark :focus-visible, .field-indigo :focus-visible, .site-foot :focus-visible, .menu :focus-visible { outline-color: var(--accent-2); }

/* scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-reveal="fade"] { transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s } [data-reveal-delay="2"] { transition-delay: .2s }
[data-reveal-delay="3"] { transition-delay: .3s } [data-reveal-delay="4"] { transition-delay: .4s }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .ink[data-draw] path { stroke-dashoffset: 0; }
  .menu { transition: none; }
}

/* ================================================= 19. contact sheet gallery */
.sheet__filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.sheet__filters button {
  font-family: var(--f-ui); font-size: .66rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .7rem 1.1rem; background: transparent; border: 1px solid rgba(43,18,38,.2);
  cursor: pointer; color: var(--ink-mid); transition: all .35s var(--ease);
}
.sheet__filters button:hover { border-color: var(--accent); color: var(--ink); }
.sheet__filters button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--ivory); }

/* the curator's table: uneven rows, archival labels */
.sheet { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.6rem, 3vw, 3.2rem) clamp(1.2rem, 2.4vw, 2.6rem); align-items: end; }
.shot { grid-column: span 4; display: flex; flex-direction: column; }
.shot--wide { grid-column: span 7; }
.shot--tall { grid-column: span 5; }
.shot--full { grid-column: span 8; }
.shot--small { grid-column: span 3; }
.shot.is-hidden { display: none; }

.shot__btn {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
  position: relative; text-align: left;
}
.shot__inner {
  background: linear-gradient(150deg, #efe5d5, #ded0ba); padding: clamp(.55rem, 1vw, .9rem);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.shot__btn:hover .shot__inner, .shot__btn:focus-visible .shot__inner {
  transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(43,18,38,.55);
}
.shot__inner img { width: 100%; height: auto; object-fit: contain; }
.shot__meta { display: flex; gap: .8rem; justify-content: space-between; align-items: baseline; margin-top: .8rem; padding-top: .6rem; border-top: var(--rule); }
.shot__no { font-family: var(--f-ui); font-size: .62rem; letter-spacing: .2em; color: var(--accent-ink); flex: none; }
.shot__cap { font-family: var(--f-body); font-size: .88rem; line-height: 1.55; color: var(--ink-mid); }
.shot__date { font-family: var(--f-ui); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); flex: none; }

/* lightbox */
.lb {
  position: fixed; inset: 0; z-index: 120; background: #1A0715;
  display: grid; grid-template-rows: auto minmax(0, 1fr) auto; opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility 0s .45s;
}
.lb.is-open { opacity: 1; visibility: visible; transition: opacity .45s var(--ease); }
.lb__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem var(--gutter); color: var(--on-dark-mid); font-family: var(--f-ui); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
.lb__stage {
  display: flex; align-items: center; justify-content: center;
  min-height: 0; overflow: hidden; padding: 0 clamp(3.4rem, 8vw, 7rem);
}
.lb__stage img {
  display: block; width: auto; height: auto;
  max-width: 100%; max-height: calc(100svh - 210px); object-fit: contain;
}
.lb__foot { padding: 1rem var(--gutter) 2rem; color: var(--on-dark-mid); text-align: center; }
.lb__cap { font-family: var(--f-body); font-style: italic; font-size: clamp(.9rem, 1.6vw, 1.06rem); max-width: 70ch; margin-inline: auto; line-height: 1.6; }
.lb__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(42px, 5vw, 56px); height: clamp(42px, 5vw, 56px);
  background: none; border: 1px solid rgba(246,239,228,.3); color: var(--on-dark);
  display: grid; place-items: center; cursor: pointer; transition: all .35s var(--ease);
}
.lb__nav:hover { background: var(--accent); border-color: var(--accent); }
.lb__prev { left: clamp(.6rem, 2vw, 1.6rem); } .lb__next { right: clamp(.6rem, 2vw, 1.6rem); }
.lb__close { background: none; border: 1px solid rgba(246,239,228,.3); color: var(--on-dark); padding: .6rem 1rem; cursor: pointer; font-family: var(--f-ui); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; transition: all .35s var(--ease); }
.lb__close:hover { background: var(--accent); border-color: var(--accent); }
.lb svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }
body.lb-open { overflow: hidden; }

/* ============================================================ 20. forms */
.form { display: grid; gap: clamp(1.2rem, 2.4vw, 1.9rem); }
.form__row { display: grid; gap: clamp(1.2rem, 2.4vw, 1.9rem); grid-template-columns: 1fr 1fr; }
.field label {
  display: block; font-family: var(--f-ui); font-size: .66rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: .7rem;
}
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(43,18,38,.28);
  padding: .7rem 0; font-family: var(--f-body); font-size: 1.06rem; color: var(--ink);
  border-radius: 0; transition: border-color .35s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.field__err { display: block; min-height: 1.3em; margin-top: .5rem; font-family: var(--f-ui); font-size: .78rem; color: #A32E27; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-bottom-color: #A32E27; border-bottom-width: 2px; }
.form__note { font-family: var(--f-ui); font-size: .8rem; line-height: 1.75; color: var(--ink-mid); border-left: 1px solid var(--accent); padding-left: 1rem; }
.form__status { font-family: var(--f-ui); font-size: .88rem; line-height: 1.7; padding: 1rem 1.2rem; border: 1px solid var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.form__status:empty { display: none; }

/* contact split composition */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 100svh; }
.contact-split__l { background: var(--plum-deep); color: var(--on-dark); padding: calc(var(--head-h) + clamp(3rem,6vw,6rem)) clamp(1.5rem,4vw,5rem) clamp(3rem,6vw,6rem); display: flex; flex-direction: column; justify-content: flex-start; gap: clamp(2.4rem, 5vw, 4.4rem); position: relative; overflow: hidden; }
.contact-split__r { background: var(--paper); padding: calc(var(--head-h) + clamp(3rem,6vw,6rem)) clamp(1.5rem,4vw,5rem) clamp(3rem,6vw,6rem); }
.contact-split__l .ink { position: absolute; left: -10%; right: -10%; bottom: 8%; height: 220px; opacity: .32; pointer-events: none; }
.contact-lines a { display: block; font-family: var(--f-display); font-size: clamp(1.4rem, 2.6vw, 2.3rem); line-height: 1.3; text-decoration: none; color: var(--on-dark); width: fit-content; border-bottom: 1px solid rgba(246,239,228,.28); transition: border-color .35s var(--ease), color .35s var(--ease); margin-bottom: 1.4rem; }
.contact-lines a:hover, .contact-lines a:focus-visible { color: var(--accent-2); border-color: var(--accent-2); }
.contact-lines small { display: block; font-family: var(--f-ui); font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--on-dark-mid); margin-bottom: .7rem; }

/* ===================================== 21. page-specific compositions */

/* early life — manuscript panels */
.manuscript {
  background:
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,0) 30%),
    repeating-linear-gradient(0deg, transparent 0 33px, rgba(43,18,38,.045) 33px 34px),
    var(--paper);
  border: 1px solid rgba(43,18,38,.12);
  padding: clamp(1.6rem, 3.4vw, 3.2rem);
  position: relative;
}
.manuscript::before {
  content: ""; position: absolute; left: clamp(1.6rem,3.4vw,3.2rem); top: 0; bottom: 0;
  width: 1px; background: rgba(211,74,66,.3);
}

/* the poet — decorative motif tiles (clearly ornament, never archival) */
.motif { display: grid; place-items: center; aspect-ratio: 1; background: var(--blush); }
.motif svg { width: 62%; height: auto; }
.motif svg [stroke] { stroke: var(--accent-ink); }
.motif--dark { background: var(--plum); }
.motif--dark svg [stroke] { stroke: var(--accent-2); }
.motif--turq { background: var(--turquoise); }
.motif--turq svg [stroke] { stroke: var(--paper); }
.ornament-note { font-family: var(--f-ui); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-top: .8rem; }

/* political journey — gradient descent from ivory into plum */
.descent { background: linear-gradient(180deg, var(--ivory) 0%, var(--blush) 26%, var(--plum-soft) 68%, var(--plum) 100%); color: var(--ink); }
.descent .is-late, .descent .is-late p, .descent .is-late h2, .descent .is-late h3 { color: var(--on-dark); }
.descent .is-late p { color: var(--on-dark-mid); }

/* the 1925 takeover */
.takeover { position: relative; overflow: hidden; }
.takeover__no { font-family: var(--f-display); font-size: clamp(7rem, 30vw, 26rem); line-height: .74; letter-spacing: -.05em; color: var(--accent); opacity: .95; }

/* governor — architectural column rhythm */
.colonnade { position: relative; }
.colonnade::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, transparent 0 calc(100% / 12 - 1px), rgba(160,118,44,.16) calc(100% / 12 - 1px) calc(100% / 12));
}
.charter { border: 1px solid rgba(160,118,44,.4); padding: clamp(1.6rem,3.2vw,3rem); background: rgba(160,118,44,.05); }
.charter h2, .charter h3 { color: var(--bronze); }
.charter .ledger div { grid-template-columns: minmax(96px, 30%) 1fr; padding: .85rem 0; }
.charter .ledger div:last-child { border-bottom: 0; padding-bottom: 0; }

/* legacy — memory & myth comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(43,18,38,.16); border: 1px solid rgba(43,18,38,.16); }
.compare > div { background: var(--paper); padding: clamp(1.5rem, 3vw, 2.6rem); }
.compare h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.compare--myth h3 { color: var(--ink-faint); }
.compare--record h3 { color: var(--accent-ink); }
.compare ul { display: grid; gap: .9rem; }
.compare li { font-size: .97rem; line-height: 1.65; padding-left: 1.1rem; position: relative; }
.compare li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: var(--accent); }

/* source note that appears at the foot of research-heavy pages */
.sources { font-family: var(--f-ui); font-size: .8rem; line-height: 1.8; color: var(--ink-mid); }
.sources h5 { font-family: var(--f-ui); font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; font-weight: 500; }
.sources li { padding-left: 1.2rem; position: relative; margin-bottom: .4rem; }
.sources li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
