:root {
  color-scheme: light;
  --ink: #17231f;
  --muted: #5e6a62;
  --line: #d8ded7;
  --accent: #1c6b5b;
  --bg: #f4f7f1;
  --panel: #ffffff;
}
* { 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(--ink);
  background: linear-gradient(180deg, #eef4ee 0%, var(--bg) 52%, #e8eee8 100%);
}
.page {
  width: min(1040px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-items: center;
}
.page.narrow {
  display: block;
  min-height: auto;
  padding: 96px 0;
  max-width: 720px;
}
.hero {
  max-width: 760px;
  padding: 72px 0 92px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 8vw, 6.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}
.lead, p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}
.link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(28, 107, 91, 0.25);
}
.link:hover { border-bottom-color: var(--accent); }
@media (max-width: 560px) {
  .page { width: min(100% - 28px, 1040px); }
  .hero { padding: 48px 0 68px; }
  h1 { font-size: 3.25rem; }
}
