:root {
  --green: #15952e;
  --green-2: #52b948;
  --green-dark: #0c6a2b;
  --ink: #0d2a2f;
  --text: #1c2528;
  --muted: #667176;
  --line: #dfe7e2;
  --soft: #f3f7f4;
  --white: #fff;
  --shadow: 0 10px 30px rgba(19, 64, 39, .09);
  --radius: 7px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.section { padding: 32px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(16, 72, 43, .08);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 68px;
  display: grid;
  grid-template-columns: 280px 1fr 190px;
  align-items: center;
  gap: 24px;
}
.brand img { width: 255px; height: auto; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
  font-size: 13px;
}
.primary-nav a { position: relative; white-space: nowrap; }
.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.primary-nav a:hover::after,
.primary-nav a.active::after { transform: scaleX(1); }
.nav-cta {
  background: linear-gradient(90deg, #15952e, #43b436);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
}
.header-tagline {
  border-left: 1px solid #aad3b3;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 9px;
  letter-spacing: .34em;
  font-weight: 700;
  color: #1e2a2c;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 352px;
  overflow: hidden;
  background: #eef4ef;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.90) 26%, rgba(255,255,255,.30) 48%, rgba(255,255,255,0) 73%), url('images/hero_bkgd.png');
  background-size: cover;
  background-position: center center;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 42px;
  padding-bottom: 42px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .34em;
  color: #0b7c29;
  font-weight: 700;
}
.eyebrow { color: #17272a; }
.eyebrow span { color: #95a19c; padding: 0 8px; }
.hero h1 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: clamp(37px, 4vw, 57px);
  line-height: .98;
  letter-spacing: -.035em;
  max-width: 650px;
}
.hero h1 strong { color: var(--green); font-weight: 800; }
.hero h2 {
  margin: 0 0 2px;
  font-size: 20px;
  color: #111;
  letter-spacing: -.02em;
}
.hero-copy { margin: 0 0 19px; font-size: 16px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(90deg,#15952e,#43b436); box-shadow: 0 8px 18px rgba(33,151,53,.18); }
.btn-outline { border: 1.5px solid #20983b; background: rgba(255,255,255,.9); color: #18382c; }
.btn-small { min-height: 37px; padding-inline: 20px; }
.hero-values {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 4.5%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  color: #182225;
  font-size: 10px;
  letter-spacing: .36em;
  font-weight: 700;
}
.hero-values::before { content: ""; width: 36px; height: 2px; background: var(--green); position: absolute; top: 0; left: 0; }

.intro { border-top: 1px solid #edf2ee; border-bottom: 1px solid #edf2ee; }
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.55fr .42fr;
  align-items: center;
  gap: 40px;
}
.intro h2,
.network h2,
.place h2,
.contact-banner h2,
.work h2 {
  margin: 0;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.03;
  letter-spacing: -.025em;
}
.intro h2 strong { color: var(--green); }
.intro-copy { border-left: 2px solid #39a54c; padding-left: 38px; font-size: 16px; line-height: 1.55; }
.intro-copy p { margin: 0; }
.script-note {
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 25px;
  line-height: 1.02;
  transform: rotate(-5deg);
  color: #283c34;
}

.section-soft { background: linear-gradient(180deg,#fbfcfb,#f0f5f2); }
.section-heading-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 22px;
}
.section-heading-row h2 { margin: 0; font-size: 23px; font-weight: 500; color: #182327; }
.section-heading-row > p { margin: 0 0 2px; max-width: 520px; }
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; }
.service-card {
  background: #fff;
  border: 1px solid #e2e9e4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14,65,35,.05);
  min-width: 0;
}
.service-card > img { width: 100%; aspect-ratio: 1.22 / 1; object-fit: cover; }
.service-body { position: relative; padding: 22px 15px 18px; min-height: 150px; }
.service-icon {
  position: absolute;
  left: 14px;
  top: -19px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #138f37;
  background: #fff;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.service-card h3 { margin: 0 0 10px; font-size: 16px; line-height: 1.05; color: #14282c; }
.service-card p { margin: 0; color: #4c585b; font-size: 13px; line-height: 1.35; }

.work { position: relative; min-height: 252px; overflow: hidden; }
.work-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 23%, rgba(255,255,255,.14) 45%, rgba(255,255,255,.08) 82%, rgba(255,255,255,.78) 100%), url('images/work_bkgd.png');
  background-size: cover;
  background-position: center;
}
.work-grid { position: relative; display: grid; grid-template-columns: 260px 1fr 120px; gap: 35px; align-items: center; min-height: 220px; }
.work-copy h2 { font-size: 34px; margin-bottom: 8px; }
.work-copy > p:not(.section-kicker) { margin: 0 0 16px; font-size: 14px; line-height: 1.35; }
.work-mantra { display: flex; flex-direction: column; gap: 8px; font-size: 10px; letter-spacing: .35em; font-weight: 700; color: #223236; }
.work-mantra::after { content:""; width: 34px; height: 2px; background: var(--green); margin-top: 4px; }

.mission { position: relative; min-height: 155px; overflow: hidden; color: #fff; }
.mission-bg { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,42,27,.10),rgba(4,36,27,.72)), url('images/mission_bkgd.png') center/cover no-repeat; }
.mission-inner { position: relative; display: grid; grid-template-columns: 1.6fr .5fr; gap: 60px; align-items: center; min-height: 155px; }
.light-kicker { color: #73d04e; }
.mission h2 { margin: 0 0 6px; font-size: 30px; }
.mission-copy p:last-child { margin: 0; max-width: 720px; font-size: 14px; line-height: 1.45; }
.mission-values { position: relative; border-left: 1px solid rgba(255,255,255,.65); padding-left: 38px; display: flex; flex-direction: column; gap: 7px; letter-spacing: .34em; font-size: 10px; font-weight: 700; }
.leaf-mark { position: absolute; right: 0; top: 0; width: 56px; height: 78px; border-radius: 90% 0 90% 0; transform: rotate(-18deg); background: linear-gradient(135deg,#74d63f,#209c31); opacity: .9; }

.network { padding-top: 24px; padding-bottom: 20px; }
.network-head { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: end; margin-bottom: 14px; }
.network-head > p { margin: 0 0 4px; font-size: 14px; }
.network-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.network-card { min-height: 58px; padding: 9px 15px; border: 1px solid #e1e9e3; border-radius: 6px; background: #fff; box-shadow: 0 4px 15px rgba(0,0,0,.04); display: flex; align-items: center; justify-content: center; gap: 10px; color: #0e6630; font-family: Georgia, serif; font-size: 14px; text-align: center; }
.network-card small { display: block; font-family: Arial,sans-serif; letter-spacing: .24em; color: #344c43; font-size: 9px; margin-top: 1px; }
.network-emblem { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: white; background: radial-gradient(circle at 30% 30%,#56c544,#0a7031 70%); font-family: Arial,sans-serif; font-size: 14px; }

.place { position: relative; min-height: 190px; overflow: hidden; padding: 0; }
.place-bg { position: absolute; inset: 0; background: url('images/place_bkgd.png') center/cover no-repeat; }
.place-grid { position: relative; min-height: 190px; display: grid; grid-template-columns: 1.1fr .9fr; }
.place-copy { align-self: stretch; padding: 24px 0 24px 36px; background: linear-gradient(90deg,rgba(255,255,255,.90),rgba(255,255,255,.72)); display: flex; flex-direction: column; justify-content: center; }
.place-copy h2 { font-size: 27px; margin-bottom: 6px; }
.place-copy > p:not(.section-kicker) { margin: 0 0 13px; max-width: 540px; font-size: 13px; line-height: 1.35; }
.place-copy .btn { align-self: flex-start; }

.contact-banner { position: relative; overflow: hidden; min-height: 105px; }
.contact-bg { position: absolute; inset: 0; background: url('images/leaf_bkgd.png') center/cover no-repeat; }
.contact-inner { position: relative; min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 18px; padding-bottom: 18px; }
.contact-inner > div:first-child { margin-left: 165px; }
.contact-banner h2 { font-size: 28px; }
.contact-banner h2 strong { color: var(--green); }
.contact-banner p { margin: 4px 0 0; }

.site-footer { background: #fff; border-top: 1px solid #e6ebe7; padding: 20px 0; }
.footer-grid { display: grid; grid-template-columns: 220px 1fr auto 260px; align-items: center; gap: 26px; }
.footer-brand img { width: 190px; }
.footer-nav { display: flex; justify-content: center; gap: 22px; font-size: 11px; color: #4a5755; }
.socials { display: flex; gap: 16px; font-weight: 700; }
.socials a { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; color: #17352e; }
.copyright { font-size: 10px; line-height: 1.45; color: #7c8582; text-align: right; }

@media (max-width: 1120px) {
  .nav-wrap { grid-template-columns: 240px 1fr; }
  .header-tagline { display: none; }
  .brand img { width: 225px; }
  .primary-nav { justify-content: flex-end; gap: 18px; }
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .network-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 190px 1fr auto; }
  .copyright { grid-column: 1 / -1; text-align: center; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 36px, var(--container)); }
  .site-header { position: sticky; }
  .nav-wrap { min-height: 64px; grid-template-columns: 1fr auto; gap: 12px; }
  .brand img { width: 220px; }
  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 40px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
  }
  .menu-toggle span { width: 100%; height: 2px; background: #143a2c; border-radius: 4px; transition: transform .25s ease, opacity .25s ease; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: #fff;
    border-top: 1px solid #e6ece8;
    box-shadow: 0 18px 28px rgba(12,64,32,.11);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .22s ease;
  }
  .primary-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav a { padding: 12px 4px; border-bottom: 1px solid #edf1ee; }
  .primary-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 10px; text-align: center; justify-content: center; border: 0 !important; }

  .hero { min-height: 520px; }
  .hero-bg {
    background-image: linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.93) 42%,rgba(255,255,255,.10) 74%), url('images/hero_bkgd.png');
    background-position: 66% center;
  }
  .hero-content { padding-top: 38px; }
  .hero h1 { font-size: clamp(38px, 9vw, 58px); max-width: 560px; }
  .hero h2 { font-size: 18px; }
  .hero-values { display: none; }

  .intro-grid { grid-template-columns: 1fr; gap: 18px; }
  .intro-copy { border-left: 0; border-top: 2px solid #39a54c; padding: 18px 0 0; }
  .script-note { display: none; }
  .section-heading-row, .network-head { grid-template-columns: 1fr; gap: 12px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .work-grid { grid-template-columns: 1fr; align-items: end; min-height: 420px; }
  .work-bg { background-image: linear-gradient(180deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.93) 34%,rgba(255,255,255,.08) 70%), url('images/work_bkgd.png'); background-position: center bottom; }
  .work-copy { align-self: start; padding-top: 8px; max-width: 340px; }
  .work-mantra { display: none; }
  .mission-inner { grid-template-columns: 1fr; min-height: 250px; gap: 18px; padding-top: 28px; padding-bottom: 28px; }
  .mission-values { width: 230px; }
  .network-grid { grid-template-columns: repeat(2,1fr); }
  .place { min-height: 380px; }
  .place-bg { background-position: 38% center; }
  .place-grid { min-height: 380px; grid-template-columns: 1fr; align-items: end; }
  .place-copy { padding: 24px; background: rgba(255,255,255,.90); }
  .contact-inner { flex-direction: column; align-items: flex-start; padding-top: 25px; padding-bottom: 25px; }
  .contact-inner > div:first-child { margin-left: 165px; }
  .contact-bg { background-position: 30% center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  .footer-nav, .socials { justify-content: center; flex-wrap: wrap; }
  .copyright { text-align: center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, var(--container)); }
  .brand img { width: 190px; }
  .hero { min-height: 500px; }
  .hero-content { padding-top: 30px; }
  .eyebrow { font-size: 9px; letter-spacing: .24em; }
  .eyebrow span { padding: 0 4px; }
  .hero h1 { font-size: 38px; }
  .hero h2 { font-size: 16px; max-width: 330px; }
  .hero-copy { font-size: 14px; }
  .hero-actions { gap: 10px; }
  .btn { width: 100%; }
  .intro h2, .network h2, .work h2 { font-size: 29px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: 43% 57%; }
  .service-card > img { height: 100%; aspect-ratio: auto; min-height: 150px; }
  .service-body { min-height: 150px; padding: 24px 15px 16px; }
  .service-icon { left: -20px; top: 12px; }
  .network-grid { grid-template-columns: 1fr; }
  .mission h2 { font-size: 27px; }
  .mission-values { width: 100%; }
  .contact-banner h2 { font-size: 25px; }
  .footer-nav { gap: 14px 18px; }
}
