/* Performance + FOUC prevention */

html {
  scroll-behavior: smooth;
}

/* Hero tagline (was h6 — fixes heading order) */
.kth-hero-tagline {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: inherit;
}

/* Fonts: system fallback until webfonts load */
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* Ensure section backgrounds render on first paint */
.e-con.e-parent {
  background-image: inherit;
}

/* Reduce motion for users who prefer it */
@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;
  }
}
