/* Contact link — inline email/phone, rendered as a button so it can stay obfuscated */

.contact-link {
  font: inherit;
  color: inherit;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s ease;
}
.contact-link:hover {
  color: var(--gold);
}
