/* ============================================================
   SBL MORTGAGE — SHARED STYLESHEET
   Pearl white + deep forest green editorial system
   ============================================================ */

:root {
  /* Palette */
  --pearl: #f7f5ef;
  --pearl-2: #efece2;
  --pearl-3: #e6e2d4;
  --pearl-4: #dad5c4;
  --paper: #fbfaf6;
  --ink: #0d1f15;
  --ink-2: #1a3325;
  --ink-3: #2d4a38;
  --green: #1f4a32;
  --green-2: #2a6043;
  --green-3: #3a7a55;
  --green-light: #6b9b7e;
  --green-pale: #c5d8cb;
  --green-bg: rgba(31, 74, 50, 0.04);
  --gold: #b89968;
  --rust: #9a3f1c;
  --muted: #6b7569;
  --rule: rgba(13, 31, 21, 0.16);
  --rule-soft: rgba(13, 31, 21, 0.08);
  --rule-faint: rgba(13, 31, 21, 0.04);
  --shadow: rgba(13, 31, 21, 0.08);
  --shadow-strong: rgba(13, 31, 21, 0.18);
  --red: #8b2c1c;
  --amber: #8a6f1f;
}

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

html, body {
  background: var(--pearl);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-image:
    radial-gradient(circle at 18% 12%, rgba(31, 74, 50, 0.05) 0, transparent 38%),
    radial-gradient(circle at 88% 88%, rgba(184, 153, 104, 0.05) 0, transparent 40%);
  min-height: 100vh;
  position: relative;
}

/* Subtle paper noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 999;
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.serif { font-family: 'Fraunces', serif; }
.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: "tnum" 1; }

a { color: var(--green); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--green-2); }

/* ============ HEADER ============ */
.site-header {
  border-bottom: 1px solid var(--ink);
  padding: 1.25rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--pearl);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  font-style: italic;
  border-radius: 4px;
  position: relative;
  letter-spacing: -0.02em;
}

.brand-mark::after {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  background: var(--green-3);
  border-radius: 50%;
}

.brand-text {
  line-height: 1.1;
}

.brand-text .name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.brand-text .name .tld {
  color: var(--green-2);
  font-style: italic;
  font-weight: 500;
}

.brand-text .sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.85rem;
  color: var(--ink-2);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--green-2); }

.site-nav a.active {
  color: var(--green);
}

.site-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
}

.site-nav .nav-cta {
  background: var(--ink);
  color: var(--pearl);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
}

.site-nav .nav-cta:hover {
  background: var(--green);
  color: var(--pearl);
}

.header-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green-3);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ MAIN LAYOUT ============ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 2.5rem 5rem;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2.5rem 5rem;
}

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-2);
  margin-bottom: 1rem;
}

.eyebrow .num {
  color: var(--muted);
  margin-right: 0.5rem;
}

.h-display {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 4.25rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.h-display em {
  font-style: italic;
  color: var(--green-2);
}

.h-page {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.h-page em { font-style: italic; color: var(--green-2); }

.h-section {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.lede {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  line-height: 1.42;
  color: var(--ink);
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 740px;
  letter-spacing: -0.01em;
}

.lede em {
  font-style: italic;
  color: var(--green-2);
}

.lede strong {
  font-weight: 600;
  color: var(--ink);
}

.body-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 720px;
}

.body-text p { margin-bottom: 1.1rem; }

.body-text strong {
  font-weight: 600;
  color: var(--ink);
}

.body-text em {
  font-style: italic;
  color: var(--green-2);
}

/* Drop cap for first paragraph in narrative */
.narrative {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 2rem;
  max-width: 720px;
}

.narrative p { margin-bottom: 1.1rem; }

.narrative p strong { font-weight: 600; color: var(--ink); }
.narrative p em { font-style: italic; color: var(--green-2); }

.narrative.dropcap p:first-child::first-letter {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.12em 0 0;
  color: var(--green);
  font-weight: 600;
}

.narrative.two-col {
  column-count: 2;
  column-gap: 2.5rem;
  max-width: 100%;
}

.narrative.two-col p { break-inside: avoid; }

/* ============ PAGE HEADER ============ */
.page-header {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1.5rem;
  margin-bottom: 2.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.page-header .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-header .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: right;
  line-height: 1.4;
  max-width: 240px;
  flex-shrink: 0;
}

/* ============ STAT GRID ============ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  margin: 2rem 0 2.5rem;
}

.stat {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--rule-soft);
}

.stat:last-child { border-right: none; }

.stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.stat .value {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat .value.green { color: var(--green-2); }
.stat .value.red { color: var(--red); }
.stat .value.amber { color: var(--amber); }

.stat .delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  margin-top: 0.4rem;
  color: var(--muted);
}

.stat .delta.green { color: var(--green-2); }
.stat .delta.red { color: var(--red); }

/* ============ SECTION HEADING ============ */
.section-h {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 2.75rem 0 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--rule-soft);
}

.section-h .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--green-2);
}

