:root {
  --black: #050505;
  --cream: #f7f2ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--black);
  background: var(--cream);
  font-family: "Aptos", "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.coming-soon {
  min-height: calc(100vh - 56px);
  display: grid;
  grid-template-rows: 1fr auto 1fr auto;
  justify-items: center;
  align-items: center;
  width: min(760px, 100%);
  text-align: center;
}

.logo {
  width: min(380px, 82vw);
  height: auto;
  align-self: end;
}

h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.6rem, 9vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
  align-self: start;
}

.call-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: end;
  padding: 15px 20px;
  border: 2px solid var(--black);
  border-radius: 6px;
  color: var(--cream);
  background: var(--black);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.call-button:hover {
  opacity: 0.86;
}

@media (max-width: 820px) {
  .landing {
    padding: 18px;
  }

  .coming-soon {
    min-height: calc(100vh - 36px);
  }
}

@media (max-width: 460px) {
  .call-button {
    width: 100%;
  }
}
