/* ============================================================
   GROUNDWORK CX — BASE / RESET
   Sensible element defaults wired to the token system.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--text-strong); margin: 0; }

a { color: var(--text-link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--navy); }

::selection { background: var(--gold-200); color: var(--navy); }

:focus-visible { outline: none; box-shadow: var(--shadow-focus); border-radius: var(--radius-xs); }

img { max-width: 100%; display: block; }
hr { border: 0; border-top: var(--border-w) solid var(--divider); margin: var(--space-lg) 0; }

/* Utility: tracked uppercase eyebrow inline */
small { font-size: var(--fs-small); }
code, kbd, samp { font-family: var(--font-mono); font-size: 0.92em; }
