/**
 * reset.css — Minimal, modern CSS reset
 */
*, *::before, *::after { box-sizing: border-box; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul[role='list'], ol[role='list'] { list-style: none; }

body {
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
  line-height: var(--line-height-base);
}

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

img { object-fit: cover; }

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

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

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

table { border-collapse: collapse; width: 100%; }

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