/* =========================================================
   PrismaX — Shared Blog stylesheet
   Matches the V8 build: cream ground, paper-soft sections,
   fixed glass header, bronze/gold accents, Editorial New +
   Catalogue. Used by index.html + article.html.
   Lives in _shared/blog/ so every site version can link to it.
   ========================================================= */

/* ===== Fonts (relative to _shared/blog/) ===== */
@font-face { font-family:'Editorial New'; src:url('../brand_assets/fonts/editorial/EditorialNew-Thin.otf') format('opentype'); font-weight:100; font-style:normal; font-display:swap; }
@font-face { font-family:'Editorial New'; src:url('../brand_assets/fonts/editorial/EditorialNew-Ultralight.otf') format('opentype'); font-weight:200; font-style:normal; font-display:swap; }
@font-face { font-family:'Editorial New'; src:url('../brand_assets/fonts/editorial/EditorialNew-Regular.otf') format('opentype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Editorial New'; src:url('../brand_assets/fonts/editorial/EditorialNew-Italic.otf') format('opentype'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'Editorial New'; src:url('../brand_assets/fonts/editorial/EditorialNew-Bold.otf') format('opentype'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Catalogue'; src:url('../brand_assets/fonts/catalogue/Catalogue-Light.otf') format('opentype'); font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:'Catalogue'; src:url('../brand_assets/fonts/catalogue/Catalogue-Book.otf') format('opentype'); font-weight:350; font-style:normal; font-display:swap; }
@font-face { font-family:'Catalogue'; src:url('../brand_assets/fonts/catalogue/Catalogue-Regular.otf') format('opentype'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Catalogue'; src:url('../brand_assets/fonts/catalogue/Catalogue-Medium.otf') format('opentype'); font-weight:500; font-style:normal; font-display:swap; }

/* ===== Tokens (mirror V8 index.html) ===== */
:root {
  --paper: #FFFFFF;
  --paper-soft: #F4F1EC;
  --paper-2: #FAF8F5;
  --cream: #DFD8D0;
  --cream-deep: #CFC6BA;
  /* brand hues — guide secondaries + tertiary */
  --gold: #B9986A;
  --bronze: #B56654;
  --brown: #7A6B5A;
  --ink: #202020;
  --ink-soft: #3a3632;
  --muted: rgba(32, 32, 32, 0.56);
  --muted-2: rgba(32, 32, 32, 0.40);
  --line: rgba(32, 32, 32, 0.12);
  --line-strong: rgba(32, 32, 32, 0.22);
  --rule: #D9D2C8;
  --shadow: 0 30px 80px -44px rgba(32, 32, 32, 0.42);
  --shadow-soft: 0 18px 50px -34px rgba(32, 32, 32, 0.34);
  /* dark band accents */
  --term: #1d1b19;
  --term-text: #ECE7DF;
  --term-dim: rgba(236, 231, 223, 0.55);
  --term-line: rgba(236, 231, 223, 0.14);
  --radius: 8px;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h, 88px) + 8px); }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Catalogue', ui-sans-serif, system-ui, sans-serif;
  font-weight: 400; font-size: 16px; line-height: 1.5; letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: clip;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 200; }
::selection { background: rgba(185, 152, 106, 0.32); }

.wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 48px; }
.wrap--narrow { max-width: 760px; }
@media (max-width: 820px) { .wrap { padding: 0 24px; } }

.eyebrow {
  font-family: 'Catalogue', sans-serif; font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.35em; color: var(--muted);
}
.serif { font-family: 'Editorial New', Georgia, serif; }
.mono { font-family: var(--mono); }
h1 em, h2 em { color: var(--bronze); font-style: italic; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ===== Buttons — radius 8px, skewed-square wipe on hover ===== */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  font-family: 'Catalogue', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 0.02em; border-radius: var(--radius); cursor: pointer;
  padding: 14px 24px; border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.btn::before { content: ""; position: absolute; z-index: -1; inset: -2px -20px;
  transform: translateX(-130%) skewX(-12deg); transition: transform 0.5s var(--ease); }
.btn:hover::before { transform: translateX(0) skewX(-12deg); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.btn .arr { transition: transform 0.4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary::before { background: var(--cream); }
.btn--primary:hover { color: var(--ink); }
.btn--ghost { background: var(--paper); color: var(--ink); border-color: var(--line-strong); }
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { color: var(--paper); border-color: var(--ink); }

/* ===== Header / nav — fixed, glass fades in on scroll (V8) ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 48px;
  opacity: 0; transform: translateY(-8px); animation: fadeDown 0.8s var(--ease) 0.15s forwards; }
.site-header::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(244, 241, 236, 0.86);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  opacity: 0; transition: opacity 0.25s var(--ease); }
.site-header.is-scrolled::before { opacity: 1; }
@media (max-width: 820px) { .site-header { padding: 20px 24px; } }
.site-header__logo img { height: 22px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a { font-family: 'Catalogue', sans-serif; font-size: 13px; color: var(--muted); transition: color 0.2s var(--ease); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; border-radius: 2px; }
@media (max-width: 760px) { .site-nav a { display: none; } }
.site-header__cta { font-family: 'Catalogue', sans-serif; font-size: 13px; font-weight: 500; color: var(--paper); background: var(--ink); padding: 10px 18px; border-radius: var(--radius); transition: transform 0.2s var(--ease), background 0.2s var(--ease); white-space: nowrap; }
.site-header__cta:hover { background: #000; transform: translateY(-1px); }
.site-header__cta:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ===== Footer (V8) ===== */
.foot { background: var(--paper-soft); padding: 92px 0 48px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr repeat(5, 1fr); gap: 40px; }
@media (max-width: 1080px) { .foot__grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px 32px; } }
@media (max-width: 820px) { .foot__grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
.foot__social { display: flex; gap: 8px; margin-top: 24px; }
.foot__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: var(--ink); color: var(--cream); transition: transform 0.2s var(--ease), background 0.2s var(--ease); }
.foot__social a:hover { transform: translateY(-2px); background: #4B4B4B; }
.foot__social a:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.foot__social svg { width: 17px; height: 17px; fill: currentColor; display: block; }
.foot__brand img { height: 22px; width: auto; margin-bottom: 16px; }
.foot__brand p { font-size: 13px; color: var(--muted); max-width: 30ch; line-height: 1.5; }
.foot__col .foot-title { font-family: 'Catalogue', sans-serif; font-weight: 500; font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--bronze); margin-bottom: 16px; }
.foot__col a { display: block; font-size: 13.5px; color: var(--muted); padding: 5px 0; transition: color 0.2s var(--ease); }
.foot__col a:hover { color: var(--ink); }
.foot__bar { display: flex; align-items: center; justify-content: space-between; margin-top: 92px; padding-top: 24px; border-top: 1px solid var(--line); }
.foot__bar span { font-family: var(--mono); font-size: 11px; color: var(--muted-2); letter-spacing: 0.04em; }

/* ===== Motion (V8 timings) ===== */
.reveal { opacity: 0; transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.215, 0.610, 0.355, 1), transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1);
  will-change: opacity, transform; }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
.grid-card { opacity: 0; transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.215, 0.610, 0.355, 1), transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1);
  will-change: opacity, transform; }
