:root {
  /* Colors — warm, earthy palette inspired by the cubist profile pic */
  --color-bg: #faf8f4;
  --color-bg-subtle: #f0ece4;
  --color-text: #2c2c2c;
  --color-text-muted: #6b6560;
  --color-accent: #e8943a;
  --color-accent-hover: #d47e28;
  --color-accent-soft: #f5d5a8;
  --color-teal: #5b9ea6;
  --color-teal-soft: #c3dfe2;
  --color-navy: #3a4f6a;
  --color-navy-soft: #c8d3e0;
  --color-warm-yellow: #f2c94c;
  --color-card-bg: #ffffff;
  --color-card-border: #e8e4dc;
  --color-card-shadow: rgba(44, 44, 44, 0.06);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;

  /* 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;

  /* Layout */
  --max-width: 720px;
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 20px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px var(--color-card-shadow);
  --shadow-md: 0 4px 12px var(--color-card-shadow);
  --shadow-lg: 0 8px 30px rgba(44, 44, 44, 0.1);
  --shadow-glow: 0 0 20px rgba(232, 148, 58, 0.15);
}
