/* variables.css */
:root {
  /* Exact Color Palette from Design */
  --color-primary: #235832;       /* Deep Forest Green */
  --color-primary-hover: #1b4526;
  --color-nav-active: #DCEBD9;    /* Soft Green Pill */
  --color-bg-warm: #F8F6F0;       /* Warm Soft Beige */
  --color-strip-bg: #EBE8DD;      /* Bottom Feature Strip */
  --color-white: #FFFFFF;
  --color-text: #2B332C;
  --color-text-muted: #4F5850;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-base-size: 1rem;

  /* Spacing */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
}
