  :root {
    --ink: #1b1d1f;
    --paper: #f1f0ea;
    --paper-raised: #ffffff;
    --accent: #2f7d52;
    --accent-deep: #1d5235;
    --slate: #3e454c;
    --line: #bfcabd;
    --muted: #5c5952;
    --warn: #8a4a12;
    --warn-bg: #fdf4e9;
    --field: #ffffff;
    --field-line: #b2bdb0;
    --ok: #1f6b8f;
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
      --ink: #f1efe9;
      --paper: #17191b;
      --paper-raised: #202325;
      --accent: #4fb87e;
      --accent-deep: #a8e6c4;
      --slate: #aeb6bd;
      --line: #33373a;
      --muted: #a7a49b;
      --warn: #e0a05e;
      --warn-bg: #221c10;
      --field: #191c1e;
      --field-line: #3d4247;
      --ok: #6fc0ce;
    }
  }
  :root[data-theme="dark"] {
    --ink: #f1efe9;
    --paper: #17191b;
    --paper-raised: #202325;
    --accent: #4fb87e;
    --accent-deep: #a8e6c4;
    --slate: #aeb6bd;
    --line: #33373a;
    --muted: #a7a49b;
    --warn: #e0a05e;
    --warn-bg: #221c10;
    --field: #191c1e;
    --field-line: #3d4247;
    --ok: #6fc0ce;
  }

  * { box-sizing: border-box; }
  html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "IBM Plex Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.55;
  }
  h1, h2, h3, .display {
    font-family: "Bebas Neue", Impact, "Arial Narrow Bold", sans-serif;
    letter-spacing: 0.02em;
    text-wrap: balance;
    font-weight: 400;
  }
  .wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
  }
  a { color: inherit; }
  .mono { font-family: "IBM Plex Mono", "SF Mono", Consolas, monospace; }

  /* Top bar */
  .topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1020px;
    margin: 0 auto;
    gap: 12px;
  }
  .wordmark {
    font-family: "Bebas Neue", Impact, sans-serif;
    font-size: 22px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .wordmark span { color: var(--accent); }
  .topbar .tel {
    font-family: "IBM Plex Mono", "SF Mono", Consolas, monospace;
    font-weight: 600;
    font-size: 15px;
    font-variant-numeric: tabular-nums;
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1px;
    white-space: nowrap;
  }

  /* Hero grid */
  .hero-outer { padding-block: 34px 8px; }
  .hero-grid {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: start;
  }
  .hero .eyebrow {
    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 14px;
  }
  .hero h1 {
    font-size: clamp(40px, 6.4vw, 60px);
    line-height: 0.96;
    margin: 0 0 18px;
    max-width: 12ch;
  }
  .hero .lede {
    font-size: 18px;
    color: var(--muted);
    max-width: 46ch;
    margin: 0 0 24px;
  }
  .cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fdf9f5;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 17px;
    padding: 16px 26px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 6px 0 var(--accent-deep);
    transition: transform 0.08s ease;
  }
  .call-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--accent-deep); }
  .call-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .cta-sub {
    font-family: "IBM Plex Mono", monospace;
    font-size: 14px;
    color: var(--muted);
  }

  /* Trust chips row */
  .trust-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .trust-inline li {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--slate);
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .trust-inline li svg { width: 13px; height: 13px; color: var(--accent); flex-shrink: 0; }

  /* Lead form card */
  .lead-card {
    background: var(--paper-raised);
    border: 1px solid var(--line);
    border-top: 4px solid var(--accent);
    border-radius: 6px;
    padding: 24px 22px 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  }
  .lead-card h2 {
    font-size: 26px;
    margin: 0 0 4px;
  }
  .lead-card .form-sub {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 18px;
  }
  .field { margin-bottom: 12px; }
  .field label {
    display: block;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 15px;
    color: var(--ink);
    background: var(--field);
    border: 1px solid var(--field-line);
    border-radius: 4px;
    padding: 11px 12px;
  }
  .field textarea { resize: vertical; min-height: 68px; }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(181,74,30,0.15);
  }
  .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .submit-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent);
    color: #fdf9f5;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 600;
    font-size: 17px;
    padding: 15px 22px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 6px 0 var(--accent-deep);
    cursor: pointer;
    transition: transform 0.08s ease;
    margin-top: 4px;
  }
  .submit-btn:active { transform: translateY(4px); box-shadow: 0 2px 0 var(--accent-deep); }
  .form-fineprint {
    font-size: 12px;
    color: var(--muted);
    margin: 12px 0 0;
    text-align: center;
  }
  .honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
  .form-status { font-size: 14px; margin: 12px 0 0; }
  .form-status.err { color: var(--warn); }
  .form-success {
    text-align: center;
    padding: 18px 6px 6px;
  }
  .form-success .tick {
    width: 46px; height: 46px; margin: 0 auto 12px;
    border-radius: 50%; background: var(--warn-bg);
    display: flex; align-items: center; justify-content: center;
    color: var(--ok);
  }
  .form-success h3 { font-size: 24px; margin: 0 0 6px; }
  .form-success p { font-size: 15px; color: var(--muted); margin: 0 0 14px; }

  /* Roofline divider */
  .roofline { display: block; width: 100%; height: 28px; margin-top: 12px; }
  .roofline path { fill: none; stroke: var(--line); stroke-width: 2; }

  /* Trust bar (social proof) */
  .trustbar {
    background: var(--ink);
    color: var(--paper);
    padding: 22px 0;
  }
  .trustbar .wrap {
    max-width: 1020px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .rating { display: flex; align-items: center; gap: 12px; }
  .stars { color: #f2b53c; font-size: 20px; letter-spacing: 2px; }
  .rating .rtext { font-size: 14px; color: #d7d3ca; }
  .rating .rtext b { color: var(--paper); }
  .badges { display: flex; gap: 10px; flex-wrap: wrap; }
  .badges span {
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    color: #d7d3ca;
    border: 1px solid #33373a;
    border-radius: 999px;
    padding: 6px 12px;
  }
  .ph { outline: 1px dashed rgba(224,106,52,0.6); outline-offset: 2px; }

  /* Services - spec sheet style */
  .services { padding-block: 40px 48px; }
  .services h2 { font-size: 30px; margin: 0 0 6px; }
  .services .sub { color: var(--muted); font-size: 15px; margin: 0 0 26px; }
  .spec-list { border-top: 1px solid var(--line); }
  .spec-row {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line);
  }
  .spec-row .term { font-weight: 600; font-size: 16px; }
  .spec-row .note {
    font-family: "IBM Plex Mono", monospace; font-size: 13px;
    color: var(--muted); text-align: right; white-space: nowrap;
  }

  /* Silent damage section */
  .damage-section { padding-block: 12px 52px; }
  .damage-section .eyebrow {
    font-family: "IBM Plex Mono", monospace; font-size: 13px;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px;
  }
  .damage-section h2 { font-size: 34px; margin: 0 0 8px; }
  .damage-section .sub { color: var(--muted); font-size: 16px; max-width: 54ch; margin: 0 0 32px; }
  .damage-cards { display: grid; gap: 16px; }
  .damage-card {
    background: var(--paper-raised); border: 1px solid var(--line);
    border-left: 4px solid var(--accent); border-radius: 4px; padding: 18px 20px;
  }
  .damage-card .card-head {
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 8px;
  }
  .damage-card h3 { font-size: 19px; margin: 0; letter-spacing: 0.03em; }
  .damage-card .escalation {
    font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.06em;
    color: var(--warn); background: var(--warn-bg); padding: 3px 8px; border-radius: 2px;
    white-space: nowrap; flex-shrink: 0;
  }
  .damage-card p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.55; }
  .damage-card strong { color: var(--ink); font-weight: 600; }

  /* War story block */
  .war-story { background: var(--ink); padding: 52px 0 56px; }
  .story-label {
    font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--accent); margin: 0 0 20px;
  }
  .story-quote {
    font-size: clamp(18px, 3vw, 22px); font-style: italic; color: #e8e4dc;
    line-height: 1.5; margin: 0 0 24px; padding: 0; max-width: 52ch; border: none;
  }
  .story-byline { font-family: "IBM Plex Mono", monospace; font-size: 13px; color: var(--muted); margin: 0 0 32px; }
  .story-detail {
    border-top: 1px solid #2e3135; padding-top: 24px; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px;
  }
  .story-stat { display: flex; flex-direction: column; gap: 4px; }
  .story-stat .label {
    font-family: "IBM Plex Mono", monospace; font-size: 11px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
  }
  .story-stat .value {
    font-family: "Bebas Neue", Impact, sans-serif; font-size: 22px; color: #e8e4dc; letter-spacing: 0.03em;
  }

  /* Inspection CTA strip */
  .inspection-strip { padding-block: 48px 52px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
  .inspection-strip .eyebrow {
    font-family: "IBM Plex Mono", monospace; font-size: 13px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--accent); margin: 0;
  }
  .inspection-strip h2 { font-size: 36px; margin: 0; max-width: 16ch; line-height: 0.98; }
  .inspection-strip p { font-size: 16px; color: var(--muted); max-width: 48ch; margin: 0; }
  .inspect-btn {
    display: inline-flex; align-items: center; gap: 10px; border: 2px solid var(--accent);
    color: var(--accent); font-family: "IBM Plex Sans", sans-serif; font-weight: 600;
    font-size: 16px; padding: 14px 24px; border-radius: 4px; text-decoration: none;
    transition: background 0.1s ease, color 0.1s ease;
  }
  .inspect-btn:hover { background: var(--accent); color: #fdf9f5; }
  .inspect-note { font-family: "IBM Plex Mono", monospace; font-size: 13px; color: var(--muted); margin: 0; }

  /* FAQ */
  .faq { padding-block: 8px 56px; }
  .faq h2 { font-size: 32px; margin: 0 0 20px; }
  .faq details {
    border-bottom: 1px solid var(--line); padding: 4px 0;
  }
  .faq summary {
    list-style: none; cursor: pointer; padding: 16px 32px 16px 0; position: relative;
    font-weight: 600; font-size: 17px; color: var(--ink);
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq summary::after {
    content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    font-size: 24px; color: var(--accent); font-family: "IBM Plex Mono", monospace; line-height: 1;
  }
  .faq details[open] summary::after { content: "\2212"; }
  .faq details p { margin: 0 0 16px; color: var(--muted); font-size: 15px; max-width: 62ch; }

  /* Bottom CTA */
  .closer { background: var(--ink); color: var(--paper); padding: 44px 0 48px; }
  .closer .wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
  .closer h2 { color: var(--paper); font-size: 32px; margin: 0; max-width: 14ch; }
  .closer .call-btn { box-shadow: 0 6px 0 var(--accent-deep); }

  footer { padding: 22px 0 88px; }
  footer .wrap {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
    gap: 10px; font-size: 13px; color: var(--muted); font-family: "IBM Plex Mono", monospace;
  }
  footer a { text-decoration: none; border-bottom: 1px solid var(--line); }

  /* Sticky mobile call bar */
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
    display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--paper-raised); border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(0,0,0,0.10);
  }
  .callbar a {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: "IBM Plex Sans", sans-serif; font-weight: 600; font-size: 16px;
    padding: 13px 12px; border-radius: 4px; text-decoration: none;
  }
  .callbar .cb-call { background: var(--accent); color: #fdf9f5; }
  .callbar .cb-quote { border: 2px solid var(--accent); color: var(--accent); }
  .callbar svg { width: 16px; height: 16px; }

  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .hero h1 { max-width: 14ch; }
  }
  @media (max-width: 560px) {
    .callbar { display: flex; }
    footer { padding-bottom: 96px; }
  }
  @media (max-width: 480px) {
    .topbar .tel { font-size: 13px; }
    .services .spec-row { flex-direction: column; align-items: flex-start; gap: 4px; }
    .spec-row .note { text-align: left; }
    .damage-card .card-head { flex-direction: column; align-items: flex-start; gap: 6px; }
    .story-detail { grid-template-columns: 1fr 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .trustbar .wrap { flex-direction: column; align-items: flex-start; }
  }

/* ─────────────────────────────────────────────────────────
   MATRIX PAGE ADDITIONS — added 2026-09-19 with CONTENT-SPEC v1.0
   Shared by every service page. Keep index.html in sync on migration.
   ───────────────────────────────────────────────────────── */

/* Sitewide service nav */
.sitenav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-raised);
}
.sitenav ul {
  max-width: 1020px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 22px; list-style: none;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sitenav ul::-webkit-scrollbar { display: none; }
.sitenav a {
  display: block; padding: 13px 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px; letter-spacing: 0.03em;
  color: var(--slate); text-decoration: none; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.sitenav a:hover { color: var(--accent); }
.sitenav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }

/* Breadcrumb */
.crumbs {
  max-width: 1020px; margin: 0 auto; padding: 16px 24px 0;
  font-family: "IBM Plex Mono", monospace; font-size: 12px; color: var(--muted);
}
.crumbs a { text-decoration: none; border-bottom: 1px solid var(--line); }
.crumbs span[aria-current] { color: var(--ink); }

/* The spine — long-form body prose */
.prose { padding-block: 8px 44px; }
.prose h2 {
  font-size: 30px; margin: 40px 0 10px; letter-spacing: 0.02em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 21px; margin: 28px 0 8px; }
.prose p { font-size: 16.5px; margin: 0 0 16px; max-width: 66ch; color: var(--ink); }
.prose p.lede-body { font-size: 18px; color: var(--muted); }
.prose ul, .prose ol { max-width: 64ch; padding-left: 22px; margin: 0 0 18px; }
.prose li { font-size: 16.5px; margin-bottom: 9px; }
.prose strong { font-weight: 600; }
.prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid var(--line); }
.prose a:hover { border-bottom-color: var(--accent); }

