:root {
  --brown: #715e52;
  --beige: #f7f1dd;
  --light-beige: #fbf8ee;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--beige);
  color: var(--brown);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

.landing {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: clamp(42px, 8vw, 92px);
  min-height: 100vh;
  padding: clamp(56px, 10vw, 104px) 28px clamp(48px, 8vw, 88px);
}

.hero {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.coming-soon {
  display: block;
  height: auto;
  max-width: min(82vw, 473px);
}

.letter {
  max-width: 760px;
  width: 100%;
}

.letter p,
.letter li {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.45;
}

.letter p {
  margin: 0 0 1.25em;
}

.letter h1 {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 2.05em 0 0.9em;
}

.letter ol {
  display: grid;
  gap: 0.65em;
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}

.letter li {
  padding-left: 0.15em;
}

.whatsapp-link {
  color: inherit;
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

@media (max-width: 620px) {
  .landing {
    align-items: stretch;
  }

  .hero {
    justify-content: flex-start;
  }

  .coming-soon {
    max-width: min(100%, 473px);
  }
}
