:root {
  --green: #5dbb49;
  --green-dark: #2e7d32;
  --green-soft: #eef8ec;
  --ink: #2f2d2f;
  --muted: #667166;
  --line: #dfe8dc;
  --surface: #f7faf6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(35, 60, 33, 0.12);
}

* {
  box-sizing: border-box;
}

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

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;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 232, 220, 0.9);
  backdrop-filter: blur(16px);
}

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

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #485247;
  font-weight: 700;
  font-size: 0.94rem;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 10px 18px;
  background: var(--green);
  color: var(--white);
}

.btn {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(93, 187, 73, 0.22);
}

.btn-secondary {
  background: var(--green-soft);
  color: var(--green-dark);
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(46px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at top left, rgba(93, 187, 73, 0.16), transparent 32%),
    linear-gradient(180deg, #fbfdfb 0%, #f4faf1 100%);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin: 12px 0 18px;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.hero-media img,
.image-frame img,
.image-band > img,
.contact-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  min-height: 510px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 6vw, 88px);
  align-items: start;
}

h2 {
  margin: 10px 0 16px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.15;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.image-band {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.image-band > img {
  position: absolute;
  inset: 0;
  opacity: 0.82;
}

.band-card {
  position: relative;
  max-width: 560px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

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

.service-card,
.process-step,
.value-grid > div,
blockquote,
.contact-form,
.contact-details {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.center-action {
  margin-top: 30px;
  text-align: center;
}

.process-section,
.faq-section,
.values {
  background: var(--surface);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 1.7rem;
  font-weight: 900;
}

blockquote {
  margin: 0;
}

blockquote p {
  color: var(--ink);
  font-size: 1.02rem;
}

cite {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 900;
}

.faq-list {
  max-width: 920px;
}

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

details:last-child {
  border-bottom: 1px solid var(--line);
}

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

.contact-preview,
.cta-panel,
.statement {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--green-dark);
  color: var(--white);
}

.contact-preview p,
.cta-panel p,
.statement p,
.contact-preview .eyebrow,
.cta-panel .eyebrow,
.statement .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: clamp(58px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(247, 250, 246, 0.9), rgba(247, 250, 246, 0.9)),
    url("../images/generated-hero-image.png") center/cover;
}

.service-hero {
  background:
    linear-gradient(rgba(247, 250, 246, 0.88), rgba(247, 250, 246, 0.88)),
    url("../images/generated-services-image.png") center/cover;
}

.contact-hero {
  background:
    linear-gradient(rgba(247, 250, 246, 0.88), rgba(247, 250, 246, 0.88)),
    url("../images/generated-contact-image.png") center/cover;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.image-frame {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.statement {
  flex-direction: column;
  text-align: center;
}

.statement h2 {
  max-width: 880px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 18px;
}

.contact-card img {
  min-height: 350px;
  border-radius: 8px;
}

.contact-details a,
.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-form {
  position: sticky;
  top: 108px;
}

label {
  display: block;
  margin: 14px 0 6px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form button {
  width: 100%;
  margin-top: 18px;
}

.map-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 72px);
  background: #f1f6ee;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(260px, 72vw);
  margin-bottom: 14px;
}

.site-footer h3 {
  color: var(--green-dark);
}

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

  .hero-media,
  .image-frame {
    min-height: 360px;
  }

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

  .contact-form {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    order: 4;
    margin-left: 0;
    padding-top: 10px;
  }

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

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .hero-media,
  .image-frame,
  .contact-card img {
    min-height: 280px;
  }

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

  .contact-preview,
  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .image-band {
    min-height: 520px;
  }
}
/* @vn-deploy:1779817578795 */
