:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Outfit", ui-sans-serif, system-ui, sans-serif;

  --color-brand-primary: #2d3436;
  --color-brand-secondary: #636e72;
  --color-brand-accent: #76d3ff;
  --color-brand-accent-hover: #73c45b;
  --color-brand-cta: #ef613b;
  --color-brand-cta-hover: #73c45b;
  --color-brand-light: #f8f9fa;
  --color-brand-dark: #e9ecef;
  --color-brand-warm: #db9732;
  --color-brand-alert: #de4f4b;
}

body {
  font-family: var(--font-sans);
  color: var(--color-brand-primary);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
}

/* Elementor export wrapper baseline */
.tf-elementor-export {
  font-family: var(--font-sans);
  color: var(--color-brand-primary);
  background: #fff;
}

.tf-elementor-export h1,
.tf-elementor-export h2,
.tf-elementor-export h3,
.tf-elementor-export h4,
.tf-elementor-export h5,
.tf-elementor-export h6 {
  font-family: var(--font-serif);
}

.tf-elementor-export svg {
  display: block;
}

/* Accessibility: reduce animation when requested */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
