/*
 * base.css — Minimal Reset + Base Styles
 * ─────────────────────────────────────────────────────────────────
 * Intentionally thin. A UI kit will supply its own reset/base —
 * just disable this file when you add one.
 * ─────────────────────────────────────────────────────────────────
 */

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

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

body {
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  color: var(--clr-ink);
  background-color: var(--clr-canvas);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  line-height: var(--leading-tight);
  color: var(--clr-ink);
}

h1 {
  font-family: var(--font-display);
  font-weight: var(--weight-light);
}

h2, h3, h4, h5, h6 {
  font-family: var(--font-ui);
  font-weight: var(--weight-semi);
}

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

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

ul,
ol {
  list-style: none;
}

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