/* Sourced-fact block — the non-doorway asset, always attributed */
.sourcebox {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 18px 20px 16px;
  margin: 0 0 20px;
  max-width: 66ch;
}
.sourcebox .src-label {
  font-family: "IBM Plex Mono", monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 10px;
}
.sourcebox blockquote {
  margin: 0 0 12px; padding: 0; border: none;
  font-size: 16px; font-style: italic; color: var(--ink); line-height: 1.5;
}
.sourcebox cite {
  display: block; font-family: "IBM Plex Mono", monospace;
  font-size: 12px; font-style: normal; color: var(--muted); line-height: 1.5;
}
.sourcebox cite a { color: var(--muted); }

/* Contrast callout — where we differ from the copied content farms */
.contrast {
  border: 1px dashed var(--field-line); border-radius: 4px;
  padding: 16px 18px; margin: 0 0 20px; max-width: 66ch;
  background: var(--warn-bg);
}
.contrast p { margin: 0; font-size: 15.5px; }
.contrast p + p { margin-top: 10px; }

/* Numbered process */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 20px; max-width: 66ch; }
.steps li {
  counter-increment: step; position: relative;
  padding: 0 0 18px 44px; border-left: 1px solid var(--line); margin-left: 13px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(step); position: absolute; left: -13px; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--accent); color: #fdf9f5;
  font-family: "IBM Plex Mono", monospace; font-size: 13px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.steps li b { display: block; font-size: 16.5px; margin-bottom: 4px; }
