/* ===========================================================================
   NOVA Desarrollos — Base resets & primitives
   Applies the brand foundation to bare HTML so specimens & kits inherit it.
   =========================================================================== */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--selection-bg); color: var(--ink-900); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--leading-snug);
  margin: 0 0 var(--space-4);
  font-weight: var(--weight-heavy);
}

p { margin: 0 0 var(--space-4); }

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

/* Editorial eyebrow — the wide-tracked WOW voice */
.nova-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Wordmark-style wide display lockup */
.nova-wordmark {
  font-family: var(--font-display);
  font-weight: var(--weight-book);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}
