
h1, h2, h3, h4, .h-display, .h-section {
  font-family: var(--font-heading);
}

body {
  font-family: var(--font-sans);
  font-size: var(--font-size);
  color: var(--text-primary);
  background: var(--bg-page);
}

/* ── Utility-Klassen ──────────────────────────────────────────────── */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--at-blue);
}

.copy-head {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--at-blue);
}

.h-display {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--text-primary);
}

.h-section {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--text-primary);
}

.h-section .blue { color: var(--at-blue); }
.h-section .red  { color: var(--at-red); }

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-primary);
  max-width: 62ch;
}

a {
  color: var(--link);
}
a:hover {
  color: var(--link-hover);
}

/* ── Sichtbarkeits-Klassen für i18n ────────────────────────────────── */
[data-de], [data-en] { display: none; }
.lang-de [data-de]   { display: revert; }
.lang-en [data-en]   { display: revert; }
