:root {
  color-scheme: light;
  --bg: #f7f5ef;
  --card: #ffffff;
  --ink: #18221b;
  --muted: #5f6f64;
  --brand: #2f6b45;
  --brand-dark: #214c32;
  --line: #dbe3d8;
  --shadow: 0 24px 60px rgba(24, 34, 27, 0.08);
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--brand-dark);
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.brand {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--brand-dark);
}

.hero {
  padding: clamp(56px, 9vw, 112px);
  background: linear-gradient(135deg, #ffffff 0%, #e8f0e5 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

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

h1,
h2 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 20px;
  background: var(--brand);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0;
}

.section-grid article,
.content-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section-grid article {
  padding: 28px;
}

.section-grid p,
.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card {
  padding: clamp(28px, 5vw, 56px);
}

.content-card ul {
  padding-left: 1.2rem;
}

.content-card li + li {
  margin-top: 12px;
}

.page {
  margin-bottom: 24px;
}

.site-footer {
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-cta {
  margin-bottom: 18px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.footer-cta p {
  margin: 0;
}

.footer-cta p + p {
  margin-top: 6px;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }
}
