:root {
  --green: #94bd43;
  --green-dark: #5f8428;
  --blue: #2e7dff;
  --ink: #363233;
  --muted: #686b70;
  --line: #e3e8df;
  --soft: #f5f7fa;
  --cream: #fbfaf6;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(42, 48, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Montserrat, 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: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 220px;
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.93rem;
  font-weight: 700;
}

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

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

.site-nav .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-dark);
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(42px, 7vw, 90px) clamp(18px, 4vw, 64px) 32px;
  background: linear-gradient(115deg, var(--cream) 0%, var(--white) 58%, #edf6df 100%);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(2.15rem, 4.4vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
}

.btn.primary {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: 0 12px 26px rgba(95, 132, 40, 0.22);
}

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

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #4e554c;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-media img,
.page-hero img,
.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
}

.hero-media::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 34%;
  border-right: 8px solid var(--green);
  border-bottom: 8px solid var(--blue);
  border-radius: var(--radius);
  pointer-events: none;
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(18px, 4vw, 64px);
}

.intro-grid,
.two-column {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.section h2,
.content-panel h2,
.contact-details h2,
.quote-form h2 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

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

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

.reverse .content-panel {
  order: 1;
}

.reverse .image-panel {
  order: 2;
}

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

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 30px;
  color: #464a48;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #e9f4d7;
}

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

.soft-band,
.values-band {
  background: var(--soft);
}

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

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

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

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

.service-card,
.card-grid article,
.step,
blockquote,
.detail-card,
.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(44, 50, 43, 0.06);
}

.service-card,
.card-grid article,
.step,
blockquote {
  padding: 24px;
}

.service-card h3,
.card-grid h3,
.step h3,
.detail-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

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

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

.step span,
.service-list span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-weight: 900;
}

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

blockquote {
  margin: 0;
}

blockquote p {
  margin-top: 0;
  color: #4a4d4b;
}

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

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

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

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

summary {
  cursor: pointer;
  font-weight: 850;
}

details p {
  margin-bottom: 0;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #4b5940);
}

.contact-strip .eyebrow,
.contact-strip p {
  color: #d8edc2;
}

.contact-strip h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 7vw, 90px) clamp(18px, 4vw, 64px);
  background: linear-gradient(115deg, var(--cream), #eef6e3);
}

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

.service-list article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-list h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.detail-card {
  padding: 18px;
  margin-top: 12px;
}

.detail-card a {
  color: var(--green-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 34px);
}

.quote-form label {
  font-weight: 800;
  color: #454143;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8dfd3;
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}

.quote-form textarea {
  resize: vertical;
}

.map-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
  background: var(--soft);
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(rgba(54, 50, 51, 0.78), rgba(54, 50, 51, 0.78)),
    url("../images/generated-contact-image.png") center/cover;
}

.map-card span {
  color: #d8edc2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.map-card strong {
  max-width: 560px;
  margin-top: 12px;
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.site-footer {
  padding: 52px clamp(18px, 4vw, 64px) 22px;
  color: #e9eee6;
  background: #302d2e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1.2fr 0.8fr;
  gap: 26px;
}

.footer-logo {
  width: 210px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 8px;
  color: #cfd6cc;
}

.site-footer a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cfd6cc;
  font-size: 0.92rem;
}

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

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

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

  .hero,
  .page-hero,
  .split,
  .intro-grid,
  .two-column,
  .contact-layout,
  .map-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .card-grid.three,
  .card-grid.four,
  .step-grid,
  .testimonial-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .brand img {
    width: 170px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .hero-media img,
  .page-hero img,
  .image-panel img {
    min-height: 300px;
  }

  .card-grid.three,
  .card-grid.four,
  .step-grid,
  .testimonial-grid,
  .service-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
/* @vn-deploy:1780322375210 */
