/* ── Contact page ─────────────────────────────────────────────── */
.page-contact {
  pointer-events: none;
}

.contact-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(360px, 80vw);
  pointer-events: auto;
  z-index: 2;
}

.contact-text p,
.contact-text h1,
.contact-text h2 {
  font-family: Impact, 'Arial Narrow', Arial, sans-serif;
  font-stretch: condensed;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: #000;
  margin-bottom: 0.5em;
}

.contact-text a {
  color: #000;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

.contact-text a:hover,
.contact-text a:focus-visible {
  border-bottom-color: #000;
}

.contact-text a:focus-visible {
  outline: 1px solid #000;
  outline-offset: 2px;
}
