:root {
  --forest: #105f37;
  --forest-dark: #0a4528;
  --leaf: #6fad43;
  --leaf-bright: #8bc83f;
  --earth: #bd7a49;
  --ink: #242726;
  --muted: #667069;
  --cream: #f7f6ef;
  --white: #ffffff;
  --line: #dfe6df;
  --shadow: 0 18px 50px rgba(9, 60, 35, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(111, 173, 67, .65); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-soft { background: var(--cream); }
.section-dark { color: var(--white); background: var(--forest-dark); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 14px; color: var(--forest); font-size: .78rem;
  font-weight: 800; letter-spacing: .13em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--leaf); }
.section-dark .eyebrow, .cta-band .eyebrow { color: #bfe5aa; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2.55rem, 5vw, 4.9rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1.1rem; }
.lead { color: var(--muted); font-size: clamp(1.04rem, 1.6vw, 1.2rem); }
.section-heading { max-width: 740px; margin-bottom: 42px; }
.section-heading p { margin-top: 18px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }

.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; padding: 10px 16px; color: #fff; background: var(--forest); border-radius: 8px; }
.skip-link:focus { top: 16px; }
.topbar { color: #fff; background: var(--forest-dark); font-size: .84rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 22px; }
.topbar a:hover { color: #ccefb7; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(16,95,55,.1); backdrop-filter: blur(15px); }
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand-logo { width: 258px; max-height: 66px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 30px; font-weight: 700; font-size: .92rem; }
.nav-links > a:not(.btn) { position: relative; padding: 30px 0; }
.nav-links > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 20px; height: 2px; background: var(--leaf); transition: right .25s ease; }
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.nav-links > a.active { color: var(--forest); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); background: #fff; border-radius: 50%; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--forest); transition: .25s; }

.btn { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border: 1px solid transparent; border-radius: 999px; font-size: .92rem; font-weight: 800; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--forest); box-shadow: 0 12px 26px rgba(16,95,55,.2); }
.btn-primary:hover { background: var(--forest-dark); }
.btn-secondary { color: var(--forest); background: #fff; border-color: rgba(16,95,55,.25); }
.btn-secondary:hover { border-color: var(--forest); }
.btn-light { color: var(--forest-dark); background: #fff; }
.btn-link { color: var(--forest); padding: 0; min-height: auto; border-radius: 0; }
.btn-link::after { content: "\2197"; }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.hero { position: relative; min-height: 700px; display: grid; align-items: center; overflow: hidden; background: #edf5e7; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(248,248,241,.98) 0%, rgba(248,248,241,.92) 37%, rgba(248,248,241,.2) 65%, rgba(10,69,40,.05) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 660px; padding: 100px 0 120px; }
.hero h1 { max-width: 650px; }
.hero h1 span { color: var(--forest); }
.hero .lead { max-width: 590px; margin-top: 22px; color: #49544d; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 28px; margin-top: 34px; font-size: .84rem; font-weight: 800; }
.hero-proof span::before { content: "\2713"; margin-right: 8px; color: var(--forest); }
.hero-accent { position: absolute; z-index: 3; right: 0; bottom: 0; width: min(42vw, 560px); height: 12px; background: linear-gradient(90deg, var(--earth), var(--leaf), var(--forest)); }

.trust-strip { position: relative; z-index: 5; margin-top: -38px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow); }
.trust-item { padding: 26px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--forest); font-size: 1.02rem; }
.trust-item span { color: var(--muted); font-size: .83rem; }

.split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }
.media-frame { position: relative; }
.media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-badge { position: absolute; right: -24px; bottom: 28px; width: 190px; padding: 21px; color: #fff; background: var(--forest); border: 8px solid #fff; border-radius: var(--radius-md); }
.media-badge strong { display: block; font-size: 1.7rem; line-height: 1; }
.media-badge span { display: block; margin-top: 7px; font-size: .77rem; line-height: 1.4; }
.copy h2 { margin-bottom: 22px; }
.copy .lead { margin-bottom: 20px; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 24px; padding: 0; margin: 26px 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; font-weight: 700; font-size: .9rem; }
.check-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--leaf); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 260px; padding: 30px; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(16,95,55,.25); box-shadow: var(--shadow); }
.card-number { display: inline-grid; width: 48px; height: 48px; place-items: center; margin-bottom: 28px; color: var(--forest); background: #eaf4e5; border-radius: 50%; font-weight: 900; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .92rem; }
.service-card::after { content: ""; position: absolute; right: -36px; bottom: -38px; width: 100px; height: 100px; border: 14px solid rgba(111,173,67,.1); border-radius: 50%; }
.service-card.featured { color: #fff; background: var(--forest); border-color: var(--forest); }
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #dceade; }
.service-card.featured .card-number { color: #fff; background: rgba(255,255,255,.14); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: steps; }
.process-step { position: relative; padding-top: 22px; border-top: 2px solid var(--line); }
.process-step::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 20px; color: var(--leaf); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: -5px; right: -13px; width: 8px; height: 8px; background: var(--leaf); border-radius: 50%; }
.process-step p { color: var(--muted); font-size: .88rem; }

.image-band { position: relative; min-height: 560px; display: grid; align-items: center; overflow: hidden; }
.image-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,69,40,.94), rgba(10,69,40,.72) 48%, rgba(10,69,40,.08)); }
.image-band-card { position: relative; z-index: 2; width: min(580px, 100%); padding: 72px 0; color: #fff; }
.image-band-card h2 { color: #fff; }
.image-band-card p { margin-top: 20px; color: #d9e7dd; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.metric { padding: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.metric strong { display: block; font-size: 1.5rem; }
.metric span { font-size: .75rem; color: #dceade; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.quote-mark { color: var(--leaf); font-family: Georgia, serif; font-size: 3.6rem; line-height: .8; }
.quote-card blockquote { margin: 18px 0 25px; color: #414945; font-size: .95rem; }
.quote-card cite { display: block; color: var(--forest); font-style: normal; font-weight: 800; }
.quote-card small { color: var(--muted); }

.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 800; }
.faq-question span:last-child { flex: 0 0 32px; width: 32px; height: 32px; display: grid; place-items: center; color: var(--forest); background: #eaf4e5; border-radius: 50%; transition: transform .2s; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { padding: 0 45px 22px 0; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.cta-band { padding: 64px 0; color: #fff; background: linear-gradient(120deg, var(--forest-dark), var(--forest)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 700px; color: #fff; }
.cta-band p { margin: 12px 0 0; color: #dbe9df; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 56px; }
.contact-panel { padding: 38px; color: #fff; background: var(--forest-dark); border-radius: var(--radius-lg); }
.contact-panel h2, .contact-panel h3 { color: #fff; }
.contact-panel .lead { color: #d4e4d8; }
.contact-list { display: grid; gap: 24px; padding: 0; margin: 32px 0; list-style: none; }
.contact-list strong { display: block; color: #bde3a6; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-list a, .contact-list span { display: block; margin-top: 4px; }
.hours { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.form-card { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 16px; color: var(--ink); background: #fbfcfa; border: 1px solid #cfd9d1; border-radius: 10px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 4px rgba(16,95,55,.08); }
.field textarea { min-height: 128px; resize: vertical; }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: .76rem; }
.map-frame { height: 420px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.page-hero { position: relative; padding: 112px 0 96px; overflow: hidden; background: var(--cream); }
.page-hero::after { content: ""; position: absolute; width: 460px; height: 460px; right: -140px; top: -220px; border: 70px solid rgba(111,173,67,.1); border-radius: 50%; }
.page-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 24px; color: var(--muted); font-size: .84rem; font-weight: 700; }
.breadcrumbs a { color: var(--forest); }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.7rem); }
.page-hero .lead { max-width: 720px; margin-top: 20px; }
.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.value-card strong { display: block; margin-bottom: 14px; color: var(--earth); font-size: .78rem; letter-spacing: .1em; }
.value-card p { color: var(--muted); }
.service-category { padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.service-category + .service-category { margin-top: 24px; }
.category-head { display: grid; grid-template-columns: .45fr 1.55fr; gap: 40px; margin-bottom: 28px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.category-head p { color: var(--muted); }
.service-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-list-item { padding: 21px; background: var(--cream); border-radius: var(--radius-sm); }
.service-list-item h3 { font-size: 1.03rem; }
.service-list-item p { margin-top: 8px; color: var(--muted); font-size: .85rem; }
.industries { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-pill { padding: 12px 18px; color: var(--forest); background: #eaf4e5; border-radius: 999px; font-size: .84rem; font-weight: 800; }

.site-footer { color: #dce8df; background: #072f1d; }
.footer-main { display: grid; grid-template-columns: 1.35fr .65fr .75fr 1fr; gap: 48px; padding: 72px 0 52px; }
.footer-logo { width: 250px; padding: 12px; background: #fff; border-radius: 10px; }
.footer-about p { max-width: 390px; margin-top: 20px; color: #aac0b1; font-size: .89rem; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #b9cabe; font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { color: #b9cabe; font-size: .88rem; }
.footer-contact p { margin-bottom: 12px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0; color: #8da697; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .topbar { display: none; }
  .nav-wrap { min-height: 76px; }
  .brand-logo { width: 220px; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .nav-links { position: fixed; inset: 76px 0 auto; display: grid; gap: 0; padding: 18px 24px 30px; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 20px 35px rgba(0,0,0,.12); transform: translateY(-130%); visibility: hidden; transition: .25s; }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links > a:not(.btn) { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 18px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 650px; }
  .hero::after { background: linear-gradient(90deg, rgba(248,248,241,.96), rgba(248,248,241,.84) 62%, rgba(248,248,241,.2)); }
  .hero-content { max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .faq-wrap, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .card-grid, .testimonial-grid, .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .footer-main { grid-template-columns: 1.4fr .6fr .8fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 70px 0; }
  h1 { font-size: 2.55rem; }
  h2 { font-size: 2.15rem; }
  .brand-logo { width: 184px; }
  .hero { min-height: 720px; align-items: end; }
  .hero-bg { object-position: 68% center; }
  .hero::after { background: linear-gradient(180deg, rgba(248,248,241,.26) 0%, rgba(248,248,241,.93) 47%, rgba(248,248,241,.99) 100%); }
  .hero-content { padding: 260px 0 72px; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-proof { display: grid; gap: 9px; }
  .trust-strip { margin-top: 0; padding-top: 16px; background: var(--cream); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .media-badge { right: 12px; bottom: -18px; }
  .check-list, .card-grid, .testimonial-grid, .purpose-grid, .process-grid, .metric-row, .service-list-grid, .form-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .image-band { min-height: 680px; }
  .image-band::after { background: rgba(10,69,40,.83); }
  .cta-inner { display: grid; }
  .contact-panel, .form-card, .service-category { padding: 28px 22px; }
  .field.full { grid-column: auto; }
  .category-head { grid-template-columns: 1fr; gap: 12px; }
  .page-hero { padding: 78px 0 72px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-about, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
/* @vn-deploy:1785745387044 */
