/* ============================================================
   Exit133 Archive — Sound theme (chosen 2026-04-29).
   Civic brutalist: Bricolage Grotesque display + DM Sans body,
   wide layout, full-bleed photos, year-coded top rule, big chips.
   Comments now render below the article (was side-panel; reverted).
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

:root {
  --bg: #fafaf3;
  --paper: #ffffff;
  --ink: #0f1410;
  --ink-soft: #2c352f;
  --muted: #6c7770;
  --forest: #1c3826;       /* deep green for headings, brand, rules */
  --forest-soft: #2d5a3d;  /* mid green for hover, accents */
  --sage: #7da177;
  --sage-deep: #4f7a4a;
  --clay: #c97064;         /* maroon/burgundy accent — kept */
  --clay-deep: #a14e44;
  --clay-soft: #e9b3a8;
  --rule: #d8d6cb;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "DM Sans", -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0 auto;
  max-width: 1080px;
  padding: 2rem 2rem 6rem;
  font: 18px/1.55 var(--body);
  font-feature-settings: "ss01" 1, "ss02" 1;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
blockquote { margin: 0; }
ul, ol { padding: 0; }

/* ----------------------------------------------------------------
   site header
   ---------------------------------------------------------------- */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 4px solid var(--forest);
}
.site-header .brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--forest);
  text-decoration: none;
  font-variation-settings: "opsz" 96;
}
.site-header .brand::after {
  content: "·";
  color: var(--clay);
  margin-left: 0.5rem;
}
.site-header nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.site-header nav a {
  font-family: var(--body);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  transition: background 0.2s, color 0.2s;
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { background: var(--forest); color: var(--bg); }
.site-search { grid-column: 1 / -1; }

/* Mobile/tablet: drop the pill chrome, make nav an inline text run
   with a clay dot separator. Avoids the awkward stacked-pill look on
   narrow screens (iPhone, iPad portrait). */
@media (max-width: 768px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom-width: 2px;
  }
  .site-header .brand { font-size: 26px; }
  .site-header nav {
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: baseline;
  }
  .site-header nav a {
    border: 0;
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--clay);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
  .site-header nav a:hover,
  .site-header nav a[aria-current="page"] {
    background: transparent;
    color: var(--clay-deep);
  }
  .site-header nav a + a {
    position: relative;
    padding-left: 1rem;
  }
  .site-header nav a + a::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--clay);
    font-weight: 700;
    text-decoration: none;
    pointer-events: none;
  }
}

/* ----------------------------------------------------------------
   entry detail
   ---------------------------------------------------------------- */
.entry header {
  border-top: 6px solid var(--clay);
  padding-top: 1rem;
}
.entry header h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0.25rem 0 1rem;
  color: var(--forest);
  font-variation-settings: "opsz" 96, "wght" 700;
}
.entry header .meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.entry header .meta .byline { color: var(--ink); font-weight: 500; }
.entry .lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink-soft);
  margin: 1.5rem 0;
  border-left: 4px solid var(--sage);
  padding-left: 1rem;
}
.entry .hero {
  margin: 2rem -2rem;
}
.entry .body { font-size: 18px; max-width: 720px; }
.entry .body p { margin: 1.2rem 0; }
/* Align list markers exactly with paragraph left-edge. Custom markers
   via ::before are deterministic across browsers (built-in
   list-style-position rendering varies). Markers in clay for visual
   accent. */
