html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body { min-height: 100vh; }
a { color: var(--accent); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: .14em; }
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
h2 { margin-top: var(--space-7); font-size: clamp(1.7rem, 3vw, 2.55rem); }
h3 { margin-top: var(--space-5); font-size: clamp(1.25rem, 2vw, 1.55rem); }
p + p, p + ul, ul + p { margin-top: var(--space-3); }
ul { padding-left: 1.25rem; }
small, .muted { color: var(--muted); }
