/* ───────────────────────────────────────────────────
   Modern CSS Reset (minimal, modern browsers)
   Designed to provide a consistent baseline
──────────────────────────────────────────────────── */

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

/* remove default spacing */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

/* list reset for custom lists */
ul[role="list"], ol[role="list"] {
  list-style: none;
}

/* body & typography basics */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* images & media behave */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* form & text inputs inherit font */
input, button, textarea, select {
  font: inherit;
}

/* sensible defaults for focusing and smooth scrolling */
html:focus-within {
  scroll-behavior: smooth;
}

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