/* storelaunchguides.com — "whisper on paper"
   Bespoke build from DESIGN.md (Aqua Voice reference): ultra-light type on
   near-white, an achromatic gray ladder, and a single sky blue reserved for
   the primary action and the live dot. Flat surfaces, hairline borders,
   millimetre shadows. Link/action blue is darkened from the reference iris to
   clear WCAG-AA on this canvas. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('/fonts/inter-200.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/ibm-plex-mono-500.woff2') format('woff2');
}

:root {
  /* Colors — DESIGN.md tokens */
  --sky: #67beff;          /* filled CTA + live dot ONLY */
  --iris: #4288ff;         /* focus rings, decorative strokes */
  --iris-ink: #2b5fd9;     /* AA-safe link/action text derived from iris */
  --paper: #fafbfc;
  --mist: #f3f7fa;
  --fog: #f2f6fa;
  --linen: #e5e8ec;
  --ash: #efefef;
  --ink: #292c3d;
  --slate: #3e4150;
  --pewter: #686a76;
  --graphite: #7d7e7e;
  --silver: #c2c3c8;
  --obsidian: #171719;
  --midnight: #1e1e20;

  /* Type */
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --text-caption: 0.6875rem;   /* 11px */
  --text-small: 0.8125rem;     /* 13px */
  --text-ui: 0.875rem;         /* 14px */
  --text-body: 1rem;           /* 16px */
  --text-sub: 1.25rem;         /* 20px */
  --text-h-sm: 1.5rem;         /* 24px */
  --text-h: 2.5rem;            /* 40px */
  --text-h-lg: 3.5rem;         /* 56px */
  --text-display: clamp(2.6rem, 1.2rem + 5.4vw, 4.5rem); /* → 72px */

  /* Shape & depth */
  --r-btn: 8px;
  --r-card: 16px;
  --r-card-lg: 20px;
  --r-chip: 4px;
  --shadow-mm: 0 0 0 1px rgba(0,0,0,.02), 0 1px 1px .5px rgba(0,0,0,.02),
               0 3px 3px 1.5px rgba(0,0,0,.02), 0 6px 6px -3px rgba(0,0,0,.02),
               0 12px 12px -6px rgba(0,0,0,.02), 0 24px 24px -12px rgba(0,0,0,.02);
  --shadow-panel: inset 0 1px 0 #fff, 0 0 0 1px rgba(0,0,0,.06), 0 1px 1px .5px rgba(0,0,0,.06),
                  0 3px 3px 1.5px rgba(0,0,0,.06), 0 6px 6px -3px rgba(0,0,0,.06),
                  0 12px 12px -6px rgba(0,0,0,.06);

  /* Layout */
  --page-w: 1200px;
  --measure: 740px;

  /* Motion — network law */
  --dur-1: 130ms;
  --dur-2: 220ms;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* ── Base ─────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--slate);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 { color: var(--ink); font-weight: 200; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: var(--text-h-lg); letter-spacing: 0; }
h2 { font-size: var(--text-h); }
h3 { font-size: var(--text-h-sm); font-weight: 400; line-height: 1.25; }
p { margin: 0 0 1em; }
a { color: var(--iris-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { opacity: .82; }
:focus-visible { outline: 2px solid var(--iris); outline-offset: 2px; border-radius: 2px; }
img { max-width: 100%; height: auto; }

.wrap { max-width: var(--page-w); margin-inline: auto; padding-inline: 24px; }
.col { max-width: var(--measure); margin-inline: auto; padding-inline: 24px; }

/* Shared-view compatibility: src/views (author page, legal/_page.php) and
   partials wrap content in .section > .container(.container-narrow). These
   MUST exist here or those pages render as unstyled full-width columns. */
.section { padding: 96px 0; }
.container { max-width: var(--page-w); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: calc(var(--measure) + 48px); }

.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--ink); padding: 10px 16px; z-index: 200; border-radius: 0 0 var(--r-btn) 0; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Mono micro-labels: the utilitarian voice of the system */
.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--linen);
  border-radius: var(--r-chip);
  padding: 3px 10px;
  line-height: 1.4;
}
.eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pewter);
  margin: 0 0 18px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); flex: 0 0 auto; }

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font: 500 var(--text-ui)/1 var(--font-sans);
  padding: 11px 18px;
  border-radius: var(--r-btn);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), filter var(--dur-1) var(--ease);
}
.btn--fill { background: var(--sky); color: var(--ink); }
.btn--fill:hover { filter: brightness(.95); opacity: 1; }
.btn--fill .arr { display: inline-block; transition: transform var(--dur-2) var(--ease); }
.btn--fill:hover .arr { transform: translateX(3px); }
.btn--ghost { background: transparent; color: var(--slate); }
.btn--ghost:hover { background: var(--ash); opacity: 1; }

