/* ============================================================
   BASE — light element defaults + a few brand utility classes.
   Kept minimal so it never fights component styles.
   ============================================================ */

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

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

/* --- Typographic roles --- */
.ds-display {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
  text-wrap: balance;
}
.ds-heading {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  color: var(--text-strong);
}
.ds-lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-normal);
  color: var(--text-body);
  text-wrap: pretty;
}
.ds-body { font-size: var(--fs-body); line-height: var(--lh-normal); text-wrap: pretty; }

/* The sage emphasis word inside a headline, e.g. "I Can <em>Help You</em>" */
.ds-accent { color: var(--accent); font-style: normal; }

/* Small uppercase letterspaced eyebrow / label */
.ds-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Bold inline payoff line */
.ds-payoff { font-weight: var(--fw-bold); color: var(--text-strong); }

/* Centered content container */
.ds-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Dark section helper */
.ds-on-dark { color: var(--text-on-dark); }
.ds-on-dark .ds-display,
.ds-on-dark .ds-heading { color: var(--cream-50); }
.ds-on-dark .ds-eyebrow { color: var(--text-on-dark-muted); }