.section-h h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.section-h .rule-line {
  flex: 1;
  height: 1px;
  background: var(--rule-soft);
}

/* ============ DATA TABLE ============ */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  font-size: 0.93rem;
}

.data-table th {
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--ink);
}

.data-table th:last-child,
.data-table td:last-child { text-align: right; }

.data-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule-soft);
  color: var(--ink-2);
}

.data-table tr.bottom td {
  border-bottom: none;
  border-top: 1px solid var(--ink);
  font-weight: 600;
  color: var(--ink);
  padding-top: 0.875rem;
}

.data-table .mono {
  font-family: 'JetBrains Mono', monospace;
  font-feature-settings: "tnum" 1;
}

.data-table .green-text { color: var(--green-2); }
.data-table .red-text { color: var(--red); }
.data-table .muted-text { color: var(--muted); }

/* ============ CALLOUT ============ */
.callout {
  border-left: 3px solid var(--green-2);
  padding: 1.25rem 1.5rem;
  background: var(--green-bg);
  margin: 1.5rem 0 2rem;
  border-radius: 0 4px 4px 0;
}

.callout .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-2);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.callout p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-2);
}

.callout p strong { color: var(--ink); font-weight: 600; }
.callout p em { font-style: italic; color: var(--green-2); }

/* ============ FLOW (signature visual) ============ */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  align-items: stretch;
  margin: 2rem 0 2.5rem;
}

.flow-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.flow-card:hover { transform: translateY(-2px); }

.flow-card.income { border-color: rgba(31, 74, 50, 0.3); background: rgba(31, 74, 50, 0.03); }
.flow-card.expense { border-color: rgba(154, 63, 28, 0.3); background: rgba(154, 63, 28, 0.03); }
.flow-card.result { border-color: var(--green-2); background: var(--green-bg); border-width: 2px; }

.flow-card .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.flow-card .val {
  font-family: 'Fraunces', serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.flow-card.income .val { color: var(--green-2); }
.flow-card.expense .val { color: var(--rust); }
.flow-card.result .val { color: var(--green); font-weight: 600; }

.flow-card .sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--muted);
}

.flow-op {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--muted);
  align-self: center;
  font-style: italic;
}

/* ============ COVERAGE METER ============ */
.coverage-block {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 2rem;
  margin: 1.5rem 0 2.5rem;
}

.coverage-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}

.coverage-head .lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.coverage-head .lbl .name {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: none;
  margin-top: 0.25rem;
}

.coverage-head .pct {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.coverage-head .pct.green { color: var(--green-2); }
.coverage-head .pct.amber { color: var(--amber); }
.coverage-head .pct.red { color: var(--red); }

.coverage-bar-wrap {
  height: 14px;
  background: var(--pearl-3);
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}

.coverage-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-light), var(--green-2));
  transition: width 0.5s ease;
  border-radius: 7px;
}

