/* ============================================================
   WellServe — reset.css
   Minimal, modern reset. Opinionated defaults live in typography.css
   and components.css, not here.
   ============================================================ */

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body{
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,h2,h3,h4,h5,h6,p,figure,blockquote,dl,dd{ margin: 0; }

ul[class], ol[class]{ list-style: none; margin: 0; padding: 0; }

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

button, input, textarea, select{
  font: inherit;
  color: inherit;
}

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

button{
  background: none;
  border: none;
  cursor: pointer;
}

table{ border-collapse: collapse; border-spacing: 0; }

/* Respect motion preferences site-wide */
@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;
  }
}
