/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Reduced Motion Preferences */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
