.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--black);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font-weight: var(--fw-bold);
  z-index: 2000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* ── Section title gold accent ── */
.section-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 999px;
  margin-top: 0.6rem;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* Fix iOS white dotted underline on addresses/phones */
[href^="tel"],
[href^="mailto"],
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

