:root {
  --ink: #17201c;
  --muted: #5a665f;
  --surface: #ffffff;
  --soft: #f4f2ec;
  --soft-2: #e9efe8;
  --accent: #2f6b4f;
  --accent-dark: #1f4937;
  --gold: #c89d44;
  --line: rgba(23, 32, 28, 0.12);
  --shadow: 0 22px 60px rgba(23, 32, 28, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.nav-links { display: flex; gap: 24px; color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent-dark); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(200,157,68,0.22), transparent 30%),
    linear-gradient(135deg, #f8f6ef 0%, #eef4ee 100%);
  padding: 88px 0 72px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  background: rgba(47,107,79,0.10);
  border-radius: 50%;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--accent); text-transform: uppercase; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.6rem, 6vw, 5.3rem); line-height: 0.98; letter-spacing: -0.07em; margin-bottom: 22px; max-width: 780px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.05; letter-spacing: -0.055em; margin-bottom: 18px; }
h3 { font-size: 1.2rem; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 10px; }
.hero-subtitle { color: var(--muted); font-size: 1.25rem; max-width: 620px; margin-bottom: 28px; }

.check-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 30px 0;
}
.check-card div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(23,32,28,0.06);
}
.check-card span { color: var(--accent); font-size: 1.1rem; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary, .button.full { background: var(--accent); color: #fff; box-shadow: 0 16px 32px rgba(47,107,79,0.22); }
.button.primary:hover, .button.full:hover { background: var(--accent-dark); }
.button.secondary { background: #fff; color: var(--accent-dark); border-color: var(--line); }
.button.full { width: 100%; }

.offer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.card-kicker { color: var(--gold); font-weight: 800; margin-bottom: 10px; }
.offer-card h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.offer-card p { color: var(--muted); }

.mission-strip { background: var(--accent-dark); color: #fff; padding: 38px 0; text-align: center; }
.mission-strip h2 { font-size: clamp(1.55rem, 3vw, 2.8rem); margin: 0; letter-spacing: -0.04em; }

.section { padding: 86px 0; }
.section.alt { background: var(--soft); }
.section-heading { max-width: 700px; margin-bottom: 38px; }
.section-heading p, .two-col p { color: var(--muted); font-size: 1.07rem; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.steps article, .values-grid div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(23,32,28,0.06);
}
.step-number { display: inline-block; color: var(--gold); font-weight: 900; margin-bottom: 18px; }
.steps p, .values-grid p { color: var(--muted); margin-bottom: 0; }

.two-col { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 52px; align-items: start; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.problems { background: var(--surface); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.pill-grid span {
  display: inline-flex;
  padding: 13px 18px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-section { background: linear-gradient(135deg, #f8f6ef, #eef4ee); }
.contact-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 52px; align-items: start; }
.contact-notes { padding-left: 20px; color: var(--muted); font-weight: 600; }
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.lead-form label { display: block; font-weight: 800; margin-bottom: 16px; }
.lead-form input, .lead-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--ink);
  background: #fbfbf8;
}
.lead-form input:focus, .lead-form textarea:focus { outline: 3px solid rgba(47,107,79,0.18); border-color: var(--accent); }
.form-note { color: var(--muted); font-size: 0.86rem; margin: 12px 0 0; text-align: center; }

.site-footer { background: var(--ink); color: #fff; padding: 34px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.site-footer p { color: rgba(255,255,255,0.68); margin: 4px 0 0; }
.footer-meta { text-align: right; }

@media (max-width: 900px) {
  .hero-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .check-card, .steps, .values-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section { padding: 66px 0; }
  .hero { padding-top: 64px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand span:last-child { font-size: 0.95rem; }
  h1 { font-size: 2.7rem; }
  .hero-actions .button { width: 100%; }
  .offer-card, .lead-form { padding: 22px; border-radius: 22px; }
}
