:root {
  /* Brand Colors */
  --color-crimson: #E30613;
  --color-crimson-dark: #C40212;
  --color-deep-charcoal: #1C1D1F;
  --color-slate-gray: #4A4A49;
  --color-soft-gray: #F8F9FA;
  --color-white: #FFFFFF;
  --color-border-gray: #E5E7EB;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --size-display: 64px;
  --size-h1: 48px;
  --size-h2: 40px;
  --size-h3: 28px;
  --size-h4: 22px;
  --size-h5: 18px;
  --size-body: 16px;
  --size-body-lg: 18px;
  --size-small: 14px;
  --size-caption: 12px;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  --line-height-heading: 1.15;
  --line-height-body: 1.65;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;
  --space-section: 96px;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 16px;

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

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-navbar: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-button: 0 4px 12px rgba(227, 6, 19, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
