:root {
  --forest: #274c2a;
  --forest-dark: #17351d;
  --leaf: #78a62f;
  --leaf-light: #a7ce3a;
  --gold: #efb94f;
  --gold-dark: #d9901f;
  --blue: #2e7dff;
  --ink: #292728;
  --muted: #667065;
  --cream: #fffaf0;
  --sand: #f4ecd9;
  --white: #ffffff;
  --line: rgba(39, 76, 42, 0.13);
  --shadow-sm: 0 8px 30px rgba(35, 52, 33, 0.08);
  --shadow-lg: 0 24px 70px rgba(30, 52, 29, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-compact { padding: 72px 0; }
.section-soft { background: #f7f9f4; }
.section-cream { background: var(--cream); }
.skip-link { position: fixed; top: -80px; left: 18px; z-index: 1000; padding: 10px 16px; background: var(--forest); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 18px; }

.topbar { background: var(--forest-dark); color: rgba(255,255,255,.86); font-size: .78rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; gap: 22px; align-items: center; }
.topbar a:hover { color: var(--gold); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { flex: 0 0 auto; }
.brand img { width: 246px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 31px; }
.nav-link { position: relative; font-size: .88rem; font-weight: 700; color: #3f443e; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--gold); transition: right .25s ease; }
.nav-link:hover, .nav-link.active { color: var(--forest); }
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.nav-cta { padding: 12px 18px; background: var(--forest); color: #fff; border-radius: 999px; font-size: .8rem; font-weight: 800; box-shadow: 0 8px 22px rgba(39,76,42,.22); }
.nav-cta:hover { background: var(--forest-dark); transform: translateY(-1px); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 21px; height: 2px; background: var(--forest); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 14px; color: var(--forest); font-weight: 800; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
h1, h2, h3, h4 { margin: 0; color: var(--forest-dark); line-height: 1.17; letter-spacing: -.025em; }
h1 { font-size: clamp(2.45rem, 5vw, 4.7rem); }
h2 { font-size: clamp(2rem, 3.7vw, 3.25rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 18px; }
.lead { color: var(--muted); font-size: 1.06rem; line-height: 1.85; }
.section-heading { max-width: 730px; margin-bottom: 46px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section-heading p { margin-top: 18px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 9px; min-height: 50px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; font-size: .84rem; transition: .2s ease; }
.btn-primary { background: var(--forest); color: #fff; box-shadow: 0 10px 30px rgba(39,76,42,.23); }
.btn-primary:hover { background: var(--forest-dark); transform: translateY(-2px); }
.btn-secondary { background: #fff; color: var(--forest); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--leaf); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--forest-dark); }
.btn-gold:hover { background: #f6c765; transform: translateY(-2px); }
.text-link { color: var(--forest); font-weight: 800; font-size: .85rem; display: inline-flex; align-items: center; gap: 7px; }
.text-link:hover { color: var(--gold-dark); }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; background: #f4ead6; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(255,250,240,.98) 0%, rgba(255,250,240,.93) 38%, rgba(255,250,240,.26) 66%, rgba(255,250,240,.02) 100%); }
.hero-content { max-width: 680px; padding: 92px 0 100px; }
.hero h1 { max-width: 650px; }
.hero h1 span { color: var(--gold-dark); }
.hero .lead { max-width: 610px; margin: 23px 0 29px; color: #4f5a4f; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 33px; color: var(--forest); font-size: .78rem; font-weight: 800; }
.trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.trust-strip span::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; background: rgba(120,166,47,.15); color: var(--forest); border-radius: 50%; }
.hero-stats { margin-top: -37px; position: relative; z-index: 3; }
.stats-card { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow: hidden; }
.stat { min-height: 115px; padding: 25px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.stat:last-child { border: 0; }
.stat strong { color: var(--forest); font-size: 1.18rem; line-height: 1.25; }
.stat span { color: var(--muted); font-size: .74rem; margin-top: 6px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.image-frame { position: relative; }
.image-frame::before { content: ""; position: absolute; width: 58%; height: 68%; left: -18px; bottom: -18px; border-radius: 28px; background: var(--gold); z-index: 0; }
.image-frame img { position: relative; z-index: 1; width: 100%; min-height: 460px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.image-badge { position: absolute; z-index: 2; right: -20px; bottom: 30px; max-width: 210px; padding: 20px; color: #fff; background: var(--forest); border-radius: 18px; box-shadow: var(--shadow-lg); }
.image-badge strong { display: block; color: var(--gold); font-size: 1.15rem; }
.image-badge span { font-size: .75rem; line-height: 1.5; }
.check-list { list-style: none; padding: 0; margin: 26px 0 29px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.check-list li { position: relative; padding-left: 27px; color: #485248; font-weight: 700; font-size: .82rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--leaf); font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 260px; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(35,52,33,.13); }
.service-card::after { content: ""; position: absolute; right: -34px; bottom: -38px; width: 110px; height: 110px; background: rgba(239,185,79,.13); border-radius: 50%; }
.service-number { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 23px; border-radius: 14px; color: var(--forest); background: rgba(120,166,47,.14); font-size: .75rem; font-weight: 900; }
.service-card p { margin: 12px 0 18px; color: var(--muted); font-size: .86rem; }
.services-banner { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; border-radius: var(--radius-lg); background: var(--forest-dark); color: #fff; }
.services-banner img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; }
.services-banner-content { padding: 58px; display: flex; flex-direction: column; justify-content: center; }
.services-banner h2, .services-banner h3 { color: #fff; }
.services-banner p { color: rgba(255,255,255,.72); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-item { position: relative; padding-top: 10px; }
.process-item:not(:last-child)::after { content: ""; position: absolute; top: 31px; left: 64px; right: -11px; height: 1px; background: repeating-linear-gradient(90deg, rgba(39,76,42,.35) 0 5px, transparent 5px 10px); }
.process-step { position: relative; z-index: 1; width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; color: var(--forest-dark); background: var(--gold); font-weight: 900; }
.process-item p { color: var(--muted); font-size: .83rem; margin-top: 10px; }

.feature-band { position: relative; padding: 90px 0; color: #fff; background: var(--forest-dark); overflow: hidden; }
.feature-band::before { content: ""; position: absolute; inset: 0; opacity: .2; background: radial-gradient(circle at 80% 20%, var(--leaf), transparent 30%), radial-gradient(circle at 10% 90%, var(--gold), transparent 30%); }
.feature-band .container { position: relative; }
.feature-band h2 { color: #fff; max-width: 760px; }
.feature-band .eyebrow { color: var(--gold); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.feature { padding: 24px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.06); border-radius: 17px; }
.feature strong { display: block; color: #fff; font-size: .92rem; }
.feature span { display: block; margin-top: 7px; color: rgba(255,255,255,.67); font-size: .76rem; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial { padding: 30px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.quote-mark { color: var(--gold); font: 700 3.3rem/1 Georgia, serif; height: 35px; }
.testimonial blockquote { margin: 17px 0 24px; color: #536052; font-size: .88rem; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; color: var(--forest); background: rgba(120,166,47,.15); font-weight: 900; font-size: .8rem; }
.testimonial cite { font-style: normal; color: var(--forest-dark); font-size: .82rem; font-weight: 800; }
.testimonial cite span { display: block; color: var(--muted); font-size: .68rem; font-weight: 500; }

.faq-list { max-width: 890px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; padding: 22px 46px 22px 0; color: var(--forest-dark); font-weight: 800; font-size: .94rem; position: relative; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; color: var(--forest); background: rgba(120,166,47,.13); font-size: 1.2rem; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 55px 22px 0; color: var(--muted); font-size: .88rem; }

.cta-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 54px 58px; color: #fff; background: var(--forest); border-radius: var(--radius-lg); }
.cta-panel::after { content: ""; position: absolute; right: -80px; top: -100px; width: 280px; height: 280px; border: 55px solid rgba(239,185,79,.13); border-radius: 50%; }
.cta-panel h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-panel p { color: rgba(255,255,255,.72); margin: 10px 0 0; }
.cta-panel .btn { position: relative; z-index: 1; }

.page-hero { position: relative; padding: 104px 0 92px; background: linear-gradient(125deg, var(--forest-dark), var(--forest)); color: #fff; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 28%, rgba(239,185,79,.24), transparent 27%), radial-gradient(circle at 96% 90%, rgba(120,166,47,.27), transparent 25%); }
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; font-size: clamp(2.35rem, 4.7vw, 4rem); max-width: 820px; }
.page-hero p { max-width: 690px; color: rgba(255,255,255,.73); margin: 20px 0 0; }
.breadcrumbs { display: flex; gap: 9px; margin-bottom: 20px; color: rgba(255,255,255,.62); font-size: .75rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span:last-child { color: var(--gold); }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); }
.value-card .value-icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 20px; border-radius: 50%; color: var(--forest); background: var(--sand); font-weight: 900; }
.value-card p { color: var(--muted); font-size: .84rem; margin: 11px 0 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mission-card { padding: 39px; border-radius: var(--radius-md); background: var(--forest); color: #fff; }
.mission-card:nth-child(2) { background: var(--gold); color: var(--forest-dark); }
.mission-card h3 { color: inherit; font-size: 1.45rem; }
.mission-card p { margin: 13px 0 0; color: inherit; opacity: .78; font-size: .9rem; }

.service-category { display: grid; grid-template-columns: .6fr 1.4fr; gap: 42px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.service-category:last-child { border: 0; }
.service-category h2 { font-size: 1.65rem; }
.service-category p { color: var(--muted); font-size: .84rem; margin-top: 12px; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-list div { padding: 15px 17px 15px 41px; position: relative; background: #fff; border: 1px solid var(--line); border-radius: 12px; color: #485248; font-size: .8rem; font-weight: 700; }
.service-list div::before { content: "✓"; position: absolute; left: 16px; color: var(--leaf); font-weight: 900; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 46px; align-items: start; }
.contact-info { padding: 39px; color: #fff; background: var(--forest-dark); border-radius: var(--radius-lg); }
.contact-info h2 { color: #fff; font-size: 2rem; }
.contact-info > p { color: rgba(255,255,255,.7); }
.contact-item { display: grid; grid-template-columns: 40px 1fr; gap: 13px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-item:last-of-type { border: 0; }
.contact-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: var(--forest-dark); background: var(--gold); font-size: .78rem; font-weight: 900; }
.contact-item small { display: block; color: rgba(255,255,255,.55); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-item a, .contact-item span { display: block; color: #fff; font-size: .82rem; line-height: 1.6; margin-top: 2px; }
.contact-item a:hover { color: var(--gold); }
.form-card { padding: 39px; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-card h2 { font-size: 2rem; }
.form-card > p { color: var(--muted); margin-top: 10px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; margin-top: 27px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--forest-dark); font-size: .73rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #dce2d8; background: #fbfcfa; color: var(--ink); border-radius: 11px; padding: 13px 14px; outline: 0; transition: border .2s, box-shadow .2s; }
.field textarea { resize: vertical; min-height: 125px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--leaf); box-shadow: 0 0 0 4px rgba(120,166,47,.12); }
.form-note { color: var(--muted); font-size: .68rem; margin: 12px 0 0; }
.map-frame { border: 0; width: 100%; height: 430px; display: block; border-radius: var(--radius-lg); filter: saturate(.85); }
.map-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 28px; }
.map-head p { color: var(--muted); margin: 9px 0 0; }
.form-status { display: none; margin-top: 15px; padding: 12px 14px; border-radius: 10px; background: #edf6e7; color: var(--forest); font-size: .8rem; font-weight: 700; }
.form-status.show { display: block; }

.site-footer { color: rgba(255,255,255,.7); background: #102716; }
.footer-main { padding: 70px 0 46px; display: grid; grid-template-columns: 1.55fr .75fr 1fr 1.25fr; gap: 52px; }
.footer-logo { width: 245px; padding: 10px; background: #fff; border-radius: 10px; margin-bottom: 20px; }
.footer-about p { max-width: 390px; font-size: .8rem; }
.footer-col h3 { color: #fff; font-size: .9rem; margin-bottom: 19px; letter-spacing: 0; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 9px 0; }
.footer-links a { font-size: .77rem; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { font-size: .77rem; }
.footer-contact p { margin-bottom: 11px; }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.09); font-size: .7rem; }
.back-top { color: var(--gold); font-weight: 800; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .site-nav { position: fixed; inset: 120px 18px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
  .site-nav.open { display: flex; }
  .nav-link { padding: 13px 10px; }
  .nav-link::after { display: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .menu-toggle { display: flex; }
  .split { gap: 42px; }
  .card-grid, .testimonial-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item:nth-child(2)::after { display: none; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .section-compact { padding: 58px 0; }
  .topbar-inner { justify-content: center; }
  .topbar-inner > span, .topbar-links a:last-child { display: none; }
  .topbar-links { gap: 14px; }
  .nav-wrap { height: 72px; }
  .brand img { width: 205px; }
  .site-nav { inset: 110px 14px auto; }
  .hero { min-height: 740px; align-items: end; }
  .hero-media img { object-position: 62% center; }
  .hero::after { background: linear-gradient(0deg, rgba(255,250,240,.99) 0%, rgba(255,250,240,.96) 55%, rgba(255,250,240,.34) 100%); }
  .hero-content { padding: 195px 0 72px; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .hero .lead { font-size: .96rem; }
  .trust-strip { gap: 11px 18px; }
  .stats-card { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .services-banner, .contact-grid, .service-category { grid-template-columns: 1fr; }
  .image-frame { margin-bottom: 18px; }
  .image-frame img { min-height: 380px; }
  .image-badge { right: 12px; bottom: 15px; }
  .check-list, .service-list { grid-template-columns: 1fr; }
  .card-grid, .testimonial-grid, .values-grid { grid-template-columns: 1fr; }
  .services-banner-content { padding: 36px 27px; }
  .services-banner img { min-height: 300px; }
  .cta-panel { grid-template-columns: 1fr; padding: 38px 27px; }
  .page-hero { padding: 80px 0 72px; }
  .mission-grid { grid-template-columns: 1fr; }
  .service-category { gap: 22px; }
  .form-card, .contact-info { padding: 29px 23px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .map-head { align-items: flex-start; flex-direction: column; }
  .map-frame { height: 350px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 24px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-main .footer-col:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

@media (max-width: 500px) {
  .process-grid, .feature-grid, .footer-main { grid-template-columns: 1fr; }
  .process-item::after { display: none; }
  .footer-about, .footer-main .footer-col:last-child { grid-column: auto; }
  .btn-row .btn { width: 100%; }
  .stat { padding: 20px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
/* @vn-deploy:1785747079118 */
