/*
  write.name — Site stylesheet
  Marketing homepage, auth pages, dashboard.
  Token system shared with lib/write_web/theme.css — keep :root block in sync.
*/

/* ---------- Font face ---------- */

@font-face {
  font-family: "Literata";
  src: url("/fonts/Literata-VF-4ee85b2ef70a8f7aa6a98ee97b50d801.woff2?vsn=d") format("woff2-variations");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Literata";
  src: url("/fonts/Literata-Italic-VF-080c177a23675eadaa9bd1b39f03fe4b.woff2?vsn=d") format("woff2-variations");
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */

:root {
  /* Paper & ink */
  --paper:       #faf7f2;
  --paper-sunk:  #f2ede0;
  --ink:         #1a1915;
  --ink-soft:    #3a352b;
  --muted:       #6b655a;
  --rule:        #d6cfbe;
  --rule-soft:   #ebe4d1;
  --accent:      #6b1a1a;
  --accent-soft: #f2e4d8;
  --success:      #4a6b3a;
  --success-soft: #e8f0e4;

  /* Type */
  --font-serif:  "Literata", Georgia, "Times New Roman", serif;
  --font-mono:   ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, monospace;

  /* Fluid type scale */
  --text-display: clamp(2.5rem, 1.5rem + 5vw, 4rem);
  --text-h1:      clamp(1.75rem, 1.25rem + 2.5vw, 2.5rem);
  --text-h2:      clamp(1.375rem, 1.125rem + 1.25vw, 1.75rem);
  --text-h3:      clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
  --text-lede:    clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
  --text-body:    1rem;
  --text-meta:    0.875rem;
  --text-micro:   0.75rem;

  /* Measures */
  --measure-prose: 38rem;
  --measure-ui:    58rem;
  --measure-wide:  72rem;

  /* Outer page padding */
  --gutter: clamp(1rem, 2vw, 2rem);
}

/* ---------- Reset ---------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-serif);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--paper);
  font-variation-settings: "opsz" 14;
  font-feature-settings: "liga" 1, "calt" 1, "onum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Autofill override — keeps inputs in the warm-paper palette */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px var(--paper-sunk) inset;
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  z-index: 100;
  font-size: var(--text-meta);
}
.skip-link:focus { top: 0; }

/* ---------- Masthead ---------- */

.site-nav {
  max-width: var(--measure-ui);
  margin: 0 auto;
  padding: 1.25rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
}
.site-nav .logo {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: var(--text-h2);
  font-variation-settings: "opsz" 28;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.site-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-nav .nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.site-nav .nav-links a:hover,
.site-nav .nav-links a:focus-visible {
  color: var(--accent);
}
.site-nav .nav-links .acct {
  color: var(--muted);
  font-style: normal;
}

/* Dashboard secondary nav */
.dashboard-subnav {
  max-width: var(--measure-ui);
  margin: 0 auto;
  padding: 0.75rem var(--gutter);
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--rule-soft);
}
.dashboard-subnav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.dashboard-subnav a:hover,
.dashboard-subnav a:focus-visible,
.dashboard-subnav a[aria-current="page"] {
  color: var(--accent);
}

/* ---------- Main container ---------- */

.site-main {
  max-width: var(--measure-ui);
  margin: 0 auto;
  padding: 3rem var(--gutter) 5rem;
}
.site-main.is-wide {
  max-width: var(--measure-wide);
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.1;
  font-feature-settings: "liga" 1, "calt" 1, "lnum" 1;
}
h1 { font-size: var(--text-h1); font-weight: 800; letter-spacing: -0.015em; font-variation-settings: "opsz" 36; }
h2 { font-size: var(--text-h2); font-weight: 700; font-variation-settings: "opsz" 28; }
h3 { font-size: var(--text-h3); font-weight: 700; line-height: 1.35; font-variation-settings: "opsz" 20; }

p { margin-bottom: 1em; }
em { font-style: italic; }

/* Baseline link style. More specific contexts (.site-nav, .row-actions,
   .site-footer, .back-link, .btn) override this below. */
a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
a:visited { opacity: 0.85; }
a:hover,
a:focus-visible {
  text-decoration-thickness: 2px;
}

/* Kicker — mono micro label, used above major headings */
.kicker {
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 3rem;
}

/* Italic lede — post subheads, homepage tagline, auth subtitles */
.lede {
  font-size: var(--text-lede);
  line-height: 1.4;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Dividers */
.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 3rem 0;
}

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.back-link::before { content: "← "; }
.back-link:hover,
.back-link:focus-visible { color: var(--ink); }
.back-link { transition: color 0.15s ease; }

