:root {
  color-scheme: light;
  --bg: #f4efe1;
  --ink: #223026;
  --muted: #657166;
  --accent: #426c45;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  width: min(760px, 100%);
  padding: 32px 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.06em;
}

p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
}
