.site-contact {
  position: absolute;
  top: 22px;
  right: clamp(18px, 3vw, 40px);
  z-index: 3;
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(14, 17, 23, 0.24);
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.025em;
  -webkit-backdrop-filter: blur(12px) saturate(125%);
  backdrop-filter: blur(12px) saturate(125%);
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-contact:hover {
  display: inline-flex;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(14, 17, 23, 0.46);
  color: rgba(255, 255, 255, 0.86);
}

.site-contact:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.38);
  outline-offset: 3px;
}

.site-contact svg {
  display: block;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-contact span {
  display: block;
  color: inherit !important;
  line-height: 1;
}

.nav-scroll .site-contact {
  border-color: rgba(23, 25, 31, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(23, 25, 31, 0.7);
}

.nav-scroll .site-contact:hover {
  border-color: rgba(23, 25, 31, 0.24);
  background: #fff;
  color: #17191f;
}

@media (max-width: 575.98px) {
  .site-contact {
    top: 14px;
    right: 14px;
    height: 32px;
    padding: 0 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-contact {
    transition: none;
  }
}