/* ---------- Flash ---------- */

.flash {
  padding: 0.9rem 1.2rem;
  border-radius: 3px;
  margin-bottom: 2rem;
  font-size: var(--text-meta);
  border-left: 3px solid var(--success);
  background: var(--success-soft);
  color: var(--ink);
}
.flash.flash-error {
  border-left-color: var(--accent);
  background: var(--accent-soft);
}
.flash strong { display: block; margin-bottom: 0.15rem; }

/* ---------- Forms ---------- */

.form-group {
  margin-bottom: 1.25rem;
}
label {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-meta);
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="date"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-serif);
  font-size: var(--text-body);
  line-height: 1.5;
  color: var(--ink);
  background-color: var(--paper-sunk);
  border: 1px solid var(--rule);
  border-radius: 3px;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: -1px;
}
input.has-error,
textarea.has-error { border-color: var(--accent); }
textarea {
  min-height: 10rem;
  resize: vertical;
  line-height: 1.55;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent);
}
.field-error {
  font-size: var(--text-meta);
  color: var(--accent);
  margin-top: 0.3rem;
}
.form-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

/* ---------- Editor "writing on a page" textarea ---------- */

.editor {
  max-width: var(--measure-ui);
}
.editor .editor-title {
  display: block;
  width: 100%;
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
  background: var(--paper);
  border: none;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}
.editor .editor-title::placeholder {
  color: var(--muted);
  font-style: italic;
  font-weight: 600;
}
.editor .editor-title:focus {
  outline: none;
  border-bottom: 2px solid var(--accent);
}
.editor .editor-body {
  display: block;
  width: 100%;
  min-height: 32rem;
  font-family: var(--font-serif);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--paper);
  border: none;
  border-bottom: 1px solid var(--rule-soft);
  border-radius: 0;
  padding: 1rem 0;
  resize: vertical;
}
.editor .editor-body:focus {
  outline: none;
  border-bottom: 2px solid var(--accent);
}
.editor .editor-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.editor .editor-meta .form-group {
  margin-bottom: 0;
}
.editor .editor-meta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
.editor .editor-meta-checks .checkbox-label {
  font-family: var(--font-serif);
  font-size: var(--text-meta);
  color: var(--ink);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: var(--text-body);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background-color: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--accent);
  border-color: var(--accent);
}
.btn-link {
  background: transparent;
  color: var(--ink);
  padding: 0.75rem 0.4rem;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.btn-link:hover,
.btn-link:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.btn-danger {
  background: transparent;
  color: var(--accent);
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  min-height: auto;
}
.btn-danger:hover,
.btn-danger:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-danger-confirm {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: var(--paper);
  border: 1px solid var(--accent);
  border-radius: 3px;
  font-family: var(--font-serif);
  font-size: var(--text-meta);
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
}

/* ---------- Danger disclosure ---------- */

.danger-disclosure {
  display: inline-block;
}
.danger-disclosure summary {
  list-style: none;
  cursor: pointer;
}
.danger-disclosure summary::-webkit-details-marker { display: none; }
.danger-panel {
  margin-top: 0.75rem;
  padding: 1rem 1.2rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 3px;
  font-size: var(--text-meta);
  max-width: 32rem;
}
.danger-panel p {
  margin-bottom: 0.5rem;
  color: var(--ink);
}

/* When a disclosure opens inside a row-list row, float the panel below
   the entire row (full width) instead of squishing into row-actions. */
.row .danger-disclosure[open] .danger-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 0.5rem;
  max-width: none;
  z-index: 10;
}

