/* ============================================================
   public-tokens.css — shared design tokens for the PUBLIC pages
   (index, now, projects, speaking, writing).

   These five pages share one palette. Tokens live here so a color
   or font change happens in one place. Pages still carry their own
   inline <style> for page-specific rules, and may override a token
   in their inline :root (e.g. index uses --transition: 240ms).

   NOT used by workspace/bespoke-themed pages — those keep their own
   palettes (see project memory: project-css-consolidation-plan).
   ============================================================ */

:root {
  --ivory:          #faf7f2;
  --ivory-dark:     #f0ebe2;
  --ivory-mid:      #e8e1d6;
  --slate:          #2e3440;
  --slate-mid:      #4a5568;
  --slate-light:    #718096;
  --burgundy:       #280108;
  --burgundy-mid:   #3d0110;
  --burgundy-hover: #6A2424;
  --sage:           #586142;
  --sage-light:     #8a9478;
  --sage-muted:     #d4d9cc;
  --lavender:       #D6D6EA;
  --lavender-pale:  #eeeef6;
  --rose:           #c4907a;
  --rose-light:     #e8c5b5;
  --rose-pale:      #f5ede8;
  --gold:           #c9a84c;
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-sc:        'Cormorant SC', Georgia, serif;
  --font-body:      'DM Sans', -apple-system, sans-serif;
  --transition:     200ms ease;
}
