:root {
  --green-900: #173d19;
  --green-800: #255f20;
  --green-700: #3a852e;
  --green-500: #69b15b;
  --leaf-100: #edf7ea;
  --grain-100: #fbf8ef;
  --ink: #192118;
  --muted: #5c6658;
  --line: #dfe8da;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(32, 58, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(20px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--green-900);
  font-weight: 700;
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--leaf-100);
  color: var(--green-700);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-800);
  border-radius: 6px;
  padding: 9px 12px;
  font: inherit;
  font-weight: 800;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(48px, 8vw, 86px) clamp(20px, 5vw, 70px);
  background: linear-gradient(120deg, var(--grain-100), #f4fbf2);
}

.hero-copy,
.section > div,
.page-hero {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  color: var(--green-700);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 10px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.08;
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--green-900);
}

h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.65rem);
  line-height: 1.16;
  color: var(--green-900);
  margin-bottom: 14px;
}

h3 {
  color: var(--green-800);
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
}

.hero-copy p,
.page-hero p {
  font-size: clamp(1rem, 1.45vw, 1.17rem);
  max-width: 680px;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 14px 28px rgba(58, 133, 46, 0.22);
}

.button.secondary {
  color: var(--green-800);
  background: var(--white);
  border-color: var(--line);
}

.hero-media img,
.rounded-media {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.hero-media img {
  aspect-ratio: 1.22 / 1;
}

.rounded-media {
  aspect-ratio: 1.25 / 1;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 70px);
}

.split,
.process,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(30px, 5vw, 72px);
}

.muted {
  background: var(--leaf-100);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.service-grid.wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article,
.values-grid article,
blockquote,
.contact-panel,
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(35, 77, 31, 0.08);
}

.service-grid article {
  min-height: 190px;
}

.center-action {
  margin-top: 28px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-500);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  margin: 0;
}

blockquote p {
  color: var(--ink);
}

cite {
  display: block;
  color: var(--green-700);
  font-weight: 900;
  font-style: normal;
  margin-top: 14px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

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

details p {
  margin: 12px 0 0;
}

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

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.page-hero {
  padding: clamp(58px, 8vw, 100px) clamp(20px, 5vw, 70px);
  background: linear-gradient(120deg, var(--grain-100), var(--leaf-100));
}

.service-hero {
  background-image: linear-gradient(120deg, rgba(251, 248, 239, 0.94), rgba(237, 247, 234, 0.92)), url("../images/generated-services-image.png");
  background-size: cover;
  background-position: center;
}

.contact-hero {
  background-image: linear-gradient(120deg, rgba(251, 248, 239, 0.94), rgba(237, 247, 234, 0.92)), url("../images/generated-process-image.png");
  background-size: cover;
  background-position: center;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-panel a {
  color: var(--green-700);
  font-weight: 800;
}

.map-panel iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 6px;
}

.map-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-700);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 42px clamp(20px, 5vw, 70px);
  background: #101c10;
  color: var(--white);
}

.site-footer img {
  width: min(320px, 78vw);
  background: var(--white);
  border-radius: 6px;
  padding: 10px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  display: block;
  text-decoration: none;
  margin: 8px 0;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .process,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .contact-band,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    border: 1px solid var(--line);
  }

  .service-grid,
  .service-grid.wide,
  .testimonial-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img,
  .rounded-media {
    aspect-ratio: 1 / 0.82;
  }

  .button {
    width: 100%;
  }
}
/* @vn-deploy:1781904273834 */
