:root {
  /* Brand Colors - Earthy Green & Rust theme */
  --primary-color: #3F4A3F; /* Deep Forest/Olive Green */
  --primary-light: #4A5D4E;
  --accent-color: #9C4A38; /* Rust/Terracotta */
  --accent-hover: #B85C40;
  
  /* Neutral Tones */
  --bg-main: #F7F5F0; /* Warm cream background */
  --bg-card: #FFFFFF;
  --bg-alt: #EBE7DF; /* Slightly darker cream for alt sections */
  
  /* Text Colors */
  --text-main: #2C2A28; /* Dark brown/charcoal */
  --text-muted: #5C5A56;
  --text-light: #F7F5F0;
  
  /* Layout & Spacing */
  --max-width: 1200px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  
  /* Borders & Shadows */
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}
