footer > .contact-heading {
  margin-bottom: 70px;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 90px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.contact-actions > a {
  min-height: 130px;
  padding: 24px 28px 24px 0;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-actions > a + a {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.contact-actions small {
  color: var(--muted);
  font: 9px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-actions span {
  font-size: clamp(17px, 2vw, 26px);
  letter-spacing: -.025em;
}

.contact-actions > a:hover span {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  font: 10px "DM Mono", monospace;
  text-transform: uppercase;
}

.about-contact-intro {
  max-width: 620px;
  margin: 45px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.about-contact > div {
  gap: 10px;
  margin-top: 65px;
}

.about-contact > div a {
  padding: 18px 22px;
  border: 1px solid var(--ink);
  text-decoration: none;
}

.about-contact > div a:first-child {
  background: var(--ink);
  color: var(--paper);
}

.about-contact-email {
  display: inline-block;
  margin-top: 34px;
  text-transform: none !important;
  text-underline-offset: 5px;
}

@media (max-width: 800px) {
  footer > .contact-heading {
    margin-bottom: 55px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .contact-actions > a {
    min-height: 105px;
    padding: 22px 0;
  }

  .contact-actions > a + a {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-contact-intro {
    margin-left: 0;
  }

  .about-contact > div a {
    text-align: center;
  }
}
