:root {
  /* Brand colors */
  --color-brand: #c2081d;
  --color-brand-hover: #a00618;
  --color-brand-light: #fef2f2;

  /* Neutral colors */
  --color-text: #444444;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-heading: #1a1a1a;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-light: #f8f8f8;
  --color-bg-dark: #1a1a1a;
  --color-border: #e5e5e5;
  --color-border-light: #f0f0f0;

  /* Font families */
  --font-heading: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body: 'Manrope', 'Lato', system-ui, sans-serif;
  --font-mono: 'Fragment Mono', 'Courier New', monospace;
  --font-display: 'Gill Sans', 'Gill Sans Regular', system-ui, sans-serif;
  --font-display-light: 'Gill Sans Light', 'Gill Sans', system-ui, sans-serif;

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

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

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1440px;
  --header-height: 96px;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

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