:root {
  --green-950: #102016;
  --green-900: #173321;
  --green-800: #21492f;
  --green-700: #2f6843;
  --green-600: #43875a;
  --green-100: #edf6ef;
  --cream: #fbf7ed;
  --sand: #e9ddc7;
  --gold: #c9a959;
  --ink: #172018;
  --muted: #657066;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 32, 22, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 237, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 51, 33, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-950);
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--cream);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(47, 104, 67, 0.25);
}

.logo span:last-child {
  font-size: 1.1rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: rgba(23, 32, 24, 0.78);
}

.menu a {
  transition: color .2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--green-700);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(33, 73, 47, 0.25);
}

.btn-primary:hover {
  background: var(--green-700);
}

.btn-outline {
  border-color: rgba(23, 51, 33, 0.22);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.5);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: var(--green-900);
  color: var(--white);
  border-radius: 14px;
  font-size: 1.25rem;
  padding: 10px 13px;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  padding: 58px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--green-700);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.08;
  color: var(--green-950);
}

h1 {
  font-size: clamp(2.6rem, 5.4vw, 5.8rem);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  letter-spacing: -0.055em;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.lead {
  margin: 24px 0 30px;
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-card {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 620px;
  background: var(--green-900);
}

.hero-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(251, 247, 237, 0.88);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.hero-badge strong {
  display: block;
  color: var(--green-950);
  font-size: 1.05rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.stat {
  padding: 18px;
  border: 1px solid rgba(23, 51, 33, 0.1);
  background: rgba(255, 255, 255, 0.46);
  border-radius: 20px;
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--green-800);
  line-height: 1;
}

.stat span {
  font-size: .92rem;
  color: var(--muted);
}

.section {
  padding: 90px 0;
}

.section.green {
  background: var(--green-950);
  color: var(--cream);
}

.section.green h2,
.section.green h3 {
  color: var(--cream);
}

.section.green .muted {
  color: rgba(251, 247, 237, 0.72);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 560px;
  margin: 0;
}

.muted {
  color: var(--muted);
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(16, 32, 22, 0.08);
  border: 1px solid rgba(23, 51, 33, 0.08);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

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

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

.feature-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(251, 247, 237, 0.12);
  border-radius: 30px;
  padding: 34px;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(251, 247, 237, 0.82);
}

.check {
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-950);
  display: grid;
  place-items: center;
  font-weight: 900;
  line-height: 1;
}

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

.step {
  background: rgba(251, 247, 237, 0.07);
  border: 1px solid rgba(251, 247, 237, 0.12);
  padding: 24px;
  border-radius: 24px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--green-950);
  font-weight: 900;
  margin-bottom: 18px;
}

.cta {
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  color: var(--white);
  border-radius: 34px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  color: var(--white);
}

.cta p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
  align-items: start;
}

.info-box,
.form-box {
  background: var(--white);
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(23, 51, 33, 0.08);
  box-shadow: 0 16px 45px rgba(16, 32, 22, 0.07);
}

.info-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 51, 33, 0.08);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row strong {
  display: block;
  color: var(--green-950);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-weight: 800;
  color: var(--green-950);
  font-size: .92rem;
}

input, textarea, select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(23, 51, 33, 0.16);
  border-radius: 15px;
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
  outline: none;
}

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

input:focus, textarea:focus, select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(67, 135, 90, 0.12);
}

.footer {
  background: var(--green-950);
  color: rgba(251, 247, 237, 0.78);
  padding: 44px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer strong {
  color: var(--cream);
}

.page-hero {
  padding: 80px 0 36px;
}

.page-hero .lead {
  max-width: 760px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(23, 51, 33, 0.08);
  box-shadow: 0 14px 38px rgba(16, 32, 22, 0.06);
}

.service-row img {
  width: 180px;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 7px 12px;
  font-size: .88rem;
  font-weight: 800;
}

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

  .menu {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 18px;
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
  }

  .nav .btn-primary {
    display: none;
  }

  .hero-grid,
  .feature-grid,
  .contact-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-card img {
    min-height: 460px;
    height: 460px;
  }

  .cards,
  .steps,
  .stats {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row img {
    width: 100%;
    height: 230px;
  }

  .cta {
    padding: 34px;
  }
}

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

  .hero {
    padding-top: 34px;
  }

  .hero-badge {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.55rem;
  }
}