/* We Hunt We Gather — design tokens ("The Lodge", daylight)
   Source of truth: docs/design-system.md + the Vol.1 cover. Keep in sync.
   2026-07: flipped from the candlelit dark room to a daylight page — the site
   now reads like the book it will become: sepia ink on warm paper. */

:root {
  /* raw palette — sampled from the cover; used for art frames and accents */
  --ink: #241708;
  --umber: #3d2a14;
  --leather: #5c3d1e;
  --saddle: #7d5526;
  --amber: #b57f36;
  --honey: #d9a95c;
  --parchment: #ecdcb8;
  --cream: #f6ecd4;
  --rust: #9c4a21;
  --wine: #722f26;

  /* semantic slots — what the site actually paints with */
  --bg: #f1e4c4;            /* the page: warm paper */
  --surface: #f8efda;       /* cards & panels: lighter card stock */
  --text: #2e1d0b;          /* body ink */
  --text-strong: #241708;   /* headings, numbers */
  --text-soft: #6a5335;     /* secondary/meta */
  --gold: #8a6a2f;          /* small-caps labels, quiet accents (dark honey) */
  --link: #9c4a21;          /* links & primary actions (rust) */
  --hot: #722f26;           /* hover/danger (wine) */
  --line: #b6935d;          /* rules & borders (light saddle) */
  --shadow: 61 42 20;       /* rgb triplet for soft paper shadows */

  /* type */
  --font-display: "Cinzel", "Trajan Pro", serif;
  --font-body: "EB Garamond", Garamond, Georgia, serif;
  --text-base: 1.2rem;        /* ~19px */
  --leading-body: 1.6;
  --track-display: 0.05em;
  --track-label: 0.07em;

  /* readable secondary tone (kept name for pantry.js-era styles) */
  --muted: var(--text-soft);

  /* shape & rhythm */
  --radius: 3px;              /* barely rounded — nothing glossy */
  --rule: 1px solid var(--line);
  --measure: 68ch;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;

  /* motion — essentially none */
  --fade: 150ms ease;
}
