/* ============================================================
   QuickFix Home Services — CSS Custom Properties
   ============================================================ */
:root {
  /* Colors */
  --color-primary: #005F73;
  --color-primary-dark: #00414F;
  --color-primary-light: #0A9396;
  --color-primary-bg: #E8F4F6;
  --color-bg: #FFFFFF;
  --color-secondary: #F7F7F7;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F0F4F5;
  --color-border: #E0E7EA;
  --color-accent: #E9C46A;
  --color-accent-dark: #C9A227;
  --color-accent-bg: #FEF9EC;
  --color-emergency: #D62828;
  --color-emergency-dark: #A61E1E;
  --color-emergency-bg: #FDECEC;
  --color-emergency-glow: rgba(214,40,40,0.3);
  --color-success: #2DC653;
  --color-text-primary: #1A1A1A;
  --color-text-body: #444444;
  --color-text-muted: #717171;
  --color-text-on-teal: #FFFFFF;
  --color-text-on-amber: #1A1A1A;
  --color-phone: #005F73;
  --color-phone-mobile: #D62828;

  /* Typography */
  --font-heading: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --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: 2.75rem;
  --text-phone: 2rem;
  --text-phone-lg: 2.75rem;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;

  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.55;
  --lh-loose: 1.7;

  --ls-tight: -0.01em;
  --ls-wide: 0.05em;
  --ls-wider: 0.10em;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  --section-py-mobile: 48px;
  --section-py-desktop: 80px;
  --container-max: 1100px;
  --container-px: 16px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.10);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.14);

  /* Transitions */
  --transition-fast: 120ms ease;
  --transition-base: 200ms ease;
  --transition-medium: 280ms ease;
  --transition-slow: 380ms ease;
}
