/* ─── DESIGN TOKENS ──────────────────────────────── */
:root {
  /* Colors */
  --ink:      #0d1117;
  --pine:     #0e3a2f;
  --forest:   #144d3c;
  --sage:     #2a7a5e;
  --gold:     #c9a84c;
  --gold-lt:  #e8c96e;
  --cream:    #faf7f2;
  --warm-lt:  #f3ede3;
  --muted:    #6b7280;
  --border:   #e4ddd3;
  --white:    #ffffff;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Outfit', system-ui, sans-serif;

  /* Border Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 8px 24px rgba(0,0,0,.1);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.15);

  /* Transitions */
  --transition-fast: .15s ease;
  --transition-base: .25s ease;
  --transition-slow: .4s ease;
}
