* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f1e8;
  color: #173526;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.eyebrow {
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: #5f735e;
}

h1 {
  max-width: 800px;
  margin: 0.5rem auto;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 0.95;
}

.subtitle {
  max-width: 620px;
  margin: 1.5rem auto;
  font-size: 1.25rem;
  color: #4f5f50;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid #173526;
  border-radius: 999px;
  color: #173526;
  text-decoration: none;
}