.entry .body ol,
.entry .body ul {
  margin: 1.2rem 0;
  padding-left: 0;
  list-style: none;
}
.entry .body ul > li,
.entry .body ol > li {
  position: relative;
  padding-left: 1.4em;
  margin: 0.4rem 0;
}
.entry .body ul > li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clay);
  font-weight: 700;
}
.entry .body ol { counter-reset: olcnt; }
.entry .body ol > li { counter-increment: olcnt; }
.entry .body ol > li::before {
  content: counter(olcnt) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--clay);
  font-weight: 700;
  font-feature-settings: "tnum" 1;
}
/* Nested lists: indent further but keep the same marker treatment */
.entry .body li ul,
.entry .body li ol { margin: 0.3rem 0 0.3rem 1em; }
.entry .body li > p:first-child { display: inline; margin: 0; }
.entry .body a {
  color: var(--sage-deep);
  text-decoration-color: var(--sage);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.entry .body blockquote {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: 8px;
  border-left: 4px solid var(--clay);
}
.entry .body img { border-radius: 4px; }

.entry .cats {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.entry .cats .cat {
  display: inline-block;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  margin: 0 0.25rem 0.5rem 0;
  color: var(--ink);
}
.attachment, .external { font-size: 15px; margin: 1rem 0; }
.attachment a, .external a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}
.attachment a:hover, .external a:hover { background: var(--ink); color: var(--bg); }

/* ----------------------------------------------------------------
   comments — color-coded thread, staff highlighted, deterministic
   per-name avatar tint, clay accent on the header.
   ---------------------------------------------------------------- */
.comments {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 6px solid var(--clay);
  max-width: 760px;
  background: linear-gradient(180deg, rgba(125, 161, 119, 0.05) 0%, transparent 200px);
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
.comments h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 1.5rem;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.comments h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--clay);
  border-radius: 50%;
  margin-right: 0.6rem;
  transform: translateY(-4px);
}
.thread, .replies { list-style: none; margin: 0; padding: 0; }
.replies {
  margin: 0.75rem 0 0 0;
  padding: 0 0 0 1.5rem;
  border-left: 3px solid var(--sage);
  position: relative;
}
.replies::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 1.25rem;
  width: 12px;
  height: 3px;
  background: var(--sage);
}
.replies .comment {
  padding: 0.75rem 0;
  font-size: 14.5px;
}
.replies .comment .meta strong { font-size: 14px; }
.replies .comment .body { font-size: 14.5px; }
.replies .comment .avatar { width: 22px; height: 22px; font-size: 11px; }
.comment {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.comment:last-child { border-bottom: 0; }
.replies .comment:last-child { padding-bottom: 0.5rem; }

/* Staff comments get a sage-tinted left rule and bg */
.comment.staff {
  background: linear-gradient(90deg, rgba(125, 161, 119, 0.10), transparent 60%);
  border-left: 3px solid var(--sage-deep);
  padding-left: 0.75rem;
  margin-left: -0.75rem;
  border-radius: 0 4px 4px 0;
}

.comment .meta {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.comment .meta strong {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--display);
  font-size: 15px;
}
.comment.staff .meta strong { color: var(--forest); }

/* Per-name color initial avatar — deterministic via :nth-child-style */
.comment .avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  color: var(--bg);
  background: var(--forest-soft);
  flex-shrink: 0;
  text-transform: uppercase;
  line-height: 1;
}
.comment.staff .avatar { background: var(--clay); }
/* Color-rotate avatars by reply index so siblings differ visually */
.thread > .comment:nth-child(5n+1) .avatar { background: var(--forest-soft); }
.thread > .comment:nth-child(5n+2) .avatar { background: #6b8a6f; }
.thread > .comment:nth-child(5n+3) .avatar { background: #8a7c5c; }
.thread > .comment:nth-child(5n+4) .avatar { background: #5e7a82; }
.thread > .comment:nth-child(5n)   .avatar { background: #8d6b5b; }
.comment.staff .avatar { background: var(--clay) !important; }

.comment .tag {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--bg);
}
.comment .date {
  margin-left: auto;
  font-feature-settings: "tnum" 1;
  color: var(--muted);
  font-size: 12px;
}
.comment .body { font-size: 15.5px; line-height: 1.6; color: var(--ink); }
.comment .body p { margin: 0.6rem 0; }
.comment .body p:first-child { margin-top: 0; }
.comment .body a { color: var(--sage-deep); }

/* ----------------------------------------------------------------
   listing pages
   ---------------------------------------------------------------- */
.channel-listing h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--forest);
  margin: 0 0 0.5rem;
  font-variation-settings: "opsz" 96, "wght" 800;
}
.channel-listing > .meta { font-size: 14px; color: var(--muted); margin: 0 0 2.5rem; }
.index { list-style: none; padding: 0; }
.index li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 800px) {
  .index li { grid-template-columns: 4fr 2fr; gap: 2rem; align-items: baseline; }
}
.index li a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--forest);
  line-height: 1.25;
}
.index li a:hover { color: var(--clay-deep); }
.index .meta { font-size: 13px; color: var(--muted); }

.pager {
  margin: 3rem 0 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
}
.pager a {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
}
.pager a:hover { background: var(--ink); color: var(--bg); }
.pager .page-num { color: var(--muted); align-self: center; }

/* ----------------------------------------------------------------
   homepage — landing only. Search lives in the global header.
   The year histogram IS the visual statement.
   ---------------------------------------------------------------- */
.home { margin: 2rem 0 4rem; }
.home h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 1.25rem;
  color: var(--forest);
  font-variation-settings: "opsz" 96, "wght" 800;
  white-space: nowrap;
}
.home .lede {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  max-width: 36ch;
  color: var(--ink-soft);
  margin: 0 0 3rem;
}
.home .lede em { color: var(--clay-deep); font-style: normal; font-weight: 600; }

/* ----------------------------------------------------------------
   homepage stats — pretty 2x2 grid, right under the lede.
   Two narrative cells (most-discussed, most prolific commenter) on
   top; two numeric cells (entries, comments) below with big serifs.
   ---------------------------------------------------------------- */
