/* ===== MINIMAL RESET ===== */

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

body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
picture { display: block; width: 100%; height: 100%; }
a { color: inherit; text-decoration: none; }
a, button, input, select, textarea { touch-action: manipulation; }
ul { list-style: none; }
