/* reset.css — modern minimal reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;      /* clip off-canvas menu so it can't create horizontal scroll */
  overflow-x: clip;        /* modern browsers: clips fixed descendants, keeps sticky header working */
  max-width: 100%;
}
body {
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
  line-height: var(--line-height);
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}
ul[class], ol[class] { list-style: none; }
a { text-decoration: none; color: inherit; }
img, picture, svg, video { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