/* ── Announcement bar ─────────────────────────────────── */
.bar {
  background: var(--obsidian);
  color: var(--paper);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  padding: 11px 16px;
}
.bar a { color: inherit; }

/* ── Header ───────────────────────────────────────────── */
.topbar { background: var(--paper); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid transparent; transition: border-color var(--dur-2) var(--ease); }
.topbar.is-stuck { border-bottom-color: var(--linen); }
.topbar-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand:hover { opacity: 1; }
.brand svg { display: block; }
.brand-w { font-size: 15px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.navlinks { display: flex; align-items: center; gap: 8px; }
.navlink {
  font-size: var(--text-ui); font-weight: 500; color: var(--slate);
  text-decoration: none; padding: 10px 14px; border-radius: var(--r-btn);
  transition: background var(--dur-1) var(--ease);
}
.navlink:hover { background: var(--ash); opacity: 1; }
.navlink.is-here { color: var(--iris-ink); }
.burger { display: none; }
.drawer { display: none; }

/* ── Hero ─────────────────────────────────────────────── */
.hero { padding: 96px 0 64px; position: relative; }
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--linen) 1px, transparent 1px),
                    linear-gradient(90deg, var(--linen) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .35;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
}
.hero-in { position: relative; max-width: var(--measure); margin-inline: auto; text-align: center; }
.hero-in .eyebrow { justify-content: center; }
.hero h1 {
  font-size: var(--text-display);
  font-weight: 200;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
.hero h1 em { font-style: normal; color: var(--pewter); }
.hero-sub { font-size: 1.0625rem; line-height: 1.6; color: var(--slate); max-width: 560px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; justify-content: center; }
.hero-note { font-family: var(--font-mono); font-size: var(--text-caption); color: var(--pewter); margin-top: 18px; }

/* The admin-scene card: the page's visual anchor */
.admin-card {
  margin: 72px auto 0;
  max-width: 980px;
  background: var(--fog);
  border: 1px solid var(--linen);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-mm);
  padding: 24px;
}
.admin-card svg { display: block; width: 100%; height: auto; border-radius: 12px; }

/* ── Sections ─────────────────────────────────────────── */
.section--band { background: var(--mist); }
.section-head { max-width: var(--measure); margin: 0 auto 48px; text-align: center; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--pewter); margin: 0; }

/* Value props: hairline-separated triptych */
.props { display: grid; grid-template-columns: repeat(3, 1fr); }
.props > div { padding: 8px 36px; border-left: 1px solid var(--linen); }
.props > div:first-child { border-left: 0; }
.props .chip { margin-bottom: 16px; }
.props h3 { font-size: var(--text-sub); font-weight: 400; margin-bottom: 8px; }
.props p { font-size: var(--text-ui); line-height: 1.65; color: var(--pewter); margin: 0; }

