:root {
  --brand: #93c249;
  --brand-dark: #668f28;
  --brand-soft: #edf5df;
  --ink: #292728;
  --ink-2: #535052;
  --paper: #ffffff;
  --warm: #ede9e1;
  --warm-2: #f7f5f0;
  --line: #dcd8cf;
  --shadow: 0 24px 60px rgba(41, 39, 40, .12);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  padding: 10px 16px; background: var(--ink); color: #fff;
  border-radius: 8px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.topbar { background: var(--ink); color: rgba(255,255,255,.78); font-size: 12px; font-weight: 600; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-meta { display: flex; gap: 24px; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--brand); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(41,39,40,.08);
  backdrop-filter: blur(16px);
}
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { flex: 0 1 330px; }
.brand img { width: min(100%, 315px); max-height: 58px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 700; }
.nav-links > a:not(.btn) { position: relative; padding: 30px 0; }
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 21px;
  height: 2px; background: var(--brand); transition: right .25s ease;
}
.nav-links > a:hover::after, .nav-links > a.active::after { right: 0; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; border-radius: 10px;
  background: var(--warm-2); padding: 11px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 22px; border: 1px solid transparent;
  border-radius: 10px; font-size: 14px; font-weight: 800; line-height: 1.2;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #1f2b10; background: var(--brand); box-shadow: 0 12px 28px rgba(147,194,73,.26); }
.btn-primary:hover { background: #a0ce58; box-shadow: 0 16px 32px rgba(147,194,73,.34); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-dark:hover { background: #3c393b; }
.btn-outline { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.06); }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-ghost { border-color: var(--line); background: #fff; }
.text-link { color: var(--brand-dark); font-weight: 800; font-size: 14px; }
.text-link:hover { color: var(--ink); }

.hero {
  position: relative; min-height: 660px; display: grid; align-items: center;
  overflow: hidden; background: #d9ddcc;
}
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(247,245,240,.98) 0%, rgba(247,245,240,.93) 34%, rgba(247,245,240,.46) 58%, rgba(247,245,240,.03) 82%);
}
.hero-content { position: relative; z-index: 2; padding-block: 92px; }
.hero-copy { max-width: 660px; }
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  color: var(--brand-dark); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before, .kicker::before { content: ""; width: 26px; height: 2px; background: var(--brand); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 750px; margin-bottom: 22px; font-size: clamp(40px, 5vw, 66px); line-height: 1.08; letter-spacing: -.04em; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 3.5vw, 48px); line-height: 1.16; letter-spacing: -.035em; }
h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.3; }
p { color: var(--ink-2); }
.lead { max-width: 680px; font-size: 18px; line-height: 1.75; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero .btn-ghost { background: rgba(255,255,255,.72); }
.hero-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); max-width: 620px;
  margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(41,39,40,.16);
}
.proof-item { padding-right: 20px; }
.proof-item + .proof-item { padding-left: 20px; border-left: 1px solid rgba(41,39,40,.14); }
.proof-item strong { display: block; font-size: 22px; line-height: 1.2; }
.proof-item span { color: var(--ink-2); font-size: 12px; font-weight: 600; }

.section { padding: 104px 0; }
.section-sm { padding: 76px 0; }
.soft { background: var(--warm-2); }
.dark { background: var(--ink); color: #fff; }
.dark p { color: rgba(255,255,255,.7); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(46px, 7vw, 90px); align-items: center; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head.center .kicker::after { content: ""; width: 26px; height: 2px; background: var(--brand); }
.image-card { position: relative; }
.image-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-card::before {
  content: ""; position: absolute; width: 110px; height: 110px; z-index: -1;
  right: -20px; bottom: -20px; border-radius: 20px; background: var(--brand);
}
.image-card.tall img { aspect-ratio: 4/4.4; }
.image-note {
  position: absolute; left: -24px; bottom: 28px; max-width: 230px; padding: 18px 20px;
  border-radius: 14px; background: #fff; box-shadow: 0 16px 44px rgba(41,39,40,.16);
}
.image-note strong { display: block; margin-bottom: 3px; font-size: 15px; }
.image-note span { color: var(--ink-2); font-size: 12px; line-height: 1.5; }
.check-list { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink-2); font-weight: 600; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center;
  width: 21px; height: 21px; border-radius: 50%; background: var(--brand-soft);
  color: var(--brand-dark); font-size: 12px; font-weight: 900;
}

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative; min-height: 250px; padding: 30px; overflow: hidden;
  border: 1px solid var(--line); border-radius: 18px; background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: var(--brand); box-shadow: 0 20px 46px rgba(41,39,40,.10); }
