:root {
  /* Brand colors */
  --color-primary: #e87b35;
  --color-primary-light: #f5a623;
  --color-primary-dark: #d4651e;
  --color-accent: #e85d75;
  --color-accent-light: #fce4ec;

  /* Functional colors */
  --color-blue: #4a90d9;
  --color-green: #43a047;
  --color-destructive: #ef4444;

  /* Neutrals */
  --color-foreground: #2d2319;
  --color-foreground-muted: #7a6e63;
  --color-background: #fef6ee;
  --color-background-card: #ffffff;
  --color-border: #f0e4d8;

  /* Gradients */
  --gradient-warm: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  --gradient-hero: linear-gradient(135deg, #fef6ee 0%, #fde8d0 50%, #fef6ee 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-warm: 0 4px 20px rgba(232, 123, 53, 0.25);
  --shadow-glow: 0 8px 30px rgba(232, 123, 53, 0.4);

  /* Typography */
  --font-sans: "Nunito", system-ui, -apple-system, sans-serif;
  --font-display: "Quicksand", var(--font-sans);

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Radii */
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* Container */
  --container-max: 72rem;
  --container-padding: var(--space-4);
}

@media (min-width: 768px) {
  :root {
    --container-padding: var(--space-6);
  }
}