/* Latest articles: cover-thumb rows, whole row answers the pointer */
.postrows { border-top: 1px solid var(--linen); max-width: 920px; margin-inline: auto; }
.postrow {
  display: grid;
  grid-template-columns: 176px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 24px 12px;
  border-bottom: 1px solid var(--linen);
  text-decoration: none;
  color: inherit;
  transition: background var(--dur-1) var(--ease);
}
.postrow--noimg { grid-template-columns: 1fr auto; }
.postrow:hover { background: #fff; opacity: 1; }
.postrow-img {
  width: 176px; height: 99px; object-fit: cover;
  border-radius: 10px; border: 1px solid var(--linen);
  transition: transform var(--dur-2) var(--ease);
}
.postrow:hover .postrow-img { transform: scale(1.02); }
.postrow-tx { min-width: 0; }
.postrow-date { display: block; font-family: var(--font-mono); font-size: var(--text-caption); color: var(--pewter); margin-bottom: 6px; }
.postrow-t { display: block; font-size: var(--text-h-sm); font-weight: 400; color: var(--ink); line-height: 1.3; margin: 0 0 6px; }
.postrow-d { display: block; font-size: var(--text-ui); color: var(--pewter); margin: 0; max-width: 60ch; }
.postrow-go { font-family: var(--font-mono); font-size: var(--text-small); color: var(--iris-ink); white-space: nowrap; transition: transform var(--dur-2) var(--ease); }
.postrow:hover .postrow-go { transform: translateX(4px); }
.postrows-more { margin-top: 28px; text-align: center; }

/* ── Newsletter band ──────────────────────────────────── */
.nl { background: var(--mist); border-top: 1px solid var(--linen); padding: 88px 0; }
.nl-in { max-width: var(--measure); margin-inline: auto; padding-inline: 24px; text-align: center; }
.nl-in h2 { font-size: var(--text-h); margin-bottom: 10px; }
.nl-sub { color: var(--pewter); max-width: 46ch; margin: 0 auto 26px; }
.nl-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 480px; margin-inline: auto; }
.nl-form .field {
  flex: 1 1 240px; min-width: 0;
  font: 400 var(--text-body)/1.4 var(--font-sans);
  color: var(--ink);
  padding: 11px 14px;
  border: 1px solid var(--linen);
  border-radius: var(--r-btn);
  background: #fff;
}
.nl-form .field::placeholder { color: var(--pewter); }
.nl-form .field[aria-invalid="true"] { border-color: #c0392b; }
.nl-consent { flex-basis: 100%; display: flex; gap: 8px; align-items: flex-start; justify-content: center; font-size: var(--text-small); color: var(--pewter); text-align: left; }
.nl-consent input { margin-top: 3px; accent-color: var(--iris-ink); }
.nl-consent input[aria-invalid="true"] { outline: 2px solid #c0392b; outline-offset: 1px; }
.newsletter-ok { font-weight: 500; color: var(--ink); }

/* ── Footer ───────────────────────────────────────────── */
.foot { border-top: 1px solid var(--linen); padding: 56px 0 40px; font-size: var(--text-ui); }
.foot-top { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; }
.foot-note { max-width: 380px; color: var(--pewter); line-height: 1.65; }
.foot-note b { display: block; color: var(--ink); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; margin-bottom: 10px; }
.foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.foot-col { display: grid; gap: 8px; align-content: start; }
.foot-col h2 { font: 500 var(--text-caption)/1.4 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--pewter); margin: 0 0 6px; }
.foot-col a { text-decoration: none; color: var(--pewter); }
.foot-col a:hover { color: var(--slate); opacity: 1; }
.foot-base { color: var(--pewter); margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--linen); font-size: var(--text-small); }

/* ── Cookie banner ────────────────────────────────────── */
.cookie {
  position: fixed; inset-inline: 16px; bottom: 16px;
  max-width: 520px; margin-inline: auto;
  background: #fff; border: 1px solid var(--linen); border-radius: var(--r-card);
  box-shadow: var(--shadow-panel);
  padding: 18px 20px;
  display: none;
  z-index: 150;
  font-size: var(--text-ui);
  color: var(--slate);
}
.cookie.is-visible { display: block; }
.cookie p { margin: 0 0 12px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { flex: 1 1 0; justify-content: center; }
.cookie-actions .btn--ghost { border: 1px solid var(--linen); }

/* ── Breadcrumb ───────────────────────────────────────── */
.breadcrumb-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0; margin: 0 0 28px;
  font-family: var(--font-mono); font-size: var(--text-caption); color: var(--pewter);
}
.breadcrumb-list a { color: inherit; text-decoration: none; }
.breadcrumb-list a:hover { color: var(--slate); }
.breadcrumb-list li + li::before { content: '/'; margin-right: 8px; color: var(--silver); }

