/* Design System Variables */
:root {
  /* Colors - Primary */
  --primary-navy: #003D5B;
  --primary-blue: #0066A1;
  --primary-light: #4A90B8;

  /* Colors - Neutral */
  --neutral-900: #1A1A1A;
  --neutral-700: #4A4A4A;
  --neutral-500: #7A7A7A;
  --neutral-300: #C4C4C4;
  --neutral-100: #F5F5F5;
  --neutral-50: #FAFAFA;
  --white: #FFFFFF;

  /* Colors - Accent */
  --accent-cream: #F4EFE6;
  --accent-gold: #D4AF37;
  --accent-success: #10B981;
  --accent-warning: #F59E0B;
  --accent-error: #EF4444;

  /* Typography - Font Families */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Typography - Font Sizes */
  --text-h1: 3.5rem;      /* 56px */
  --text-h2: 2.5rem;      /* 40px */
  --text-h3: 1.75rem;     /* 28px */
  --text-h4: 1.25rem;     /* 20px */
  --text-body-lg: 1.125rem; /* 18px */
  --text-body: 1rem;      /* 16px */
  --text-small: 0.875rem; /* 14px */
  --text-xs: 0.75rem;     /* 12px */

  /* Typography - Line Heights */
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Typography - Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.5rem;    /* 24px */
  --space-6: 2rem;      /* 32px */
  --space-8: 3rem;      /* 48px */
  --space-10: 4rem;     /* 64px */
  --space-12: 6rem;     /* 96px */
  --space-16: 8rem;     /* 128px */

  /* Layout */
  --container-max: 1200px;
  --content-max: 720px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 61, 91, 0.15);
  --shadow-xl: 0 16px 48px rgba(0, 61, 91, 0.2);

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

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;
}

/* Responsive Typography */
@media (max-width: 768px) {
  :root {
    --text-h1: 2.5rem;      /* 40px */
    --text-h2: 2rem;        /* 32px */
    --text-h3: 1.5rem;      /* 24px */
    --text-h4: 1.125rem;    /* 18px */
    --text-body-lg: 1rem;   /* 16px */
  }
}

@media (max-width: 480px) {
  :root {
    --text-h1: 2rem;        /* 32px */
    --text-h2: 1.75rem;     /* 28px */
  }
}