.grid-card.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes anthFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   BLOG INDEX
   ========================================================= */
/* masthead — nameplate only: the title on its own line, nothing beside it */
.blog-masthead { background: var(--paper-soft); padding-top: var(--header-h, 88px); }
.blog-masthead .wrap { padding-top: clamp(48px, 8vh, 96px); padding-bottom: clamp(36px, 5vh, 56px); }
.blog-masthead h1 { font-family: 'Editorial New', serif; font-weight: 200;
  /* same step as the "All writing" section head below it */
  font-size: clamp(26px, 3vw, 40px); line-height: 1.0; letter-spacing: -0.022em; color: var(--ink);
  opacity: 0; animation: anthFadeIn 1.2s cubic-bezier(0.215, 0.610, 0.355, 1) 0.3s forwards; }

/* body band — continues the paper-soft ground under the masthead */
.blog-body { background: var(--paper-soft); padding: 0 0 112px; }

/* featured lead — cream panel, framed media (V8 panel language).
   Was pure white on the paper-soft page, which read as a white slab;
   cream gives the panel a warm surface that still separates from the page. */
/* no panel — cover and copy sit straight on the page ground, media wide,
   copy in a narrow column beside it */
.feature { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(28px, 3.4vw, 48px); align-items: center; margin-bottom: clamp(48px, 6vh, 72px); }
@media (max-width: 860px) { .feature { grid-template-columns: 1fr; gap: 24px; } }
.feature__media { position: relative; overflow: hidden; border-radius: 10px; background: #EDE8E0; }
/* height-capped rather than ratio-locked — the art is abstract, so a wider crop
   costs nothing and keeps the lead from towering over the grid below it */
.feature__media img { width: 100%; aspect-ratio: 16 / 9; max-height: 320px; object-fit: cover;
  transition: transform 0.7s var(--ease); }
.feature:hover .feature__media img { transform: scale(1.02); }
.feature__body { display: flex; flex-direction: column; justify-content: center; }
/* says what the slot is before it says what's in it */
.feature__flag { font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--bronze); margin-bottom: 14px; }
.feature__kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-family: var(--mono);
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 20px; }
.feature__kicker .cat { color: var(--ink); }
.feature__kicker .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.feature h2 { font-family: 'Editorial New', serif; font-weight: 200; font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 14px; }
.feature h2 a { color: inherit; }
.feature:hover h2 a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.feature p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 20px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.feature .btn { align-self: flex-start; padding: 12px 20px; }

