/* Barrierefreiheit (BFSG / WCAG 2.1 AA) — zentrale Hilfen, auf allen Seiten
   verlinkt. Bewusst minimal & framework-frei, passend zur statischen Site. */

/* ── Skip-Link ───────────────────────────────────────────────────────────────
   Unsichtbar bis per Tastatur fokussiert, dann oben links sichtbar. (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  background: #13203a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.15s ease;
}
.skip-link:focus {
  transform: translateY(0);
}

/* ── Sichtbarer Fokus-Indikator (WCAG 2.4.7 / 1.4.11) ────────────────────────
   Doppelt-Layer: goldenes Outline + dunkler Halo → ausreichend Kontrast auf
   hellen UND dunklen Flächen, ohne jede Sektion einzeln kennen zu müssen. */
:focus-visible {
  outline: 3px solid #d9b566;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(19, 32, 58, 0.55);
  border-radius: 3px;
}
/* Auf explizit dunklen Sektionen den Halo aufhellen, damit er sichtbar bleibt. */
.on-dark :focus-visible,
.hero :focus-visible,
footer :focus-visible {
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.65);
}

/* ── Reduzierte Bewegung respektieren (WCAG 2.3.3) ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Kontrast: goldener Akzenttext auf hellen Flächen (WCAG 1.4.3) ────────────
   Marken-Gold (#D9B566 / Deepgold #9C7A3C) erreicht als TEXT auf hellem Grund
   kein AA (1.9–3.8:1). Auf hellen Flächen daher ein dunkleres, AA-konformes
   Gold (#8a6a2c = 4.82:1 auf Paper). Auf dunklen Sektionen (.on-dark) bleibt
   das markentypische helle Gold unverändert erhalten. */
:root {
  --gold-text: #8a6a2c;
}
.eyebrow,
h1 em,
.vision-quote,
.pill.soon,
.step .n,
.sys .tag,
.pcard .lbl {
  color: var(--gold-text) !important;
}
.on-dark .eyebrow,
.on-dark h1 em,
.on-dark .vision-quote,
.on-dark .pill.soon,
.on-dark .step .n,
.on-dark .sys .tag,
.on-dark .pcard .lbl {
  color: var(--gold) !important;
}

/* ── Visually-hidden Utility (für Screenreader-Texte, falls gebraucht) ──────── */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