.steps li span { font-size: 16px; color: var(--muted); }

/* Related pages */
.related { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 8px; }
.related h2 { font-size: 22px; margin: 0 0 14px; }
.related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.related a {
  display: block; padding: 13px 16px;
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 16px;
}
.related a:hover { border-color: var(--accent); }
.related a em {
  display: block; font-weight: 400; font-style: normal;
  font-size: 14px; color: var(--muted); margin-top: 3px;
}

/* Form section wrapper on interior pages */
.form-section { padding-block: 8px 48px; }
.form-section .lead-card { max-width: 560px; }

/* Footer nav + legal disclosure */
.footnav { border-top: 1px solid var(--line); padding-top: 28px; margin-bottom: 20px; }
.footnav ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 9px;
}
.footnav a {
  font-family: "IBM Plex Mono", monospace; font-size: 13px;
  color: var(--slate); text-decoration: none;
}
.footnav a:hover { color: var(--accent); }
.disclosure {
  max-width: 72ch; font-size: 13px; line-height: 1.6; color: var(--muted);
  margin: 0 0 16px; padding: 0;
  border: 0; background: none;
}
.disclosure strong { color: var(--slate); font-weight: 600; }
.footlinks { display: flex; gap: 18px; align-items: center; }
.footlinks a { color: var(--muted); text-decoration: none; }
.footlinks a:hover { color: var(--accent); }
footer .wrap.footwrap { display: block; max-width: 1020px; }
.footmeta {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", monospace; font-size: 13px; color: var(--muted);
}

@media (max-width: 560px) {
  .prose h2 { font-size: 26px; }
  .prose p, .prose li { font-size: 16px; }
  .sitenav ul { gap: 18px; }
}

/* Data table — added 2026-09-21 for /service-areas. Additive only. */
.tablewrap {
  margin: 22px 0 26px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper-raised);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.elev {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 460px;
}
table.elev caption {
  caption-side: top;
  text-align: left;
  padding: 13px 16px 11px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
table.elev th,
table.elev td {
  padding: 9px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table.elev thead th {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
}
table.elev tbody td:nth-child(2),
table.elev tbody td:nth-child(3) {
  font-family: "IBM Plex Mono", monospace;
  font-variant-numeric: tabular-nums;
  color: var(--slate);
  white-space: nowrap;
}
table.elev tbody tr:last-child th,
table.elev tbody tr:last-child td { border-bottom: 0; }
table.elev tbody tr:hover td { background: var(--paper); }
.attrib {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  margin: -14px 0 26px;
}
