* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  background: #fff;
  color: #000;
  font-family: "Hoefler Text", Benne, Garamond, "EB Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8vw 4vw;
}

.intro {
  width: min(100%, 890px);
  margin: 0 auto;
}

h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.1;
}

p {
  max-width: 770px;
  margin: 0 0 1.45rem;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 400;
}

.small {
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
}

.contact-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  color: #6f6f6f;
  font-weight: 500;
  transition: color 160ms ease;
}

.contact-link span {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.18em;
  transition: text-decoration-color 160ms ease;
}

.contact-link::after {
  content: "\2197";
  opacity: 0;
  transform: translate(-2px, 2px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #000;
}

.contact-link:hover span,
.contact-link:focus-visible span {
  text-decoration-color: currentColor;
}

.contact-link:hover::after,
.contact-link:focus-visible::after {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 640px) {
  .page {
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 28vw;
  }
}
