/* Round 4 A11Y-SKIP-01: skip-to-content link.
 * Hidden off-screen until keyboard-focused, then surfaced at top-left.
 * Applied on every page; the anchor target is #main-content.
 */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 10px 16px;
  background: #0a0a12;
  color: #f0ece4;
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #ff6450;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  outline: 2px solid #ff6450;
  outline-offset: 2px;
}

/* Round 4 A11Y-ADMIN-01: visually-hidden labels for screen readers only. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

