/* Accessibility baseline — loaded by all pages */

/* Skip link */
.skip-link {
  position: absolute;
  top: -44px;
  left: 0;
  background: #1a472a;
  color: #f5f3e8;
  padding: 10px 16px;
  z-index: 99999;
  text-decoration: none;
  font-family: Georgia, serif;
  font-size: 1rem;
  border-radius: 0 0 4px 0;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 0;
}

/* Focus indicators — override per-page outline:none */
*:focus-visible {
  outline: 3px solid #1a472a !important;
  outline-offset: 2px !important;
}
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #1a472a !important;
  outline-offset: 2px !important;
  border-color: #1a472a !important;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid #1a472a !important;
  outline-offset: 2px !important;
}

/* Visually hidden — for screen-reader-only content */
.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;
}
