/* SwampLynx design tokens -- the ONE palette every SwampLynx surface uses:
   the landing page, services, docs, legal, the admin app (admin/render.py
   inlines this file at import time) and the KB builder (site/build_kb.py).
   Rule (George, 2026-08): a neutral paper/charcoal base and a single
   forest-green accent. No orange, no lime, no mint/teal. Semantic colours
   (warn/bad) exist for state only and never act as the accent.

   Three theme states: bare :root is the full light palette; the media
   block redefines tokens for a dark OS unless the page is stamped light;
   [data-theme="dark"] wins in the other direction. Never give a colour its
   only definition inside the media or data-theme blocks. */
:root {
  --bg: #faf9f7;
  --bg-raise: #ffffff;
  --bg-sink: #f1efeb;
  --ink: #191b19;
  --ink-soft: #4a4d4a;
  --ink-faint: #71746f;
  --line: #e2e0db;
  --accent: #1e7a3f;
  --accent-ink: #ffffff;
  --accent-soft: #e4f2e8;
  --pine: #256b41;
  --pine-deep: #1f5c38;
  --pine-soft: #e4f2e8;
  --good: #1e7a3f;
  --good-soft: #e4f2e8;
  --warn: #8a6410;
  --warn-soft: #f5edd6;
  --bad: #a13a2a;
  --bad-soft: #f6e5e1;
  --shadow: 0 1px 2px rgba(20, 22, 20, .06), 0 8px 28px rgba(20, 22, 20, .08);
  --font-display: "Bricolage Grotesque", "Albert Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "Albert Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Spline Sans Mono", ui-monospace, Consolas, monospace;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #131513; --bg-raise: #1b1e1b; --bg-sink: #0d0f0d;
    --ink: #ebedeb; --ink-soft: #b6b9b5; --ink-faint: #878a86;
    --line: #2b2e2b; --accent: #67c076; --accent-ink: #0c130c;
    --accent-soft: #1e3423; --pine: #79c98d; --pine-deep: #1a4a2e;
    --pine-soft: #1e3423; --good: #67c076; --good-soft: #1e3423;
    --warn: #d9b25a; --warn-soft: #3a3014;
    --bad: #e08574; --bad-soft: #3a211c;
    --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 10px 32px rgba(0, 0, 0, .35);
  }
}
:root[data-theme="dark"] {
  --bg: #131513; --bg-raise: #1b1e1b; --bg-sink: #0d0f0d;
  --ink: #ebedeb; --ink-soft: #b6b9b5; --ink-faint: #878a86;
  --line: #2b2e2b; --accent: #67c076; --accent-ink: #0c130c;
  --accent-soft: #1e3423; --pine: #79c98d; --pine-deep: #1a4a2e;
  --pine-soft: #1e3423; --good: #67c076; --good-soft: #1e3423;
  --warn: #d9b25a; --warn-soft: #3a3014;
  --bad: #e08574; --bad-soft: #3a211c;
  --shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 10px 32px rgba(0, 0, 0, .35);
}