/* "All writing" heading row */
.posts-head { display: flex; align-items: baseline; justify-content: space-between; margin: 0 0 24px; gap: 24px; }
.posts-head h2 { font-family: 'Editorial New', serif; font-weight: 200; font-size: clamp(26px, 3vw, 40px);
  line-height: 1.0; letter-spacing: -0.022em; color: var(--ink); }
.posts-head .count { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted-2); white-space: nowrap; }

/* control bar — search + category dropdown */
.controls { display: flex; align-items: stretch; background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: var(--radius); overflow: hidden; }
.controls__search { display: flex; align-items: center; gap: 10px; flex: 1; padding: 0 16px; }
.controls__search svg { width: 16px; height: 16px; color: var(--muted-2); flex: none; }
.controls__search input { flex: 1; min-width: 0; border: 0; background: transparent; font-family: 'Catalogue', sans-serif;
  font-size: 14px; color: var(--ink); padding: 15px 0; }
.controls__search input:focus { outline: none; }
.controls__search input::placeholder { color: var(--muted-2); }
.controls__select { position: relative; display: flex; align-items: center; border-left: 1px solid var(--line);
  min-width: 150px; }
@media (max-width: 520px) { .controls__select { min-width: 116px; } }
.controls__select label { position: absolute; left: 16px; top: 9px; font-family: var(--mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-2); pointer-events: none; }
.controls__select select { appearance: none; -webkit-appearance: none; border: 0; background: transparent;
  font-family: 'Catalogue', sans-serif; font-weight: 500; font-size: 13px; color: var(--ink-soft);
  padding: 23px 40px 9px 16px; width: 100%; cursor: pointer; border-radius: 0; }
.controls__select select:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; }
.controls__select::after { content: ""; position: absolute; right: 18px; top: 56%; width: 7px; height: 7px;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted);
  transform: translateY(-50%) rotate(45deg); pointer-events: none; }

/* post grid — column-ruled row, same anatomy as the homepage Field notes */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 40px;
  border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
@media (max-width: 900px) { .posts-grid { grid-template-columns: 1fr; border-bottom: none; } }
.posts-grid.is-empty { margin-top: 0; border: none; }

.card { display: flex; flex-direction: column; text-decoration: none; color: inherit; cursor: pointer;
  padding: 32px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
/* edge classes come from JS so the rules stay correct after filtering hides cards */
.card.is-col-first { padding-left: 0; }
.card.is-col-last { padding-right: 0; border-right: none; }
.card:focus-visible { outline: 2px solid var(--ink); outline-offset: -4px; border-radius: 4px; }
.card.is-hidden { display: none; }
.card.is-row-last { border-bottom: none; }
@media (max-width: 900px) {
  .card, .card.is-col-first, .card.is-col-last { padding: 28px 0; border-right: none; }
  .card.is-row-last { border-bottom: 1px solid var(--line); }
  .card:last-child { border-bottom: none; }
}
.card__media { position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 16 / 9; background: #EDE8E0; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__title { font-family: 'Editorial New', serif; font-weight: 200; margin: 20px 0 0;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.1; letter-spacing: -0.012em; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card:hover .card__title { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.card__excerpt { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 12px 0 0; max-width: 38ch;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card__foot { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 0;
  font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.card__cat { color: var(--bronze); }
.card__foot .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); flex: none; }
.card__date { color: var(--muted-2); white-space: nowrap; }
.card__cta { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Catalogue', sans-serif; font-size: 13px; letter-spacing: normal; text-transform: none;
  color: var(--ink-soft); }
.card__cta .arr { transition: transform 0.4s var(--ease); }
.card:hover .card__cta .arr { transform: translateX(4px); }

.blog-empty { padding: 56px 0; font-family: var(--mono); font-size: 13px; color: var(--muted); text-align: center;
  border-bottom: 1px solid var(--line); }


