:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #22211f;
  --muted: #69645d;
  --accent: #246b5a;
  --accent-strong: #16483d;
  --surface: #ffffff;
}

* {
  box-sizing: border-box;
}

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

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.intro {
  max-width: 720px;
}

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

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(3rem, 12vw, 7.5rem);
  line-height: 0.9;
}

.lede {
  margin: 28px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 34px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--surface);
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-strong);
}

@media (max-width: 640px) {
  .page {
    place-items: start;
    padding: 28px 20px;
  }

  h1 {
    max-width: 9ch;
  }
}
