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

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

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

h1, h2, h3, h4 {
  color: var(--text-strong);
  font-family: var(--font-sans);
  font-weight: var(--w-bold);
  letter-spacing: var(--tr-heading);
  line-height: var(--lh-snug);
  margin: 0;
}

::selection { background: var(--accent); color: #fff; }

/* Shared utility: technical eyebrow label */
.iso-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: var(--w-medium);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
}