/* ---------- Badges ---------- */

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
}
.badge-draft {
  background: var(--rule-soft);
  color: var(--muted);
}
.badge-published,
.badge-scheduled {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ---------- Row lists (replaces dashboard <table>) ---------- */

.row-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.row {
  position: relative;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 0.75rem;
  border-bottom: 1px solid var(--rule-soft);
  border-left: 3px solid transparent;
  transition: border-left-color 0.15s ease, background-color 0.15s ease;
}
.row:hover {
  border-left-color: var(--accent);
  background-color: var(--paper-sunk);
}
.row:last-child { border-bottom: none; }
.row-main { flex: 1; min-width: 0; }
.row-title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.row-title a {
  color: var(--ink);
  text-decoration: none;
}
.row-title a:hover,
.row-title a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.row-meta {
  font-size: var(--text-meta);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.row-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.row-actions a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px dotted var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.row-actions a:hover,
.row-actions a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

@media (max-width: 700px) {
  .row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .row-actions {
    padding-top: 0;
  }
}

/* ---------- Empty state ---------- */

.empty-state {
  text-align: center;
  padding: 5rem 1rem;
  border: 1px dashed var(--rule);
  border-radius: 3px;
}
.empty-state p {
  font-size: var(--text-lede);
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ---------- Dashboard header ---------- */

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.dashboard-header h1,
.dashboard-header h2 {
  margin-bottom: 0;
}
.section-label {
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* ---------- Auth container ---------- */

.auth-container {
  max-width: 24rem;
  margin: 5rem auto 8rem;
  padding: 0 var(--gutter);
}
.auth-container h1 {
  text-align: center;
  margin-bottom: 0.25rem;
}
.auth-container .lede {
  text-align: center;
}
.auth-container .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}
.auth-container .alt-action {
  text-align: center;
  margin-top: 1.5rem;
  font-size: var(--text-meta);
  color: var(--muted);
}

/* ---------- Auth section helpers (login/confirm/settings) ---------- */

/* The "expand to reveal password form" disclosure on the login page.
   Reuses .danger-disclosure's summary chrome conceptually but the visual
   treatment is different — this one is a centered tab-style label below
   a top rule, not an inline trigger. */
.auth-container .auth-disclosure {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.auth-container .auth-disclosure > summary {
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  text-align: center;
  padding: 0.25rem 0;
}
.auth-container .auth-disclosure > summary::-webkit-details-marker { display: none; }
.auth-container .auth-disclosure > summary:hover { color: var(--ink); }
.auth-container .auth-disclosure[open] > summary {
  margin-bottom: 1rem;
}

/* Centered footer link block separated from the form by a subtle rule.
   Used by the confirm page's "Set a password →" / "Cancel and log out" links. */
.auth-container .auth-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  text-align: center;
  font-size: var(--text-meta);
  color: var(--muted);
}
.auth-container .auth-meta a { color: var(--ink); }

/* Status line under settings section labels: "Current: foo@bar ✓ confirmed". */
.auth-status {
  font-size: var(--text-meta);
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.auth-status strong {
  color: var(--ink);
  font-weight: 600;
}
.auth-status .ok,
.auth-status .warn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  margin-left: 0.4rem;
}
.auth-status .ok { color: #4a6b3a; }
.auth-status .warn { color: #8a5520; }

/* Small explanatory text under a section heading, above its form. */
.auth-help {
  font-size: var(--text-meta);
  color: var(--muted);
  margin: 0 0 0.75rem;
}

/* ---------- Homepage hero ---------- */

.hero {
  max-width: var(--measure-wide);
  margin: 6rem auto 8rem;
  padding: 0 var(--gutter);
}
.hero-inner { max-width: 36rem; }
.hero h1 {
  font-size: var(--text-display);
  font-weight: 900;
  font-variation-settings: "opsz" 72;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero .lede {
  max-width: 32rem;
  margin-bottom: 2.5rem;
}
.hero .ornament {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 10rem;
  margin: 0.75rem 0 1.5rem;
}
.hero .ornament::before,
.hero .ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.hero .ornament span {
  color: var(--accent);
  font-size: var(--text-micro);
  line-height: 1;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.site-footer {
  max-width: var(--measure-ui);
  margin: 0 auto;
  padding: 2.5rem var(--gutter) 3.5rem;
  font-family: var(--font-mono);
  font-size: var(--text-micro);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--rule);
  margin-top: 5rem;
}
.site-footer a { color: var(--muted); text-decoration: none; transition: color 0.15s ease; }

/* ============================================================
   Analytics dashboard
   ============================================================ */

.range-tabs {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.range-tabs a {
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-bottom: 1px solid transparent;
}

.range-tabs a.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat-card {
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  background: var(--paper-card, var(--paper));
}

.stat-card .kicker {
  margin: 0 0 0.1rem;
}

.stat-card .kicker-sub {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.stat-card .stat-value {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ink);
}

.chart-section {
  margin: 2rem 0;
}

.analytics-chart {
  width: 100%;
  height: auto;
  color: var(--accent);
  display: block;
  margin-top: 0.5rem;
}

.analytics-chart .axis-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  fill: var(--ink-soft);
}

.analytics-chart-empty {
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  padding: 2rem;
}

.top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.top-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.top-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--rule);
}

.top-list li:last-child {
  border-bottom: none;
}

.top-list-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-list-label small {
  color: var(--ink-soft);
  font-size: 0.85em;
}

.top-list-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.analytics-footnote {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--ink-soft);
  max-width: var(--measure-prose);
}
.site-footer a:hover { color: var(--ink); }
