/* Minimal, non-invasive base layer — sets body defaults consumers expect */
html {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-1);
  line-height: var(--lh-heading);
  margin: 0;
  font-weight: var(--fw-regular);
}
a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--text-link-hover); }