.coverage-bar.amber { background: linear-gradient(90deg, #d4b76a, #8a6f1f); }
.coverage-bar.red { background: linear-gradient(90deg, #c97c69, var(--red)); }

.coverage-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--muted);
}

.coverage-status {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.coverage-status .text {
  font-size: 0.95rem;
  color: var(--ink-2);
  flex: 1;
}

.coverage-status .text strong {
  color: var(--ink);
  font-weight: 600;
}

.badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

.badge-green { background: var(--green-bg); color: var(--green); border: 1px solid rgba(31, 74, 50, 0.2); }
.badge-amber { background: rgba(138, 111, 31, 0.08); color: var(--amber); border: 1px solid rgba(138, 111, 31, 0.2); }
.badge-red { background: rgba(139, 44, 28, 0.08); color: var(--red); border: 1px solid rgba(139, 44, 28, 0.2); }

/* ============ CHART ============ */
.chart-block {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0 2rem;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--rule-soft);
}

.chart-head h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.chart-head .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.chart-wrap {
  position: relative;
  width: 100%;
  height: 300px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Inter Tight', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid transparent;
  letter-spacing: 0.005em;
}

.btn-primary {
  background: var(--ink);
  color: var(--pearl);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--pearl);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--pearl);
}

.btn-ghost {
  background: transparent;
  color: var(--green-2);
  border-color: transparent;
  padding: 0.5rem 0;
}

.btn-ghost:hover { color: var(--green); }

.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1rem;
}

/* ============ CTA BLOCK ============ */
.cta-block {
  margin-top: 4rem;
  padding: 3.5rem;
  background: var(--ink);
  color: var(--pearl);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 122, 85, 0.45), transparent 70%);
  pointer-events: none;
}

.cta-block::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-block .content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.cta-block .eyebrow {
  color: var(--green-light);
}

.cta-block h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-block h2 em {
  font-style: italic;
  color: var(--green-light);
}

.cta-block p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  color: rgba(247, 245, 239, 0.85);
}

.cta-block .actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-block .btn-primary {
  background: var(--pearl);
  color: var(--ink);
  border-color: var(--pearl);
}

.cta-block .btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--ink);
}

.cta-block .btn-secondary {
  background: transparent;
  color: var(--pearl);
  border-color: rgba(247, 245, 239, 0.3);
}

.cta-block .btn-secondary:hover {
  background: rgba(247, 245, 239, 0.1);
  color: var(--pearl);
  border-color: var(--pearl);
}

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--ink);
  padding: 3rem 2.5rem 2rem;
  background: var(--pearl-2);
  margin-top: 4rem;
}

.site-footer .container {
  padding: 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer .col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
}

.site-footer .col a {
  display: block;
  color: var(--ink-2);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.site-footer .col a:hover { color: var(--green); }

.site-footer .tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-2);
  margin-top: 1rem;
  max-width: 320px;
  line-height: 1.5;
}

.site-footer .legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-soft);
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .container, .container-narrow { padding: 2rem 1.5rem 4rem; }
  .h-display { font-size: 3rem; }
  .h-page { font-size: 2.25rem; }
  .lede { font-size: 1.2rem; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .narrative.two-col { column-count: 1; }
  .flow { grid-template-columns: 1fr; }
  .flow-op { display: none; }
  .page-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .page-header .tagline { text-align: left; }
  .site-nav { gap: 1rem; }
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-block { padding: 2rem; }
  .cta-block h2 { font-size: 2rem; }
}

@media (max-width: 640px) {
  .site-header { padding: 1rem; flex-wrap: wrap; gap: 1rem; }
  .site-nav { width: 100%; justify-content: space-between; gap: 0.5rem; }
  .site-nav a { font-size: 0.78rem; }
  .header-meta { display: none; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .h-display { font-size: 2.25rem; }
  .h-page { font-size: 1.75rem; }
  .site-footer .container { grid-template-columns: 1fr; }
}
