/**
 * Site-wide smooth scrolling (anchor links + programmatic scroll).
 * Disabled when the user prefers reduced motion.
 */

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
