/* css/reset.css — universal box-sizing reset, html root, global focus ring. Imported into the reset layer by style.css. */

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* focus ring — visible for keyboard users */
:focus-visible {
  outline: 2px solid var(--accent-amber);
  outline-offset: 2px;
}
