:root {
  /* Primary — deep roast brown */
  --color-primary: #4A2C2A;
  --color-primary-light: #6B4226;
  --color-primary-dark: #2E1A18;

  /* Accent — warm copper/terracotta */
  --color-accent: #C17B4A;
  --color-accent-light: #D4956A;
  --color-accent-dark: #9A5E33;

  /* Neutrals */
  --color-cream: #F5F0E8;
  --color-warm-white: #FAF8F4;
  --color-warm-gray: #B8AFA6;
  --color-dark-gray: #3D3835;

  /* Semantic */
  --color-text: #2E1A18;
  --color-text-light: #6B5E58;
  --color-background: #FAF8F4;
  --color-surface: #F5F0E8;
  --color-border: #D9D0C7;

  /* Swiss red — sparingly for CTAs */
  --color-swiss-red: #D42B2B;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale (1.25 ratio) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.35rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 3.75rem;

  /* Spacing (8px base) */
  --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;
  --space-32: 8rem;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(46, 26, 24, 0.05);
  --shadow-md: 0 4px 16px rgba(46, 26, 24, 0.08);
  --shadow-lg: 0 12px 40px rgba(46, 26, 24, 0.12);
  --shadow-xl: 0 20px 60px rgba(46, 26, 24, 0.16);
  --shadow-glow: 0 0 40px rgba(193, 123, 74, 0.2);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
