@import url("./base.css");
@import url("./footer.css");

.page-contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-contact .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.contact-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: color-mix(in srgb, var(--color-off-white) 82%, #f5f0ea);
  text-align: center;
}

.contact-page__inner {
  width: 100%;
  max-width: 800px;
}

.contact-page__heading {
  margin: 0 0 40px;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.contact-page .site-footer__actions {
  gap: 14px;
  margin-bottom: 56px;
}

.contact-page .site-footer__pill {
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
}

.contact-page .site-footer__pill svg {
  width: 16px;
  height: 16px;
}

.contact-page .site-footer__meta {
  padding-top: 24px;
}

@media (max-width: 700px) {
  .contact-page {
    padding: 32px 28px;
  }

  .contact-page__heading {
    margin-bottom: 32px;
  }

  .contact-page .site-footer__actions {
    margin-bottom: 40px;
  }
}