.home-stats {
  margin: 0 0 3rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  border-top: 4px solid var(--forest);
  padding-top: 2rem;
}
@media (min-width: 720px) {
  .home-stats {
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem 2.5rem;
  }
}
.home-stats .stat { margin: 0; padding: 0; }
.home-stats dt {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.home-stats dd { margin: 0; color: var(--forest); }

/* narrative cells (most-discussed, most prolific) */
.home-stats .narrative dd {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.home-stats .narrative dd a {
  color: var(--forest);
  text-decoration-color: var(--clay);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.2s;
}
.home-stats .narrative dd a:hover { color: var(--clay-deep); }
.home-stats .narrative dd .who { display: inline; color: var(--forest); }
.home-stats .narrative dd .n {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-top: 0.4rem;
  letter-spacing: 0;
}

/* numeric cells (totals) */
.home-stats .numeric dd { line-height: 0.9; }
.home-stats .numeric .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum" 1, "ss01" 1;
  font-variation-settings: "opsz" 96, "wght" 800;
  color: var(--forest);
  display: block;
}

/* about-page stats keep the smaller dl reference treatment */
.stats {
  margin: 0 0 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem 2rem;
}
.stats div { margin: 0; }
.stats dt {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.stats dd {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--forest);
}
.stats dd a {
  color: var(--forest);
  text-decoration-color: var(--clay);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.stats dd a:hover { color: var(--clay-deep); }
.stats dd .who { color: var(--forest); }
.stats dd .n {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0;
}

.home .ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.home .ctas a {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--forest);
  color: var(--forest);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.home .ctas a.primary { background: var(--forest); color: var(--bg); }
.home .ctas a.primary:hover { background: var(--clay); border-color: var(--clay); }
.home .ctas a:hover { background: var(--forest); color: var(--bg); }

/* ----------------------------------------------------------------
   Archive landing — curated cards + year shortcuts + full-list link
   ---------------------------------------------------------------- */
.archive { max-width: 1080px; }
.archive-head { margin-bottom: 2.5rem; }
.archive-head h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 80px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--forest);
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 96, "wght" 800;
}
.archive-head .lede {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
.archive-section-h {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 3rem 0 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}

/* Featured grid — 4 big cards */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 0 0 1rem;
}
@media (min-width: 720px) { .featured-grid { grid-template-columns: 1fr 1fr; } }
.feature {
  display: block;
  text-decoration: none;
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--paper);
  border-top: 5px solid var(--forest);
  transition: border-top-color 0.25s, transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.feature:nth-child(2) { border-top-color: var(--clay); }
.feature:nth-child(3) { border-top-color: var(--sage); }
.feature:nth-child(4) { border-top-color: var(--clay-deep); }
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px -10px rgba(28, 56, 38, 0.25);
  border-top-width: 5px;
}
.feature .kicker {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.feature h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 3.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--forest);
  margin: 0 0 0.6rem;
  font-variation-settings: "opsz" 96, "wght" 700;
}
.feature:hover h3 { color: var(--clay-deep); }
.feature .desc {
  font-family: var(--display);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}
.feature .meta-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
  padding-top: 0.6rem;
  border-top: 1px solid var(--rule);
  font-feature-settings: "tnum" 1;
}

/* Year grid — small clickable tiles */
.year-grid {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (min-width: 720px) { .year-grid { grid-template-columns: repeat(6, 1fr); } }
@media (min-width: 1000px) { .year-grid { grid-template-columns: repeat(12, 1fr); } }
.year-grid li { margin: 0; }
.year-grid a {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0.6rem 0.75rem;
  text-decoration: none;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--paper);
  transition: background 0.15s, border-color 0.15s;
}
.year-grid a:hover {
  background: var(--forest);
  border-color: var(--forest);
}
.year-grid a:hover .yr,
.year-grid a:hover .ct { color: var(--bg); }
.year-grid .yr {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--forest);
  font-feature-settings: "tnum" 1;
}
.year-grid .ct {
  font-family: var(--body);
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  font-feature-settings: "tnum" 1;
}

