* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #172118;
  background: #f7f5ef;
  line-height: 1.6;
}

.container {
  width: min(1120px, 92%);
  margin: auto;
}

.topbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e6e0d2;
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand span {
  display: block;
  color: #677061;
  font-size: 0.9rem;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #1f5b33;
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: #172118;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-call {
  background: #1f5b33;
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  padding: 88px 0;
  background:
    linear-gradient(120deg, rgba(23,33,24,0.88), rgba(31,91,51,0.76)),
    url("https://images.unsplash.com/photo-1513836279014-a89f7a76ae86?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: center;
}

.eyebrow {
  color: #d9a441;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1;
  margin-bottom: 20px;
}

.hero-copy {
  max-width: 640px;
  font-size: 1.18rem;
  color: #f3f1e9;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid transparent;
}

.primary {
  background: #d9a441;
  color: #172118;
}

.secondary {
  background: white;
  color: #172118;
}

.full {
  width: 100%;
  background: #1f5b33;
  color: white;
  margin-top: 12px;
}

.outline {
  background: transparent;
  border-color: #1f5b33;
  color: #1f5b33;
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #f3f1e9;
  font-weight: 700;
}

.quote-card {
  background: white;
  color: #172118;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.quote-card h2 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.section {
  padding: 76px 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 24px;
}

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

.card {
  background: white;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid #e8e1d3;
  box-shadow: 0 14px 34px rgba(23, 33, 24, 0.06);
}

.card h3 {
  color: #1f5b33;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.dark {
  background: #172118;
  color: white;
}

.dark p {
  color: #e7e2d8;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.service-area {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 28px;
  border-radius: 22px;
}

.service-area h3 {
  color: #d9a441;
  margin-bottom: 10px;
}

.reviews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.review {
  background: white;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e8e1d3;
}

.review p {
  font-size: 1.08rem;
  margin-bottom: 14px;
}

.cta {
  padding: 60px 0;
  background: #e9e1cf;
}

.cta-box {
  background: #1f5b33;
  color: white;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cta-box p {
  color: #f3f1e9;
}

footer {
  background: #0f1710;
  color: white;
  padding: 38px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

footer p {
  color: #cfc8bc;
}

.copyright {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  nav {
    display: none;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-grid,
  .cards,
  .split,
  .reviews,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
  }

  .quote-card {
    padding: 24px;
  }
}
