body {
  background: #f5efdf;
}

.landing {
  min-height: 100svh;
  padding: clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand {
  width: max-content;
  color: var(--ink);
  font: 800 clamp(1rem, 1.5vw, 1.25rem) / 1 var(--font-display);
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--gold);
}

h1 {
  align-self: center;
  max-width: 11ch;
  color: var(--ink);
  font: 800 clamp(4rem, 12vw, 11rem) / 0.78 var(--font-display);
  letter-spacing: -0.075em;
  text-wrap: balance;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.status {
  justify-self: end;
  color: var(--ink);
  font: 700 clamp(0.72rem, 1vw, 0.9rem) / 1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .landing {
    padding: 22px;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 7rem);
    line-height: 0.82;
  }

  .status {
    justify-self: start;
  }
}
