:root {
  /* Palette */
  --color-primary: #111827;
  --color-accent: #b45309;
  --color-accent-hover: #92400e;
  --color-bg: #fdfcf7;
  --color-surface: #ffffff;
  --color-text: #1c1b18;
  --color-text-muted: #55524c;
  --color-border: #e7e3da;
  --color-accent-light: #fef3c7;
  --color-card-bg: #faf9f4;
  --color-on-accent: #ffffff;
  --color-accent-bright: #b45309;
  --color-on-accent-light: #1c1b18;
  --color-on-accent-light-muted: #55524c;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;
  --space-5: 6rem;
  --space-6: 8rem;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --max-width: 1080px;

  /* Type 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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #191917;
    --color-surface: #21211f;
    --color-text: #f2f1ec;
    --color-text-muted: #b8b5ac;
    --color-border: #3a3935;
    --color-card-bg: #2a2a27;
    --color-accent-light: #3d2e0a;
    /* Override for dark-mode legibility */
    --color-primary: #e2e1dc;
    --color-on-accent: #ffffff;
    --color-accent-bright: #e8a84c;
    --color-on-accent-light: #f7f1e3;
    --color-on-accent-light-muted: #e8d9b5;
  }
}