/* ── Page headers (inner pages) ───────────────────────── */
.pagehead { padding: 72px 0 40px; }
.pagehead h1 { margin-bottom: 12px; }
.pagehead .lede { font-size: var(--text-sub); font-weight: 200; color: var(--slate); line-height: 1.5; max-width: 54ch; margin: 0; }

/* ── Article ──────────────────────────────────────────── */
.art { padding: 56px 0 80px; }
/* TOC rail on the LEFT, article column centered on the page: the empty right
   balance column mirrors the rail's width so the text column sits centered. */
.art-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, var(--measure)) 240px;
  column-gap: 56px;
  justify-content: center;
}
.art-top { grid-column: 2; grid-row: 1; min-width: 0; }
.art-body { grid-column: 2; grid-row: 2; min-width: 0; }
.art-shell .toc { grid-column: 1; grid-row: 2; }
.art-head { margin-bottom: 34px; }
.art-head h1 { font-size: clamp(2.1rem, 1.2rem + 3vw, 3.25rem); line-height: 1.08; margin: 0 0 18px; }
.standfirst { font-size: var(--text-sub); font-weight: 200; line-height: 1.55; color: var(--slate); margin: 0 0 22px; max-width: 58ch; }
.byline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--linen); border-bottom: 1px solid var(--linen); }
.byline img { width: 40px; height: 40px; border-radius: 50%; }
.byline-who { display: grid; line-height: 1.35; }
.byline-who a { font-weight: 500; color: var(--ink); text-decoration: none; font-size: var(--text-ui); }
.byline-who a:hover { color: var(--iris-ink); }
.byline-role { font-size: var(--text-caption); color: var(--pewter); }
.byline-meta { margin-left: auto; font-family: var(--font-mono); font-size: var(--text-caption); color: var(--pewter); text-align: right; line-height: 1.6; }
.art-cover { margin: 34px 0; }
.art-cover img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--linen); }
.art-cover figcaption { font-size: var(--text-caption); font-family: var(--font-mono); color: var(--pewter); margin-top: 10px; }

/* TOC aside */
.toc { position: sticky; top: 96px; align-self: start; font-size: var(--text-small); }
.toc h2 { font: 500 var(--text-caption)/1.4 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--pewter); margin: 0 0 12px; }
.toc-list { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--linen); }
.toc-list a {
  display: block; color: var(--pewter); text-decoration: none;
  padding: 5px 0 5px 14px; margin-left: -1px; border-left: 1px solid transparent;
  transition: color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.toc-list a:hover { color: var(--ink); border-left-color: var(--slate); opacity: 1; }

/* Prose */
.prose { max-width: var(--measure); font-size: 1.0625rem; line-height: 1.75; }
.prose h2 { font-size: 1.75rem; font-weight: 200; margin: 2.2em 0 .7em; }
.prose h3 { font-size: 1.25rem; font-weight: 500; margin: 1.8em 0 .6em; }
.prose p { margin: 0 0 1.25em; }
.prose a { overflow-wrap: anywhere; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.25em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--silver); }
.prose blockquote {
  margin: 1.6em 0; padding: 18px 22px;
  background: var(--fog); border: 1px solid var(--linen); border-radius: 12px;
  font-size: 1rem;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose img { border-radius: 12px; border: 1px solid var(--linen); }
.prose code { font-family: var(--font-mono); font-size: .88em; background: var(--ash); border-radius: var(--r-chip); padding: 2px 6px; }
.prose pre { background: var(--obsidian); color: var(--paper); border-radius: 12px; padding: 18px 20px; overflow-x: auto; font-size: .88rem; }
.prose pre code { background: none; padding: 0; color: inherit; }
.prose hr { border: 0; border-top: 1px solid var(--linen); margin: 2.5em 0; }
.prose .table-scroll { overflow-x: auto; margin: 0 0 1.25em; border: 1px solid var(--linen); border-radius: 12px; }
.prose table { border-collapse: collapse; width: 100%; font-size: var(--text-ui); }
.prose th { font: 500 var(--text-caption)/1.5 var(--font-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--pewter); text-align: left; background: var(--fog); }
.prose th, .prose td { padding: 10px 14px; border-bottom: 1px solid var(--linen); vertical-align: top; }
.prose tr:last-child td { border-bottom: 0; }
.legal-updated { font-family: var(--font-mono); font-size: var(--text-small); color: var(--pewter); }

/* Related */
.related { max-width: var(--measure); margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--linen); }
.related h2 { font-size: var(--text-h-sm); font-weight: 400; margin-bottom: 20px; }
.related-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.related-list a {
  display: block; padding: 14px 12px; text-decoration: none;
  border-top: 1px solid var(--linen);
  color: var(--ink); font-weight: 400;
  transition: background var(--dur-1) var(--ease);
}
.related-list li:last-child a { border-bottom: 1px solid var(--linen); }
.related-list a:hover { background: var(--fog); opacity: 1; }
.related-list .meta { display: block; font-family: var(--font-mono); font-size: var(--text-caption); color: var(--pewter); margin-top: 3px; }

