/* ============================================================
   WNN Properties — Base element defaults
   Applies the brand fonts and sensible resets. Optional for
   consumers, but keeps specimens and kits consistent.
   ============================================================ */
* { box-sizing: border-box; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--text);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

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

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

.eyebrow {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--text-small);
  letter-spacing: var(--ls-caps);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  h1 { font-size: var(--h1-m); }
  h2 { font-size: var(--h2-m); }
  h3 { font-size: var(--h3-m); }
  h4 { font-size: var(--h4-m); }
  h5 { font-size: var(--h5-m); }
  h6 { font-size: var(--h6-m); }
}
