/* =============================================================
   RESET — minimal modern reset
   ============================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

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

body {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul,
ol { list-style: none; }

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
