:root {
  /* Brand Colors */
  --color-primary: #383710;
  --color-primary-dark: #2b2d10;
  --color-accent: #c99d66;
  --color-accent-light: #d4b07e;
  --color-cream: #fef8ee;
  --color-cta-outer: #f2ede3;
  --color-white: #ffffff;
  --color-black: #0a0a0a;
  --color-gray-light: #f5f5f0;
  --color-gray: #888880;
  --color-text: #1a1a0f;
  --color-text-muted: #6b6b5a;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  --fw-regular: 300;
  --fw-medium: 400;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* 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;

  /* Layout */
  --container-max: 1200px;
  --container-padding: 1.25rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-accent: 0 4px 20px rgba(201, 157, 102, 0.3);

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

  /* Header */
  --header-height: 72px;
  --header-height-mobile: 64px;
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 2.5rem;
    --header-height: 80px;
  }
}
