:root {
  --leaf: #95bd2f;
  --forest: #2f5d35;
  --deep: #193d28;
  --plum: #9f3d91;
  --rose: #cf4c72;
  --sun: #f4a83d;
  --cream: #fbfbf6;
  --mist: #eef4ec;
  --ink: #1d271f;
  --muted: #667066;
  --line: #dfe8dc;
  --shadow: 0 24px 70px rgba(25, 61, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(251, 251, 246, 0.93);
  border-bottom: 1px solid rgba(47, 93, 53, 0.12);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--deep);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

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

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

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

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(44px, 8vw, 92px) clamp(18px, 5vw, 72px) 40px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf), var(--sun), var(--plum));
  border-radius: 999px;
}

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

h1 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.03;
}

h2 {
  color: var(--deep);
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

h3 {
  color: var(--deep);
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 10px;
}

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

.hero p,
.page-hero p {
  font-size: 1.08rem;
  max-width: 720px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  box-shadow: 0 16px 34px rgba(47, 93, 53, 0.22);
}

.btn-secondary {
  color: var(--deep);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(149, 189, 47, 0.22), rgba(159, 61, 145, 0.13));
  border-radius: 8px;
}

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

.hero-media img {
  min-height: 460px;
  max-height: 620px;
}

section {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.image-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.image-text img {
  aspect-ratio: 16 / 10;
}

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

.stats div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stats strong {
  display: block;
  color: var(--forest);
  font-size: 1.7rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

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

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

.card,
.testimonial-grid blockquote,
.service-list article,
.contact-panel,
.contact-form,
.map-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(25, 61, 40, 0.07);
}

.card,
.service-list article {
  padding: 26px;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before,
.service-list article::before {
  content: "";
  display: block;
  width: 44px;
  height: 4px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--leaf), var(--plum));
  border-radius: 999px;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 2px solid var(--leaf);
}

.process-band,
.values,
.faq,
.services-preview {
  background: var(--mist);
}

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

.process-grid div {
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--deep), var(--forest));
  border-radius: 8px;
}

.process-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--sun);
  font-size: 0.88rem;
  font-weight: 900;
}

.process-grid h3,
.process-grid p {
  color: #fff;
}

.process-grid p {
  opacity: 0.82;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 26px;
}

.testimonial-grid p {
  color: var(--ink);
  font-weight: 650;
}

cite {
  display: block;
  color: var(--forest);
  font-style: normal;
  font-weight: 800;
}

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

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

summary {
  color: var(--deep);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, var(--deep), var(--forest));
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: #fff;
}

.cta-band .eyebrow::before {
  background: linear-gradient(90deg, var(--sun), var(--plum));
}

.page-hero {
  padding-top: clamp(54px, 8vw, 98px);
  background: linear-gradient(135deg, #fff, var(--mist));
}

.page-hero h1 {
  max-width: 930px;
}

.page-hero.with-image {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.page-hero.with-image img {
  aspect-ratio: 16 / 10;
}

.wide-image {
  margin-top: 10px;
  aspect-ratio: 18 / 8;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1fr);
  gap: 22px;
}

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

.contact-panel a,
.contact-panel p,
.site-footer a,
.site-footer p {
  display: grid;
  gap: 4px;
}

.contact-panel strong {
  color: var(--deep);
}

.contact-panel span {
  color: var(--muted);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 750;
}

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

input:focus,
textarea:focus {
  outline: 3px solid rgba(149, 189, 47, 0.25);
  border-color: var(--forest);
}

.map-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 clamp(18px, 5vw, 72px) clamp(52px, 8vw, 96px);
  padding: clamp(24px, 4vw, 38px);
}

.map-card a {
  color: #fff;
  background: var(--forest);
  border-radius: 6px;
  padding: 14px 20px;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--deep);
}

.site-footer img {
  width: 250px;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
}

.site-footer h3 {
  color: #fff;
}

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

@media (max-width: 980px) {
  .hero,
  .image-text,
  .page-hero.with-image,
  .contact-layout,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-media img {
    min-height: 320px;
  }

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

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 18px;
  }

  .brand img {
    width: 235px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 6px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 3.25rem);
  }

  .cards,
  .testimonial-grid,
  .process-grid,
  .service-list,
  .stats,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .map-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .wide-image {
    aspect-ratio: 4 / 3;
  }
}
/* @vn-deploy:1780843877440 */