/* Browse-all CTA row */
.all-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.5rem;
  margin: 0;
}
.all-cta .cta {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 12px 22px;
  border: 2px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.all-cta .cta:hover { background: var(--forest); color: var(--bg); }
.all-cta .all-meta {
  font-family: var(--body);
  font-size: 13px;
  color: var(--muted);
}

/* ----------------------------------------------------------------
   series landing — Imagine Tacoma
   ---------------------------------------------------------------- */
.series {
  max-width: 760px;
  margin: 0 auto;
}
.series-head { border-top: 6px solid var(--clay); padding: 1.5rem 0 0; margin-bottom: 2.5rem; }
.series-head .kicker {
  font-family: var(--body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clay);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.series-head h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--forest);
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 96, "wght" 800;
}
.series-head .byline {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}
.series-head .byline strong { color: var(--forest); font-weight: 700; }
.series-head .lede {
  font-family: var(--display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.series-meta {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.25rem;
}
.series-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
  counter-reset: simagecnt;
}
.series-list li {
  counter-increment: simagecnt;
  border-bottom: 1px solid var(--rule);
}
.series-list li a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0.25rem 0.85rem 0;
  text-decoration: none;
  transition: background 0.15s;
}
.series-list li a:hover { background: rgba(125, 161, 119, 0.08); }
.series-list li a::before {
  content: counter(simagecnt);
  font-family: var(--display);
  font-feature-settings: "tnum" 1;
  font-weight: 600;
  font-size: 12px;
  color: var(--clay);
  text-align: right;
  align-self: baseline;
}
.series-list .title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--forest);
  line-height: 1.3;
}
.series-list li a:hover .title { color: var(--clay-deep); }
.series-list .date {
  font-family: var(--body);
  font-size: 12px;
  font-feature-settings: "tnum" 1;
  color: var(--muted);
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   about page
   ---------------------------------------------------------------- */
.about {
  max-width: 680px;
}
.about h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 84px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 2rem;
  color: var(--forest);
  font-variation-settings: "opsz" 96, "wght" 800;
}
.about h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.5rem;
  color: var(--forest);
}
.about p { font-size: 17px; line-height: 1.6; margin: 1rem 0; }

/* Awards table — denser variant of .ranked. Year column tabular,
   note line under title in muted small caps. */
.awards {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 3rem;
  font-feature-settings: "tnum" 1;
}
.awards tr { border-bottom: 1px solid var(--rule); }
.awards tr:first-child { border-top: 2px solid var(--forest); }
.awards tr:last-child { border-bottom: 2px solid var(--forest); }
.awards tr:hover { background: rgba(125, 161, 119, 0.06); }
.awards td { padding: 0.85rem 0.75rem; vertical-align: top; }
.awards .yr {
  width: 88px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--clay);
  white-space: nowrap;
  padding-left: 0;
}
.awards .title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--forest);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.awards .title small {
  display: block;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0;
}
.awards .title small a {
  color: var(--sage-deep);
  text-decoration-color: var(--sage);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.awards .title small a:hover { color: var(--clay-deep); }
.awards .src {
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-soft);
  text-align: right;
  padding-right: 0;
}

/* About — "By the numbers" — editorial big-numerals grid */
.bignums {
  list-style: none;
  margin: 0 0 3rem;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  border-top: 4px solid var(--forest);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .bignums { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.bignums li {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  padding-left: 0.85rem;
  border-left: 3px solid var(--clay);
}
.bignums li:nth-child(2n) { border-left-color: var(--sage); }
.bignums li:nth-child(3n) { border-left-color: var(--forest); }
.bignums .n {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--forest);
  font-feature-settings: "tnum" 1, "ss01" 1;
  font-variation-settings: "opsz" 96, "wght" 800;
}
.bignums .lbl {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.bignums .lbl a {
  color: var(--clay-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--clay-soft);
}
.bignums .lbl a:hover { border-bottom-color: var(--clay); color: var(--clay); }

/* About — top-10 ranked tables */
.ranked {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 3rem;
  font-feature-settings: "tnum" 1;
}
.ranked tr { border-bottom: 1px solid var(--rule); }
.ranked tr:first-child { border-top: 2px solid var(--forest); }
.ranked tr:last-child { border-bottom: 2px solid var(--forest); }
.ranked tr:hover { background: rgba(125, 161, 119, 0.06); } /* sage @ 6% */
.ranked td {
  padding: 0.85rem 0.75rem;
  vertical-align: baseline;
}
.ranked .rank {
  width: 36px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--clay);
  padding-left: 0;
  text-align: right;
}
.ranked .who {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--forest);
  line-height: 1.35;
}
.ranked .who a {
  color: var(--forest);
  text-decoration: none;
  background-image: linear-gradient(var(--clay), var(--clay));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.2s, color 0.2s;
}
.ranked .who a:hover {
  color: var(--clay-deep);
  background-size: 100% 2px;
}
.ranked .n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  text-align: right;
  white-space: nowrap;
  padding-right: 0;
  font-variation-settings: "wght" 700;
}

/* ----------------------------------------------------------------
   footer
   ---------------------------------------------------------------- */
footer {
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
footer a { color: var(--ink-soft); }

/* ----------------------------------------------------------------
   pagefind UI variables
   ---------------------------------------------------------------- */
.pagefind-ui {
  --pagefind-ui-primary: var(--ink);
  --pagefind-ui-text: var(--ink);
  --pagefind-ui-background: var(--paper);
  --pagefind-ui-border: var(--ink);
  --pagefind-ui-tag: var(--bg);
  --pagefind-ui-border-radius: 999px;
  --pagefind-ui-border-width: 2px;
  --pagefind-ui-font: var(--display);
}
