:root {
  --color-primary: #14532d;
  --color-accent: #fbbf24;
  --color-background: #f9fafb;
  --color-foreground: #1e293b;
  --color-card: #fff;
  --color-muted: #f3f4f6;
  --color-border: #e5e7eb;
  --color-white: #fff;
  --color-black: #000;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 32px rgba(0,0,0,0.12);
  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --z-navbar: 50;
  --z-modal: 100;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1536px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #0b1020;
    --color-card: #1e293b;
    --color-foreground: #f9fafb;
    --color-muted: #1e293b;
    --color-border: #334155;
  }
}
