/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --font: 'Geist', system-ui, sans-serif;
  --mono: 'Geist Mono', monospace;
  --forest: #1a3d2b;
  --forest-mid: #2d6a47;
  --forest-light: #e8f2eb;
  --forest-text: #1a3d2b;
  --gold: #d47c0f;
  --gold-light: #fef3dc;
  --gold-text: #7c4700;
  --terra: #b85c38;
  --terra-light: #fdf0ea;
  --text: #1c1410;
  --text2: #5c4f44;
  --text3: #a8998c;
  --bg: #fdf8f2;
  --surface: #ffffff;
  --surface2: #f7f2ec;
  --border: #e8dfd4;
  --border2: #d6cbbf;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(26,20,16,0.08), 0 1px 2px rgba(26,20,16,0.04);
  --shadow-md: 0 4px 16px rgba(26,20,16,0.1), 0 2px 4px rgba(26,20,16,0.06);
  --width: 960px;
  /* legacy aliases for compat */
  --green: var(--forest);
  --green-mid: var(--forest-mid);
  --green-light: var(--forest-light);
  --green-text: var(--forest-text);
  --amber: var(--gold);
  --amber-light: var(--gold-light);
}

body.dark {
  --text: #f5f0ea; --text2: #a8998c; --text3: #5c4f44;
  --bg: #120e0a; --surface: #1e1812; --surface2: #261f17;
  --border: #332820; --border2: #40322a;
  --forest-light: #0f2318; --forest-text: #6dbb8a;
  --gold-light: #1c1106; --gold-text: #f0a840;
  --terra-light: #1e100a;
  --shadow: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
}
