* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 24px;
}

.hero__inner {
  width: min(980px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: min(100%, 760px);
  height: auto;
  display: block;
}

.hero__copy {
  width: min(100%, 760px);
  margin-top: 32px;
}

.eyebrow {
  display: none;
}

h1 {
  display: none;
}

.lede {
  margin: 0;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.65;
  font-weight: 700;
  text-align: justify;
}

.contact {
  padding: 28px 24px 48px;
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact__label {
  display: none;
}

.contact__link {
  color: #8c6f3f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.contact__link:hover,
.contact__link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .hero {
    padding: 32px 18px 18px;
  }

  .hero__copy {
    margin-top: 22px;
  }

  .lede {
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: left;
  }

  .contact {
    padding: 20px 18px 32px;
  }

  .contact__link {
    font-size: 1.1rem;
  }
}
