/* AC Exteriors NC — Base element defaults (opt-in reset applied to specimens/kits). */

:root {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  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;
}

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

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

/* Eyebrow / label convention: uppercase, tracked, muted */
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
}

::selection {
  background: rgba(26, 115, 200, 0.4);
  color: var(--white);
}
