/* ============================================================
   BASE — element defaults wired to Slybulwark tokens.
   Kept light: sets body type, headings (Roboto Slab bold),
   links (green), and the signature green heading underline.
   ============================================================ */
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);
  font-weight: var(--fw-bold);
  color: var(--text-strong);
  line-height: var(--lh-heading);
  margin: 0 0 var(--space-4);
}

h1 { font-size: var(--fs-h1); letter-spacing: var(--ls-display); }
h2 { font-size: var(--fs-h2); letter-spacing: var(--ls-display); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }

p { margin: 0 0 var(--space-4); }

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-standard);
}
a:hover { color: var(--sly-green-900); }

/* Signature green accent rule under section headings (source .hrg) */
.sly-accent-rule {
  border: 0;
  border-top: var(--border-accent-width) solid var(--sly-green);
  width: var(--accent-underline-w);
  margin: var(--space-4) 0 var(--space-6);
}

/* Uppercase eyebrow label */
.sly-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}

*, *::before, *::after { box-sizing: border-box; }
