/* Elegance IV — minimal resets/base, kept out of styles.css itself
   so styles.css stays a pure import list. */

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-body-m);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  line-height: var(--lh-tight);
  margin: 0;
}

p { margin: 0; }

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover { color: var(--link-hover); }

::selection {
  background: var(--c-greige-300);
  color: var(--c-graphite);
}
