/* ============================================================
   reset — consolidated normalize (house style §3.2 layer 4)
   Net effect identical to the prior inline reset + article-body base.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; color-scheme: light; background: var(--color-base-white); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}
img, svg { display: block; max-width: 100%; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; border-radius: 0; }
table { border-collapse: collapse; width: 100%; border-radius: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
