@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --g: #1a6b45;
  --gm: #2d8a5a;
  --gl: #e8f5ef;
  --ink: #1a1a18;
  --muted: #6b6b64;
  --bg: #ffffff;
  --bg2: #f7f7f4;
  --border: rgba(26,26,24,0.1);
  --r: 12px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--bg2);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--g); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1080px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--g);
}
.logo:hover { text-decoration: none; }
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a { font-size: 14px; color: var(--muted); }
.nav nav a:hover { color: var(--ink); text-decoration: none; }
.cta-link { color: var(--g) !important; font-weight: 500; }

/* Main */
main { max-width: 880px; margin: 0 auto; padding: 60px 32px 80px; }

/* Hero */
.hero { margin-bottom: 80px; }
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero h1 em { font-style: italic; color: var(--g); }
.lede {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 28px;
}

.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  background: var(--g);
  color: #fff !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--gm); }
.btn-link { font-size: 14px; color: var(--muted); }

.who-for {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 620px;
  line-height: 1.55;
}
.who-for strong { color: var(--ink); font-weight: 500; }

/* Features (3-up) */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}
.feature {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 24px 22px;
}
.feature-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--g);
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Customers section */
.customers { margin-bottom: 80px; }
.customers h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 32px;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.customers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.customer-card {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 20px;
}
.customer-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.customer-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Closing CTA */
.closing-cta {
  background: var(--bg);
  border: 0.5px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
}
.closing-cta h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 12px;
}
.closing-cta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta strong { color: var(--ink); }

/* Prose pages (about, start) */
.prose h1 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.4px;
}
.prose h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose p { margin-bottom: 16px; line-height: 1.65; color: var(--ink); }
.prose ul { margin-bottom: 16px; padding-left: 22px; }
.prose li { margin-bottom: 10px; line-height: 1.6; }
.prose .lede { font-size: 17px; color: var(--muted); margin-bottom: 28px; max-width: 620px; }

/* Footer */
footer {
  max-width: 1080px;
  margin: 60px auto 32px;
  padding: 24px 32px;
  border-top: 0.5px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* Mobile */
@media (max-width: 720px) {
  .hero h1 { font-size: 36px; }
  .features, .customers-grid { grid-template-columns: 1fr; }
  main { padding: 32px 20px 60px; }
  .nav { padding: 14px 20px; }
}
