/* Hugelmann — base element defaults built on the tokens. */
:root { color-scheme: light; }
body {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: var(--text-body-size);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--text-heading);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: var(--text-link); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--text-link-hover); text-decoration: underline; }
:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-sm); }
.hg-eyebrow { font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: var(--ls-eyebrow); font-size: var(--fs-sm); color: var(--color-primary); }
