:root {
  /* Colors */
  --color-bg: #f7f5f0;
  --color-text: #1a1a1a;
  --color-accent: #b03a2e;
  --color-muted: #6b6b6b;
  --color-border: #e0dcd2;
  --color-bg-dark: #121212;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Libre Baskerville', serif;

  /* Scale */
  --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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Line Height */
  --leading-none: 1;
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-width: 1200px;
  --content-width: 680px;
}

@media (prefers-color-scheme: dark) {
  /* We will implement dark mode optionally per page or generally, but default variables for now */
  /* Keeping it mostly light by default for consistency unless overridden by user */
}
