/* Contact */
.contact {
  min-height: 100svh;
  padding-top: clamp(280px, 34vw, 480px);
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  color: var(--ink);
  background: var(--surface-soft);
}
.contact-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.contact h2 {
  max-width: 880px;
  color: var(--ink);
}
.pill {
  position: relative;
  isolation: isolate;
  min-height: 42px;
  margin-top: 34px;
  padding: 0 21px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #171a1e;
  box-shadow: none;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  transition: background-color 0.2s ease;
}
.pill:hover {
  background: #20252a;
}
.pill:active {
  background: #111418;
}
.contact .pill {
  color: #fff;
}
.contact-meta {
  min-width: 185px;
  align-self: end;
  display: grid;
  gap: 7px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--muted);
}
.contact-meta a {
  transition: color 0.2s ease;
}
.contact-meta a:hover {
  color: var(--ink);
}
