* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #10231c;
  background: #f6f3ec;
}

.hero {
  min-height: 100vh;
  padding: 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 980px;
}

.eyebrow {
  color: #0f6b45;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 1;
  margin: 0 0 24px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 680px;
}

.button {
  display: inline-block;
  width: fit-content;
  margin-top: 24px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #0f6b45;
  color: white;
  text-decoration: none;
  font-weight: 700;
}