/* Migraine Voice — reset and base typography. */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--primary);
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  font-weight: 600;
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
p { margin: 0 0 var(--space-3); }
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { vertical-align: middle; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.icon { display: inline-block; flex: none; }
.muted { color: var(--muted); }
.serif-lead {
  font-family: var(--font-head);
  font-size: var(--text-xl);
  color: var(--secondary);
  font-style: italic;
}