.service-index {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 26px;
  border-radius: 12px; color: var(--brand-dark); background: var(--brand-soft); font-size: 12px; font-weight: 900;
}
.service-card p { margin-bottom: 0; font-size: 14px; }
.service-card .text-link { display: inline-block; margin-top: 20px; }

.process-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 100px); align-items: center; }
.process-image { min-height: 590px; overflow: hidden; border-radius: var(--radius); }
.process-image img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; }
.steps { counter-reset: steps; display: grid; gap: 0; }
.step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 7px 0 26px; }
.step::before {
  counter-increment: steps; content: "0" counter(steps); display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%; background: var(--brand); color: #1f2b10; font-size: 12px; font-weight: 900;
}
.step:not(:last-child)::after { content: ""; position: absolute; left: 23px; top: 54px; bottom: 1px; width: 1px; background: var(--line); }
.step h3 { margin: 5px 0 4px; }
.step p { margin: 0; font-size: 14px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote-card { padding: 32px; border-radius: 18px; background: #fff; box-shadow: 0 12px 36px rgba(41,39,40,.07); }
.quote-mark { color: var(--brand); font-size: 40px; font-weight: 900; line-height: .8; }
.quote-card blockquote { margin: 18px 0 24px; color: var(--ink-2); font-size: 14px; }
.quote-card strong { display: block; font-size: 14px; }
.quote-card span { color: #777174; font-size: 12px; }

.faq-list { max-width: 870px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; border: 0; background: none; color: var(--ink); text-align: left;
  font-size: 16px; font-weight: 800; cursor: pointer;
}
.faq-question span:last-child {
  flex: 0 0 auto; display: grid; place-items: center; width: 30px; height: 30px;
  border-radius: 50%; background: var(--brand-soft); transition: transform .25s ease;
}
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 760px; margin-bottom: 24px; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.cta-band {
  position: relative; overflow: hidden; padding: 72px 0; background: var(--brand);
}
.cta-band::after {
  content: ""; position: absolute; right: -90px; top: -170px; width: 430px; height: 430px;
  border: 58px solid rgba(255,255,255,.14); border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 750px; margin: 0; font-size: clamp(28px, 3.6vw, 46px); }
.cta-inner p { margin: 12px 0 0; color: rgba(31,43,16,.76); }

.page-hero {
  position: relative; min-height: 440px; display: flex; align-items: end; overflow: hidden; background: var(--ink);
}
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .52; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(24,23,24,.92), rgba(24,23,24,.42)); }
.page-hero-content { position: relative; z-index: 2; max-width: 790px; padding: 110px 0 70px; color: #fff; }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(38px, 5vw, 60px); }
.page-hero p { color: rgba(255,255,255,.78); font-size: 18px; }
.breadcrumbs { margin-bottom: 24px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 700; }
.breadcrumbs a:hover { color: var(--brand); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 30px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.value-card strong { display: block; margin-bottom: 10px; font-size: 18px; }
.value-card p { margin: 0; font-size: 14px; }
.number-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.number-item { padding: 30px; text-align: center; background: #fff; }
.number-item + .number-item { border-left: 1px solid var(--line); }
.number-item strong { display: block; color: var(--brand-dark); font-size: 30px; line-height: 1.2; }
.number-item span { color: var(--ink-2); font-size: 12px; font-weight: 700; }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 30px;
  border: 1px solid var(--line); border-radius: 18px; background: #fff;
}
.service-detail .service-index { margin: 0; width: 54px; height: 54px; }
.service-detail p { margin: 0; font-size: 14px; }
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.audience-item { padding: 22px 15px; border-radius: 14px; background: rgba(255,255,255,.07); text-align: center; font-size: 13px; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.contact-card small { display: block; margin-bottom: 6px; color: var(--brand-dark); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong, .contact-card a { font-weight: 700; }
.contact-form { padding: 38px; border-radius: var(--radius); background: var(--warm-2); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 800; }
.field input, .field textarea, .field select {
  width: 100%; min-height: 50px; border: 1px solid #d7d2c9; border-radius: 10px;
  background: #fff; padding: 12px 14px; color: var(--ink); outline: none;
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand-dark); box-shadow: 0 0 0 3px rgba(147,194,73,.18); }
.form-note { margin: 14px 0 0; font-size: 12px; }
.map-frame { width: 100%; height: 450px; border: 0; display: block; filter: saturate(.8) contrast(.95); }

.site-footer { padding: 72px 0 26px; background: #222021; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .9fr 1fr; gap: 50px; padding-bottom: 48px; }
.footer-brand img { width: 250px; margin-bottom: 22px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.62); font-size: 13px; }
.footer-title { margin-bottom: 19px; color: #fff; font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; color: rgba(255,255,255,.68); font-size: 13px; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: 11px;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .topbar { display: none; }
  .nav { min-height: 74px; }
  .brand { flex-basis: 270px; }
  .nav-toggle { display: block; z-index: 2; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column;
    align-items: stretch; gap: 0; padding: 20px; background: #fff; transform: translateX(105%);
    transition: transform .28s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a:not(.btn) { padding: 17px 4px; border-bottom: 1px solid var(--line); }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 20px; }
  .hero { min-height: 610px; }
  .hero::after { background: linear-gradient(90deg, rgba(247,245,240,.98), rgba(247,245,240,.82) 65%, rgba(247,245,240,.45)); }
  .hero-copy { max-width: 610px; }
  .grid-2, .process-wrap, .contact-grid { grid-template-columns: 1fr; }
  .process-wrap { gap: 48px; }
  .service-grid, .quote-grid, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr; }
  .image-card { max-width: 720px; }
  .image-card.tall img { aspect-ratio: 4/3; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { flex-basis: 220px; }
  .brand img { max-height: 48px; }
  .section { padding: 76px 0; }
  .section-sm { padding: 58px 0; }
  h1 { font-size: 40px; }
  h2 { font-size: 31px; }
  .lead, .page-hero p { font-size: 16px; }
  .hero { min-height: 680px; align-items: end; }
  .hero > img { object-position: 62% center; }
  .hero::after { background: linear-gradient(180deg, rgba(247,245,240,.4), rgba(247,245,240,.96) 45%, var(--warm-2) 100%); }
  .hero-content { padding: 170px 0 54px; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; }
  .proof-item, .proof-item + .proof-item { padding: 0; border: 0; }
  .proof-item span { display: inline; margin-left: 6px; }
  .hero-actions .btn, .section-actions .btn { width: 100%; }
  .service-grid, .quote-grid, .value-grid, .service-detail-grid, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .process-image, .process-image img { min-height: 410px; }
  .number-strip { grid-template-columns: repeat(2, 1fr); }
  .number-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .number-item:nth-child(4) { border-top: 1px solid var(--line); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: stretch; flex-direction: column; }
  .page-hero { min-height: 390px; }
  .page-hero-content { padding: 94px 0 50px; }
  .image-note { left: 14px; bottom: 14px; }
  .contact-form { padding: 25px 18px; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}
/* @vn-deploy:1784884362589 */
