:root {
  /* Primary palette — status & nature */
  --color-forest: #1a3c34;
  --color-forest-light: #2d5a4a;
  --color-chocolate: #2c1810;
  --color-chocolate-light: #3d2317;

  /* Accent — appetite & impulse (Restorff isolation) */
  --color-gold: #c9a227;
  --color-gold-light: #d4b84a;
  --color-amber: #e87c3a;
  --color-amber-hover: #f09450;

  /* Neutrals */
  --color-cream: #f5f0e8;
  --color-cream-dark: #e8e0d4;
  --color-sage: #4a7c6f;
  --color-muted: #8a8278;
  --color-white: #ffffff;

  /* Semantic */
  --color-success: #3d8b6e;
  --color-scarcity: #c45c3e;
  --color-decoy-highlight: rgba(201, 162, 39, 0.12);

  /* Typography */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.82rem + 0.3vw, 0.9375rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --text-hero: clamp(2.5rem, 1.8rem + 3vw, 4.25rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;
  --header-offset: 72px;
  --nav-breakpoint: 992px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 16px 48px rgba(44, 24, 16, 0.18);
  --shadow-glow: 0 0 0 3px rgba(232, 124, 58, 0.35);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;

  /* Z-index */
  --z-header: 100;
  --z-cart: 200;
  --z-overlay: 150;
}
