:root {
  --forest: #16382b;
  --moss: #4f7d4a;
  --leaf: #83b45b;
  --cream: #f7f1e5;
  --paper: #fffaf1;
  --ink: #1f2a24;
  --muted: #637065;
  --line: rgba(31, 42, 36, 0.14);
  --shadow: 0 24px 70px rgba(22, 56, 43, 0.18);
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.hero {
  min-height: 92vh;
  background:
    linear-gradient(120deg, rgba(22,56,43,.94), rgba(22,56,43,.70)),
    url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: white;
  padding: 28px clamp(20px, 5vw, 72px) 70px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand, .nav-links { display: flex; align-items: center; gap: 18px; }
.brand { font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--leaf);
  color: var(--forest);
  font-weight: 900;
}
.nav-links a { opacity: .86; font-weight: 650; }
.nav-links a:hover { opacity: 1; }

.hero-grid {
  max-width: 1180px;
  margin: 82px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

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

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: .9;
  letter-spacing: -0.07em;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
h3 { font-size: 1.35rem; line-height: 1.15; margin-bottom: 10px; }
.lead { max-width: 670px; font-size: clamp(1.05rem, 2vw, 1.28rem); color: rgba(255,255,255,.82); }

.hero-actions, .contact { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}
.button.primary { background: var(--leaf); color: var(--forest); }
.button.secondary { border: 1px solid rgba(255,255,255,.35); color: white; }

.hero-card {
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  padding: 12px;
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(16px);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: min(58vh, 560px); object-fit: cover; border-radius: 25px; }
.hero-card figcaption { padding: 13px 6px 2px; color: rgba(255,255,255,.82); font-weight: 650; }

.trust-strip {
  max-width: 1080px;
  margin: -44px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.trust-strip div { padding: 24px; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip strong { display: block; font-size: 1.45rem; color: var(--forest); }
.trust-strip span { color: var(--muted); font-weight: 650; }

.section { max-width: 1180px; margin: 0 auto; padding: 110px clamp(20px, 4vw, 40px) 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 18px 50px rgba(22, 56, 43, 0.08);
}
.card img { width: 100%; height: 225px; object-fit: cover; border-radius: 20px; margin-bottom: 18px; }
.card p, .section p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr .9fr; gap: 52px; align-items: center; }
.steps { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; align-items: start; }
.steps span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-weight: 900;
}
.steps p { margin-bottom: 0; }
.rounded-image { border-radius: 34px; box-shadow: var(--shadow); min-height: 520px; object-fit: cover; }

.quote {
  max-width: 980px;
  margin: 110px auto 0;
  padding: clamp(34px, 6vw, 70px);
  border-radius: 36px;
  background: var(--forest);
  color: white;
  text-align: center;
}
.quote p { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.12; letter-spacing: -0.04em; margin-bottom: 18px; }
.quote span { color: rgba(255,255,255,.72); font-weight: 700; }

.contact {
  justify-content: space-between;
  padding-bottom: 105px;
}
.contact > div { max-width: 720px; }
.contact .button { box-shadow: var(--shadow); }

footer {
  border-top: 1px solid var(--line);
  padding: 30px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 650;
}

@media (max-width: 880px) {
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .trust-strip, .cards { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .rounded-image { min-height: 340px; }
  footer { flex-direction: column; }
}
