:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --text: #1f2428;
  --muted: #59626b;
  --accent: #146c5c;
  --line: #d8d1c4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(20, 108, 92, 0.12), transparent 38%),
    linear-gradient(315deg, rgba(151, 65, 45, 0.13), transparent 34%),
    var(--bg);
}

a {
  color: var(--accent);
  text-underline-offset: 0.2em;
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 7vw, 80px);
}

.intro {
  width: min(100%, 820px);
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 6vw, 56px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 14vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.4vw, 1.55rem);
  line-height: 1.45;
}

@media (max-width: 520px) {
  .shell {
    place-items: end start;
  }
}

