/* Gnáthos — base element styles */
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--surface-page);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  font-weight: var(--weight-light);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  color: var(--text-title);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-3);
}
strong { font-weight: var(--weight-semibold); color: var(--text-title); }
a { color: var(--link); text-decoration: none; font-weight: var(--weight-medium); }
a:hover { color: var(--link-hover); text-decoration: underline; }
::selection { background: var(--yellow-100); }
