*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #000;
  color: #f2f2f0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

.logo {
  width: min(520px, 78vw);
  height: auto;
  max-width: 100%;
}

.tagline {
  position: relative;
  margin: 0;
  padding-top: 1.75rem;
  max-width: 32rem;
  font-size: clamp(0.78rem, 0.68rem + 0.45vw, 0.98rem);
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-indent: 0.22em;
  color: #c9c9c3;
}

.tagline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.25rem;
  height: 1px;
  background-color: #4a4a46;
}

.tagline-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #4a4a46;
  padding-bottom: 0.35em;
}

.tagline-link:hover,
.tagline-link:focus-visible {
  color: #f2f2f0;
  border-bottom-color: #f2f2f0;
}

.footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
}

.address {
  margin: 0 auto;
  max-width: 40rem;
  font-style: normal;
  font-size: clamp(0.68rem, 0.6rem + 0.3vw, 0.78rem);
  line-height: 2.1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-indent: 0.16em;
  color: #868682;
}

@media (max-width: 30rem) {
  .page {
    gap: 1.25rem;
  }

  .tagline {
    padding-top: 1.5rem;
    letter-spacing: 0.16em;
    text-indent: 0.16em;
  }

  .address {
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }
}
