/* Beauty Deutsch — minimal element defaults so specimens and kits share a baseline. */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: var(--weight-bold); margin: 0; }
h1 { font-size: var(--text-h1); line-height: var(--lh-h1); letter-spacing: var(--ls-h1); }
h2 { font-size: var(--text-h2); line-height: var(--lh-h2); }
h3 { font-size: var(--text-h3); line-height: var(--lh-h3); font-weight: var(--weight-semibold); }
h4 { font-size: var(--text-h4); line-height: var(--lh-h4); font-weight: var(--weight-semibold); }
p { margin: 0; max-width: var(--measure); }
a { color: var(--text-link); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color var(--duration-fast) var(--ease-standard); }
a:hover { color: var(--text-link-hover); text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--action-focus-ring); outline-offset: 2px; }
::selection { background: var(--rose-300); color: var(--ink-900); }

.bd-display { font-family: var(--font-display); font-style: italic; font-weight: var(--weight-bold); font-size: var(--text-display); line-height: var(--lh-display); letter-spacing: var(--ls-display); }
.bd-tagline { font-family: var(--font-script); font-size: var(--text-tagline); line-height: var(--lh-tagline); color: var(--berry-900); }
.bd-label { font-family: var(--font-sans); font-size: var(--text-label); line-height: var(--lh-label); letter-spacing: var(--ls-label); font-weight: var(--weight-semibold); text-transform: uppercase; }
.bd-vocab { font-family: var(--font-mono); font-size: var(--text-vocab); line-height: var(--lh-vocab); }