/* ── Articles index / search / sitemap lists ──────────── */
.page-list { padding-bottom: 96px; }

/* ── About ────────────────────────────────────────────── */
/* The shared author-callout partial themes off themeColor (sky), which is a
   fill color here, not a text color — repin its text accents to the AA link
   blue. (!important outweighs the partial's inline <style>.) */
.about-author { border-color: var(--linen) !important; }
.about-author__k { color: var(--iris-ink) !important; }
.about-author__cta { color: var(--iris-ink) !important; }
.about-author:hover { border-color: var(--silver) !important; box-shadow: var(--shadow-mm) !important; }

/* ── 404 ──────────────────────────────────────────────── */
.err { padding: 120px 0 140px; text-align: center; }
.err-code { font-family: var(--font-mono); font-size: var(--text-small); color: var(--pewter); letter-spacing: .2em; margin-bottom: 18px; }
.err h1 { font-size: var(--text-h-lg); }
.err p { color: var(--pewter); max-width: 44ch; margin: 0 auto 28px; }
.err .hero-cta { justify-content: center; }

/* ── Reveal on scroll (JS adds .is-in; no-JS stays visible) ─ */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-2) var(--ease), transform var(--dur-2) var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1380px) {
  .art-shell { grid-template-columns: minmax(0, var(--measure)); }
  .art-top, .art-body, .art-shell .toc { grid-column: 1; grid-row: auto; }
  .toc { position: static; border: 1px solid var(--linen); border-radius: 12px; padding: 16px 18px; margin-bottom: 24px; }
  .toc-list { border-left: 0; column-count: 2; column-gap: 32px; }
  .toc-list li { break-inside: avoid; }
  .toc-list a { padding-left: 0; border-left: 0; }
}
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 48px; }
  .props { grid-template-columns: 1fr; }
  .props > div { border-left: 0; border-top: 1px solid var(--linen); padding: 24px 4px; }
  .props > div:first-child { border-top: 0; }
  .navlinks { display: none; }
  .burger {
    display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center;
    background: none; border: 1px solid var(--linen); border-radius: var(--r-btn); cursor: pointer; color: var(--ink);
  }
  .burger i { display: block; width: 18px; height: 2px; background: currentColor; box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor; }
  .drawer { display: none; border-top: 1px solid var(--linen); background: var(--paper); }
  .drawer.is-open { display: block; }
  .drawer-in { display: grid; gap: 6px; padding-block: 16px; }
  .drawer-in a { text-decoration: none; color: var(--ink); font-weight: 500; padding: 12px 8px; border-radius: var(--r-btn); }
  .drawer-in a:hover { background: var(--ash); }
  .drawer-in .btn { justify-content: center; margin-top: 8px; }
}
@media (max-width: 640px) {
  .postrow { grid-template-columns: 1fr; gap: 12px; padding: 20px 6px; }
  .postrow-img { width: 100%; height: auto; aspect-ratio: 16 / 9; }
  .postrow-go { display: none; }
  .postrow-t { font-size: 1.25rem; }
  .byline-meta { margin-left: 0; text-align: left; flex-basis: 100%; }
  .toc-list { column-count: 1; }
  .foot-cols { gap: 36px; }
  .admin-card { padding: 12px; }
}

/* ── Reduced motion — network law ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .postrow:hover .postrow-go, .btn--fill:hover .arr { transform: none; }
}
