/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling only when the user has not requested reduced motion.
   Instant-jump scrolling is preferable for users with vestibular disorders. */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

button, input {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
}