:root {
  --brand: #aeba54;
  --brand-dark: #6f7f24;
  --brand-deep: #263316;
  --ink: #1f2a1b;
  --muted: #687260;
  --line: #e6ead8;
  --surface: #f7f8f1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(40, 51, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(174, 186, 84, 0.25);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link img {
  width: 260px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: var(--brand-deep);
}

.nav-links a {
  position: relative;
  font-size: 0.96rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-dark);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: var(--brand-dark);
  box-shadow: 0 12px 28px rgba(111, 127, 36, 0.22);
}

.btn-secondary {
  color: var(--brand-deep);
  background: var(--white);
  border-color: rgba(111, 127, 36, 0.28);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  color: var(--brand-deep);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1.4rem;
}

.hero {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--brand-deep);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 42, 27, 0.88), rgba(31, 42, 27, 0.55) 42%, rgba(31, 42, 27, 0.08));
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  color: var(--brand-deep);
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.75rem);
  letter-spacing: 0;
}

.hero p {
  margin: 0 0 28px;
  max-width: 630px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.65rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

section {
  padding: 86px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 54px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.image-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--brand);
}

.band {
  background: var(--surface);
}

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(38, 51, 22, 0.05);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.service-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--brand);
}

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

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-dark);
  font-weight: 900;
}

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

.quote {
  color: var(--muted);
  font-size: 0.98rem;
}

.quote-author {
  margin-top: 18px;
  color: var(--brand-deep);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

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

.detail-row {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.detail-row strong {
  display: block;
  color: var(--brand-deep);
}

.detail-row span,
.detail-row a {
  color: var(--muted);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

textarea {
  min-height: 132px;
  resize: vertical;
}

.map {
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--surface), #ffffff);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  max-width: 900px;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.value-pill {
  padding: 16px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--brand-deep);
  font-weight: 900;
  text-align: center;
}

.site-footer {
  padding: 58px 0 24px;
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  margin-bottom: 38px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-cta {
    width: 100%;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand-link img {
    width: 210px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(31, 42, 27, 0.9), rgba(31, 42, 27, 0.68));
  }

  .hero-content {
    padding: 72px 0;
  }

  .hero-stats,
  .service-grid,
  .testimonial-grid,
  .process-grid,
  .values-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 64px 0;
  }

  .image-panel img {
    height: 320px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* @vn-deploy:1779816662936 */
