:root {
  --primary: #a9c554;
  --secondary: #d1da6e;
  --olive: #789348;
  --deep: #1f2b20;
  --ink: #283128;
  --muted: #687066;
  --cream: #fbfaf2;
  --white: #ffffff;
  --line: #e5ead6;
  --gold: #d7a84b;
  --shadow: 0 18px 50px rgba(31, 43, 32, 0.12);
}

* { box-sizing: border-box; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(251, 250, 242, 0.94);
  border-bottom: 1px solid rgba(120, 147, 72, 0.16);
  backdrop-filter: blur(14px);
}

.brand img { width: min(280px, 48vw); height: auto; }
.site-nav { display: flex; justify-content: center; gap: 26px; font-weight: 600; font-size: 0.95rem; }
.site-nav a { color: var(--muted); }
.site-nav a:hover, .site-nav a.active { color: var(--olive); }
.header-cta { padding: 11px 18px; border-radius: 999px; background: var(--deep); color: var(--white); font-size: 0.9rem; font-weight: 600; white-space: nowrap; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--deep); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 76px) clamp(34px, 5vw, 64px);
  background: linear-gradient(135deg, #fbfaf2 0%, #f2f5df 100%);
}

.hero-copy h1, .page-hero h1 {
  margin: 8px 0 18px;
  color: var(--deep);
  font-size: clamp(2.2rem, 4.7vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.hero-copy p, .page-hero p { max-width: 660px; color: var(--muted); font-size: 1.05rem; }
.eyebrow { margin: 0; color: var(--olive); font-weight: 700; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.08em; }
.hero-media img, .image-panel img, .services-hero img, .contact-visual img {
  width: 100%;
  min-height: 390px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 20px; border-radius: 6px; border: 0; font-weight: 700; cursor: pointer; font-family: inherit; }
.btn-primary { background: var(--primary); color: var(--deep); }
.btn-primary:hover { background: var(--secondary); }
.btn-secondary { border: 1px solid var(--olive); color: var(--deep); background: transparent; }
.btn-light { background: var(--white); color: var(--deep); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.72); color: var(--deep); font-weight: 600; font-size: 0.88rem; }

.section { padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px); }
.intro-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 36px; align-items: start; background: var(--white); }
.intro-grid h2, .section-heading h2, .content-panel h2, .contact-band h2 {
  margin: 8px 0 12px;
  color: var(--deep);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.18;
}
.intro-grid p, .section-heading p, .content-panel p, .contact-band p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.content-panel { max-width: 650px; }
.feature-list { display: grid; gap: 14px; margin-top: 24px; }
.feature-list div { border-left: 4px solid var(--primary); padding: 4px 0 4px 16px; }
.feature-list strong, .feature-list span { display: block; }
.feature-list span { color: var(--muted); font-size: 0.95rem; }

.tinted { background: #f1f5dc; }
.section-heading { max-width: 780px; margin-bottom: 32px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.service-grid.full { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.service-card, .value-grid div, .process-grid div, blockquote, .contact-card, .contact-form, .map-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(31, 43, 32, 0.06);
}
.service-card span, .process-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--deep);
  color: var(--secondary);
  font-weight: 700;
}
.service-card h3, .process-grid h3, .value-grid h3 { margin: 16px 0 8px; color: var(--deep); font-size: 1.05rem; line-height: 1.35; }
.service-card p, .process-grid p, .value-grid p, blockquote p { margin: 0; color: var(--muted); font-size: 0.94rem; }
.center-action { text-align: center; margin-top: 30px; }

.process-grid, .testimonial-grid, .value-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
blockquote { margin: 0; }
blockquote p { font-size: 1rem; color: var(--ink); }
cite { display: block; margin-top: 16px; color: var(--olive); font-style: normal; font-weight: 700; }

.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: 700; color: var(--deep); }
details p { color: var(--muted); margin-bottom: 0; }

.contact-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, var(--deep), #3d4d2d);
  color: var(--white);
}
.contact-band h2, .contact-band p { color: var(--white); }
.contact-band .eyebrow { color: var(--secondary); }

.page-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: clamp(50px, 7vw, 86px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, #fbfaf2 0%, #eef3d2 100%);
}
.page-hero.compact { display: block; }
.page-hero.compact div { max-width: 900px; }
.stats-band { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; background: var(--deep); color: var(--white); }
.stats-band div { border-left: 4px solid var(--primary); padding-left: 18px; }
.stats-band strong { display: block; font-size: 2rem; color: var(--secondary); }
.stats-band span { color: #e7edd4; }

.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: start; }
.contact-card h2, .contact-form h2, .map-card h2 { margin-top: 0; color: var(--deep); }
.contact-card p { display: grid; gap: 4px; color: var(--muted); }
.contact-card strong { color: var(--deep); }
.contact-form { display: grid; gap: 15px; }
.contact-form label { display: grid; gap: 7px; font-weight: 600; color: var(--deep); }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
  background: #fdfdf8;
}
.map-section { padding-top: 0; }
.map-card { background: linear-gradient(135deg, #ffffff, #f4f6e7); }
.map-card a { color: var(--olive); font-weight: 700; }
.contact-visual-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding-top: 0;
}
.contact-visual-copy h2 {
  margin: 8px 0 12px;
  color: var(--deep);
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1.18;
}
.contact-visual-copy p { color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 76px) 24px;
  background: #121a13;
  color: #dfe8d1;
}
.site-footer img { width: 250px; filter: brightness(1.2); }
.site-footer h3 { color: var(--secondary); margin: 0 0 10px; font-size: 1rem; }
.site-footer p { margin: 10px 0 0; color: #dfe8d1; font-size: 0.95rem; }
@media (max-width: 1100px) {
  .service-grid, .service-grid.full, .process-grid, .value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .site-header { grid-template-columns: auto auto; }
  .brand img { width: min(230px, 58vw); }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
  }
  .site-nav.open { display: flex; }
  .header-cta { display: none; }
  .hero, .split, .intro-grid, .page-hero, .contact-layout, .contact-visual-section { grid-template-columns: 1fr; }
  .hero-media img, .image-panel img, .services-hero img, .contact-visual img { min-height: 280px; }
  .testimonial-grid, .stats-band { grid-template-columns: 1fr; }
  .contact-band { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-copy h1, .page-hero h1 { font-size: 2.05rem; }
  .service-grid, .service-grid.full, .process-grid, .value-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
}
/* @vn-deploy:1781891603965 */
