:root {
  /* Brand Colors */
  --color-primary: hsl(28, 90%, 55%); /* Warm Orange - Trust & Optimism */
  --color-primary-dark: hsl(28, 90%, 45%);
  --color-primary-light: hsl(28, 90%, 95%);
  
  --color-secondary: hsl(45, 95%, 55%); /* Golden Yellow - Wealth */
  --color-secondary-dark: hsl(45, 95%, 45%);
  
  --color-accent: hsl(210, 20%, 98%); /* Off-white */
  --color-text: hsl(215, 30%, 20%); /* Deep Charcoal */
  --color-text-light: hsl(215, 20%, 40%);
  --color-text-muted: hsl(216,55%, 80%);
  --color-white: #ffffff;
  
  --color-success: hsl(150, 60%, 45%);
  --color-warning: hsl(40, 90%, 60%);
  --color-error: hsl(0, 70%, 55%);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --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;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 8rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}
