/* ============================================================
   BASE — light element defaults so specimen cards & kits
   pick up the brand voice without extra wiring.
   ============================================================ */

:root {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font: var(--type-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-heading);
  line-height: var(--leading-snug);
  margin: 0;
  text-wrap: balance;
}

p {
  line-height: var(--leading-body);
  text-wrap: pretty;
}

a {
  color: var(--text-accent);
  text-underline-offset: 2px;
}

::selection {
  background: var(--color-mauve);
  color: var(--color-weinrot-deep);
}

.signature {
  font-family: var(--font-signature);
  color: var(--text-signature);
  font-weight: var(--weight-600, 600);
}
