/* ============================================================
   Fitzgeralds Plumbing — Base element defaults
   Light-touch resets + brand defaults for raw HTML.
   ============================================================ */

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-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);
  line-height: var(--leading-snug);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: var(--text-h1); font-weight: var(--weight-extrabold); letter-spacing: var(--tracking-tight); }
h2 { font-size: var(--text-h2); font-weight: var(--weight-bold); letter-spacing: var(--tracking-tight); }
h3 { font-size: var(--text-h3); font-weight: var(--weight-bold); }
h4 { font-size: var(--text-h4); font-weight: var(--weight-semibold); }
h5 { font-size: var(--text-h5); font-weight: var(--weight-semibold); }

p { margin: 0 0 1em; text-wrap: pretty; }

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Uppercase tracked eyebrow — a core brand device */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--eyebrow-size);
  font-weight: var(--weight-bold);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
  color: var(--brand-accent);
}

::selection { background: var(--aqua-200); color: var(--blue-950); }

/* Scale display/headings down on small viewports (tokens are desktop sizes) */
@media (max-width: 640px) {
  :root {
    --text-display: 2.875rem; /* 46 */
    --text-h1: 2.125rem;      /* 34 */
    --text-h2: 1.625rem;      /* 26 */
  }
}