/* =========================================================
   ARTICLE
   ========================================================= */
.article-head { background: var(--paper-soft); padding-top: var(--header-h, 88px); }
.article-head .wrap { padding-top: clamp(40px, 6vh, 72px); padding-bottom: 48px; }
.article-back { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 40px;
  transition: color 0.2s var(--ease); }
.article-back:hover { color: var(--ink); }
.article-back .arr { transition: transform 0.3s var(--ease); }
.article-back:hover .arr { transform: translateX(-3px); }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 28px; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.article-meta .cat { color: var(--bronze); }
.article-head h1 { font-family: 'Editorial New', serif; font-weight: 200; font-size: clamp(34px, 5vw, 68px);
  line-height: 1.0; letter-spacing: -0.026em; color: var(--ink); max-width: 20ch; }
.article-standfirst { font-size: clamp(17px, 1.7vw, 21px); color: var(--ink-soft); line-height: 1.55;
  max-width: 56ch; margin: 28px 0 0; font-weight: 350; }

.article-hero { background: var(--paper-soft); }
.article-hero figure { margin: 0; padding: 6px; background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: 12px; }
.article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; background: #EDE8E0; }

/* prose */
.prose { background: var(--paper-soft); padding: 56px 0 112px; }
.prose__inner { font-family: 'Catalogue', sans-serif; font-weight: 350; font-size: 18px; line-height: 1.72;
  color: var(--ink-soft); }
.prose__inner > *:first-child { margin-top: 0; }
.prose__inner p { margin: 0 0 24px; }
.prose__inner a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--bronze); transition: text-decoration-color 0.2s var(--ease); }
.prose__inner a:hover { text-decoration-color: var(--ink); }
.prose__inner strong { font-weight: 500; color: var(--ink); }
.prose__inner em { font-style: italic; }
.prose__inner h2 { font-family: 'Editorial New', serif; font-weight: 200; font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); margin: 64px 0 24px; }
.prose__inner h2 strong { font-weight: 200; }
.prose__inner h3 { font-family: 'Editorial New', serif; font-weight: 400; font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.12; letter-spacing: -0.015em; color: var(--ink); margin: 48px 0 20px; }
.prose__inner h6 { font-family: 'Catalogue', sans-serif; font-weight: 500; font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--bronze); margin: 56px 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.prose__inner h6 strong { font-weight: 500; }
.prose__inner ul, .prose__inner ol { margin: 0 0 24px; padding-left: 24px; }
.prose__inner li { margin: 0 0 12px; padding-left: 6px; }
.prose__inner li::marker { color: var(--bronze); }
.prose__inner li p { margin: 0 0 8px; }
.prose__inner blockquote { margin: 32px 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--bronze);
  font-family: 'Editorial New', serif; font-style: italic; font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35; color: var(--ink); }
.prose__inner code { font-family: var(--mono); font-size: 0.86em; background: var(--paper);
  border: 1px solid var(--line); border-radius: 4px; padding: 2px 6px; color: var(--ink); }
.prose__inner img, .prose__inner video { width: 100%; border-radius: var(--radius); border: 1px solid var(--line);
  margin: 32px 0; background: #EDE8E0; }
/* marked wraps media in <p> — let the media's own margin own the spacing */
.prose__inner p:has(> img:only-child), .prose__inner p:has(> video:only-child) { margin: 0; }
/* consecutive images → side-by-side pair on wide screens */
.prose__inner img + img { margin-top: -8px; }
.prose__inner .prose-figpair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
.prose__inner .prose-figpair img { margin: 0; }
@media (max-width: 600px) { .prose__inner .prose-figpair { grid-template-columns: 1fr; } }
.prose__inner hr { border: none; border-top: 1px solid var(--line); margin: 48px 0; }
/* small caption-like source lines */
.prose__inner p > em:only-child { display: block; font-family: var(--mono); font-style: normal; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-top: -12px; }

/* reading progress bar */
.read-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--bronze); z-index: 200;
  transition: width 0.1s linear; }

/* more writing */
.more { background: var(--cream); padding: 112px 0; }
.more__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.more__head h2 { font-family: 'Editorial New', serif; font-weight: 200; font-size: clamp(26px, 3vw, 40px);
  line-height: 1.0; letter-spacing: -0.022em; color: var(--ink); }
.more .posts-grid { margin-top: 0; border-top-color: var(--line-strong); }
.more .card__media { background: #D2CAC1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .grid-card, .site-header, .blog-masthead h1 {
    opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}
