/* ============================================================
   Forward Business — base element styles & a few text helpers.
   Light-touch resets so specimen cards and kits render on-brand
   without re-declaring fundamentals everywhere.
   ============================================================ */

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

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font: var(--text-body-role);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 1em; }
a { color: var(--brand); text-decoration: none; }

/* ---- Brand text helpers ---- */
.fb-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--brand);
}
.fb-script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--brand);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.fb-mono {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.fb-display {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  color: var(--text-heading);
  line-height: var(--lh-tight);
}
