:root {
  --green: #096438;
  --green-dark: #063f26;
  --gold: #f8b621;
  --leaf: #8bc043;
  --ink: #143327;
  --muted: #61756b;
  --line: #dce8e1;
  --soft: #f5f8f2;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(9, 100, 56, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Nunito", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img { width: min(260px, 48vw); height: auto; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--green);
  background: #eef7f1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
}

.header-cta,
.btn.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(9, 100, 56, 0.18);
}

.btn.secondary {
  border-color: var(--green);
  color: var(--green);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  min-height: 680px;
  align-items: stretch;
  background: linear-gradient(120deg, #f8fbf4 0%, #ffffff 54%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(22px, 5vw, 72px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.15rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--green-dark);
}

.hero p,
.page-hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-media {
  min-height: 560px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  padding: 9px 12px;
  background: #fff7df;
  border: 1px solid #f7df98;
  border-radius: 6px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.92rem;
}

.section {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.split,
.contact-grid,
.map-section,
.services-hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 { color: var(--green-dark); line-height: 1.2; }
p { color: var(--muted); }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metrics div,
.service-card,
.value-grid article,
.testimonial-grid figure,
.contact-details,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metrics div { padding: 24px; }
.metrics strong { display: block; font-size: 2.1rem; color: var(--green); line-height: 1; }
.metrics span { color: var(--muted); font-weight: 700; }

.image-panel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img,
.map-section img,
.services-hero img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--leaf));
}

.text-link {
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.services-preview,
.values,
.testimonials {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid,
.value-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.value-grid article,
.testimonial-grid figure {
  padding: 26px;
}

.service-card span {
  display: inline-flex;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 18px;
}

.center-button { margin: 28px auto 0; }

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.process-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px;
  background: #f7fbf6;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}

.process-list strong { color: var(--green); }
.process-list span { color: var(--muted); }

.faq-contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

.contact-panel h2,
.contact-panel p { color: var(--white); }
.contact-panel .btn { background: var(--gold); color: var(--green-dark); }

.page-hero {
  padding: clamp(70px, 9vw, 122px) clamp(20px, 5vw, 72px);
  background: linear-gradient(120deg, #f4faf5, #fff8e8);
}

.quote-band {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.quote-band h2 {
  max-width: 920px;
  color: var(--white);
}

.quote-band .btn { background: var(--gold); color: var(--green-dark); }

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-list article {
  padding: 24px;
  border-top: 4px solid var(--gold);
  background: #fbfdf9;
  border-radius: 8px;
}

.service-list h2 { font-size: 1.28rem; }

.contact-details,
.contact-form {
  padding: clamp(24px, 4vw, 38px);
}

.contact-details div {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details strong { color: var(--green); }
.contact-details a { color: var(--green-dark); font-weight: 900; }

.contact-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfdfb;
}

.map-section {
  background: var(--soft);
}

.map-section img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding: 52px clamp(20px, 5vw, 72px);
  background: #062f1f;
  color: var(--white);
}

.site-footer img { width: 230px; background: var(--white); padding: 8px; border-radius: 6px; }
.site-footer p,
.site-footer a { color: #dce8e1; }
.site-footer h3 { color: var(--gold); margin-top: 0; }
.powered { margin-top: 22px; font-weight: 800; }

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle { display: block; justify-self: end; }
  .header-cta { display: none; }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .site-nav.is-open { display: flex; }

  .hero,
  .intro-grid,
  .split,
  .faq-contact,
  .contact-grid,
  .map-section,
  .services-hero {
    grid-template-columns: 1fr;
  }

  .hero { min-height: unset; }
  .hero-media { min-height: 360px; order: -1; }

  .service-grid,
  .testimonial-grid,
  .value-grid,
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .site-header { padding: 12px 18px; }
  .brand img { width: 210px; }
  .hero-copy { padding: 38px 20px 52px; }
  .hero-media { min-height: 285px; }
  .hero-actions .btn { width: 100%; }

  .metrics,
  .service-grid,
  .testimonial-grid,
  .value-grid,
  .service-list,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .process-list div { grid-template-columns: 1fr; }
  .site-footer img { width: 210px; }
}
/* @vn-deploy:1777833286540 */
