:root {
  /* Brand Colors */
  --color-cream: #F8EDD9;
  --color-orange: #FC571C;
  --color-orange-dark: #E04A15;
  --color-orange-light: #FD7A4A;
  --color-gold: #FFB200;
  --color-gold-dark: #E09E00;
  --color-gold-light: #FFC640;
  --color-green: #989D34;
  --color-green-dark: #7A7E2A;
  --color-green-light: #B0B54A;

  /* Neutrals */
  --color-text: #1A1A1A;
  --color-text-light: #1A1A1A;
  --color-white: #FFFFFF;
  --color-black: #1A1A1A;

  /* Overlays */
  --overlay-dark: rgba(28, 28, 28, 0.6);
  --overlay-orange: rgba(252, 87, 28, 0.9);
  --overlay-cream: rgba(248, 237, 217, 0.92);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Typography */
  --font-display: 'Bolota Bold', 'Arial Black', sans-serif;
  --font-accent: 'Donut Hole', 'Comic Sans MS', cursive;
  --font-body: 'Poppins', 'Helvetica Neue', Arial, 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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-orange: 0 4px 16px rgba(252, 87, 28, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;
}
