@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #10231f;
  --muted: #60716c;
  --green: #0b6b57;
  --green-dark: #064b3e;
  --mint: #e9f5f0;
  --cream: #f7faf8;
  --white: #ffffff;
  --line: #dce8e3;
  --shadow: 0 20px 50px rgba(16, 35, 31, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  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,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,232,227,.8);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 12px; background: var(--green); color: white;
  font-family: Manrope, sans-serif; font-weight: 800;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: Manrope, sans-serif; font-size: 15px; }
.brand small { color: var(--muted); font-size: 11px; }
nav { display: flex; gap: 24px; color: #42534e; font-size: 14px; }
nav a:hover { color: var(--green); }
.nav-cta {
  padding: 11px 17px; border-radius: 999px; background: var(--ink);
  color: white; font-size: 13px; font-weight: 700;
}

.hero {
  background: linear-gradient(135deg, #f7fbf9 0%, #e8f5f0 100%);
  padding: 92px 0 86px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 16px; color: var(--green); font-size: 12px; font-weight: 800;
  letter-spacing: .16em;
}
h1, h2, h3 { font-family: Manrope, sans-serif; line-height: 1.12; margin-top: 0; }
h1 { font-size: clamp(46px, 6vw, 76px); letter-spacing: -.045em; margin-bottom: 24px; }
h1 span { color: var(--green); }
h2 { font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; }
.hero-text { max-width: 640px; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: 14px 20px; border-radius: 12px; font-weight: 700; }
.primary { background: var(--green); color: white; }
.secondary { border: 1px solid var(--line); background: white; }
.primary:hover { background: var(--green-dark); }

.hero-card {
  position: relative; min-height: 420px; overflow: hidden; border-radius: 28px;
  background: var(--green-dark); box-shadow: var(--shadow); color: white;
  display: flex; align-items: flex-end;
}
.orb {
  position: absolute; width: 360px; height: 360px; border-radius: 50%;
  top: -100px; right: -100px; background: rgba(255,255,255,.10);
}
.hero-card::before, .hero-card::after {
  content: ""; position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%;
}
.hero-card::before { width: 420px; height: 420px; top: 70px; left: -150px; }
.hero-card::after { width: 220px; height: 220px; bottom: -120px; right: 60px; }
.hero-card-content { position: relative; z-index: 2; padding: 34px; width: 100%; }
.card-label { font-size: 11px; letter-spacing: .16em; opacity: .7; font-weight: 800; }
.hero-card h2 { font-size: 32px; margin: 14px 0 24px; max-width: 350px; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mini-grid div { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07); padding: 12px; border-radius: 10px; font-size: 13px; }

.section { padding: 100px 0; }
.section-soft { background: var(--cream); }
.two-col, .approach-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; }
.body-copy { color: var(--muted); font-size: 17px; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading > p:last-child { color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 26px; min-height: 250px; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .2s ease; }
.icon {
  display: inline-grid; place-items: center; width: 40px; height: 40px;
  border-radius: 10px; background: var(--mint); color: var(--green);
  font-weight: 800; font-size: 12px;
}
.card h3 { margin: 28px 0 10px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.approach-list { border-top: 1px solid var(--line); }
.approach-list > div { padding: 22px 0; border-bottom: 1px solid var(--line); }
.approach-list strong { font-family: Manrope, sans-serif; font-size: 18px; }
.approach-list p { margin: 7px 0 0; color: var(--muted); }

.contact-section { background: var(--green-dark); color: white; padding: 90px 0; }
.contact-section .eyebrow { color: #9de1cc; }
.contact-section h2 { margin-bottom: 16px; }
.contact-intro { color: rgba(255,255,255,.72); max-width: 460px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.contact-card { background: white; color: var(--ink); border-radius: 22px; padding: 12px 26px; }
.contact-row { display: grid; grid-template-columns: 130px 1fr; gap: 20px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row span { color: var(--muted); font-size: 13px; }
.contact-row strong { font-size: 14px; }
.contact-row a { color: var(--green); }

footer { padding: 28px 0; background: #071d18; color: white; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
footer p { margin: 5px 0 0; color: rgba(255,255,255,.55); font-size: 12px; }
footer a { color: #9de1cc; font-size: 13px; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero-grid, .two-col, .approach-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding-top: 65px; }
  .hero-card { min-height: 340px; }
  .cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-cta { display: none; }
  .hero { padding: 55px 0 60px; }
  h1 { font-size: 48px; }
  .section { padding: 70px 0; }
  .cards { grid-template-columns: 1fr; }
  .contact-row { grid-template-columns: 1fr; gap: 5px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
