:root {
  --green: #34663c;
  --green-deep: #173f25;
  --green-ink: #0f2c1a;
  --green-soft: #eef6ef;
  --gold: #dc9e39;
  --gold-soft: #fff5df;
  --ink: #252725;
  --muted: #626a61;
  --line: #dfe8df;
  --paper: #fffdf7;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(23, 63, 37, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 60px);
  background: rgba(255, 253, 247, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
}

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

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  min-height: calc(100vh - 78px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.hero-copy,
.page-hero,
.section-heading {
  max-width: 780px;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-deep);
  line-height: 1.12;
}

h1 {
  font-size: clamp(36px, 4.4vw, 58px);
  max-width: 780px;
}

h2 {
  font-size: clamp(27px, 3vw, 42px);
}

h3 {
  font-size: 21px;
}

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

.hero-copy p:not(.eyebrow),
.page-hero p {
  max-width: 680px;
  font-size: clamp(17px, 1.4vw, 20px);
}

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

.center-action {
  justify-content: center;
}

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

.btn.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(52, 102, 60, 0.22);
}

.btn.primary:hover {
  background: var(--green-deep);
}

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

.btn.secondary:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

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

.hero-media img {
  aspect-ratio: 16 / 10;
}

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

.page-hero {
  padding: clamp(58px, 8vw, 106px) clamp(18px, 5vw, 72px) clamp(30px, 5vw, 64px);
}

.intro-grid,
.split,
.feature-band,
.contact-strip,
.contact-layout {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

.section-image {
  aspect-ratio: 5 / 4;
}

.muted {
  background: var(--green-soft);
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.cards.three,
.service-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(23, 63, 37, 0.07);
}

.card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
}

.feature-band {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
}

.feature-band img {
  aspect-ratio: 16 / 11;
}

.dark-band {
  background: var(--green-ink);
}

.dark-band h2,
.dark-band .eyebrow {
  color: var(--white);
}

.dark-band p,
.dark-band li {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  position: relative;
  padding: 11px 0 11px 30px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.check-list.light li {
  border-color: rgba(255, 255, 255, 0.18);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.testimonials article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(23, 63, 37, 0.07);
}

.testimonials p {
  margin-top: 0;
}

.testimonials strong {
  color: var(--green-deep);
}

.faq-section {
  background: var(--paper);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

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

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

.contact-strip {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  background: var(--gold-soft);
}

.contact-card,
.contact-panel,
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 12px;
  font-weight: 900;
}

.contact-card a,
.contact-lines a,
.site-footer a {
  overflow-wrap: anywhere;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-panel {
  background: var(--green-soft);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-lines p {
  margin: 0;
}

.contact-lines strong {
  display: block;
  color: var(--green-deep);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 900;
}

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

textarea {
  resize: vertical;
}

.process {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 10px;
  color: var(--muted);
}

.cta {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.cta .btn {
  margin-top: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(160px, 0.45fr) minmax(240px, 0.7fr);
  gap: 32px;
  align-items: start;
  padding: 38px clamp(18px, 5vw, 72px);
  background: var(--green-deep);
  color: var(--white);
}

.site-footer img {
  width: min(320px, 78vw);
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 17px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 100% 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .hero,
  .intro-grid,
  .split,
  .feature-band,
  .contact-strip,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .cards.three,
  .service-preview,
  .service-grid,
  .testimonials,
  .steps,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 230px;
  }

  h1 {
    font-size: 34px;
  }

  .hero,
  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .card,
  .contact-card,
  .contact-panel,
  .contact-form,
  .testimonials article {
    padding: 20px;
  }
}
/* @vn-deploy:1781894216487 */
