:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f5f4f1;
  --color-surface: #ffffff;
  --color-text: #1b1b1b;
  --color-text-muted: #5f5f5f;
  --color-border: #e2e0dc;
  --color-accent: #b07d5a; 
  --color-accent-dark: #000000; 
  --color-accent-contrast: #ffffff;

  --font-body: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-script: "Parisienne", "Snell Roundhand", cursive;

  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 4.5rem;
  --text-6xl: 6.5rem;

  --leading-tight: 1.2;
  --leading-normal: 1.6;

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

  --container-max: 1140px;
  --container-narrow: 680px;
  --gutter: var(--space-4);
  --header-height: 64px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: 200ms ease;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #ffffff;
    --color-bg-alt: #e5e2dea6; 
    --color-surface: #e5e2dea6;
    --color-text: #663c12;
    --color-text-muted: #a8a49e;
    --color-border: #333030;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.6);
  }
}