:root {
  --ink: #1a1c1e;
  --muted: #5c6570;
  --paper: #ffffff;
}

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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2.5rem);
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 44rem;
  animation: rise 0.9s ease-out both;
}

.logo {
  display: block;
  width: min(100%, 36rem);
  height: auto;
}

.footer {
  width: 100%;
  max-width: 36rem;
  text-align: center;
  padding-top: 2rem;
  animation: rise 0.9s ease-out 0.15s both;
}

.brokerage {
  margin: 0 0 0.65rem;
  font-weight: 400;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.brokerage span + span::before {
  content: " ";
}

.footer address {
  margin: 0;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: var(--muted);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 34rem) {
  .brokerage span {
    display: block;
  }

  .brokerage span + span::before {
    content: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .footer {
    animation: none;
  }
}
