/* ============================================
   Whole Mind Technologies — Design Tokens
   ============================================ */

:root {
  /* Colors */
  --color-bg: #FAFAF7;
  --color-ink: #1A1A1A;
  --color-ink-light: #4A4A4A;
  --color-ink-muted: #7A7A7A;
  --color-teal: #2A6B6B;
  --color-teal-light: #3A8B8B;
  --color-sage: #5B7B6D;
  --color-terracotta: #A0735C;
  --color-parchment: #F2F0EB;
  --color-border: #E0DDD6;
  --color-border-light: #ECEAE4;

  /* Fonts */
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;

  /* Type Scale (major third — 1.25) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.875rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --width-article: 680px;
  --width-grid: 960px;
  --width-max: 1080px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}
