/* ============================================================
   OPALUS — base element defaults (kept minimal)
   ============================================================ */

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  margin: 0;
  line-height: var(--lh-snug);
  font-weight: var(--fw-semibold);
}

p { margin: 0; }

a { color: var(--text-accent); text-decoration: none; }

/* shared utility: warm eyebrow / overline */
.opalus-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}

::selection { background: var(--bronze-300); color: var(--ink); }
