/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS — Colors, Typography, Spacing, Layout
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --bg-primary: #f4f1ee;
  --bg-secondary: #f1ebe5;
  --bg-card: #f9f8f8;
  --bg-dark: #1a1615;
  --bg-warm: #f4e6da;
  --bg-light: #fff;
  --bg-highlight: #eddfd0;

  /* Text */
  --text-primary: #1a1615;
  --text-secondary: #453f3d;
  --text-muted: #757170;
  --text-light: #e4e2e2;

  /* Accents */
  --accent-blue: #84b9ef;
  --accent-blue-dark: #156cc2;
  --accent-green: #0ea158;
  --accent-orange: #cf8d13;
  --accent-red: #c9502e;
  --accent-brown: #754d29;
  --accent-muted: #614a44;

  /* Borders */
  --border: #e4e2e2;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Fragment Mono', monospace;

  /* Layout */
  --max-width: 1200px;
}
