/* utilities.css — small helper classes. Depends on variables.css. */
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent); }
.text-center { text-align: center; }
.mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--step--1);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip link — visually hidden until keyboard focus reveals it at the top of
   the page. Neurodivergent/keyboard-navigation aid: predictable, always in
   the same place, never announced elsewhere on the page. */
.skip-link {
  position: absolute;
  top: -3rem;
  left: var(--space-3);
  z-index: 100;
  background: var(--color-accent);
  color: var(--color-bg);
  padding: 0.6em 1em;
  border-radius: var(--radius);
  font-size: var(--step--1);
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: var(--space-3);
}
@media (prefers-reduced-motion: reduce) {
  .skip-link { transition: none; }
}

/* Legal notice / impresszum fine print in the footer. Kept visually quiet
   (small, muted, separated by a hairline) so it stays present and
   prominent per Hungarian/EU law without competing with the page's
   primary services content. */
.legal-notice {
  margin: var(--space-3) 0 0;
  padding-top: var(--space-3);
  border-top: var(--border-hairline);
  max-width: 48rem;
  font-size: var(--step--1);
  line-height: 1.6;
  color: var(--color-text-muted);
}
