:root {
  --ink: #132018;
  --green: #163f2a;
  --lime: #b8d34a;
  --paper: #f6f7f2;
  --white: #fff;
  --muted: #657069;
  --line: #dfe4dc;
  --red: #a92b23;
  --shadow: 0 18px 60px rgba(15, 35, 23, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}
button {
  font: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.emergency {
  background: var(--red);
  color: #fff;
}
.emergency .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  font-weight: 800;
}
.emergency a {
  text-decoration: underline;
}
.top {
  background: #0e2e1d;
  color: #fff;
  font-size: 0.9rem;
}
.top .wrap {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  gap: 20px;
}
.nav {
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #e7ebe5;
}
.nav .wrap {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
  line-height: 1;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand b {
  color: #84a50b;
}
.footer-brand img {
  width: 76px;
  height: 76px;
}
.links {
  display: flex;
  gap: 22px;
  font-weight: 700;
  font-size: 0.92rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 4px;
  background: var(--lime);
  color: #102010;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.btn.dark {
  background: var(--green);
  color: #fff;
}
.hero {
  min-height: 610px;
  color: #fff;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(5, 20, 11, 0.91) 0%,
      rgba(5, 20, 11, 0.69) 42%,
      rgba(5, 20, 11, 0.06) 72%
    ),
    url("assets/hero.png") center/cover;
}
.hero-inner {
  max-width: 700px;
  padding: 85px 0;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: #789010;
  font-size: 0.8rem;
}
.hero .eyebrow,
.panel .eyebrow {
  color: #d2e784;
}
.hero h1 {
  font-size: clamp(2.55rem, 6vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 18px 0 24px;
}
.hero p {
  font-size: 1.18rem;
  max-width: 630px;
  color: #eef4ed;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.proof {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.proof .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.proof div {
  padding: 22px 16px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}
.proof div:last-child {
  border: 0;
}
section {
  padding: 90px 0;
}
.head {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: end;
  margin-bottom: 36px;
}
.head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 8px 0;
}
.head p {
  max-width: 540px;
  color: var(--muted);
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  appearance: none;
  text-align: left;
  color: inherit;
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
  cursor: pointer;
}
.card:hover,
.card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #a9ba83;
  outline: none;
}
.num {
  font-weight: 900;
  color: #91aa31;
  font-size: 0.8rem;
}
.card h3 {
  font-size: 1.4rem;
  margin: 20px 0 10px;
}
.card p {
  color: var(--muted);
  margin: 0 0 24px;
}
.more {
  margin-top: auto;
  font-weight: 800;
  color: var(--green);
}
.service-note {
  text-align: center;
  color: var(--muted);
  margin-top: 24px;
}
.emergency-section {
  background: #1b2520;
  color: #fff;
}
.emergency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.emergency-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
}
.emergency-card h3 {
  font-size: 1.55rem;
  margin: 8px 0;
}
.emergency-card p {
  color: #cbd8d0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.panel {
  background: var(--green);
  color: #fff;
  padding: 48px;
}
.panel h2 {
  font-size: 2.5rem;
  line-height: 1.08;
  margin: 0 0 24px;
}
.ticks {
  padding: 0;
  list-style: none;
}
.ticks li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
.ticks li:before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
  margin-right: 11px;
}
.reviews-section {
  background: #fff;
}
.reviews {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.reviews h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 8px 0 18px;
}
.reviews > div:first-child p {
  max-width: 650px;
  color: var(--muted);
}
.review-action {
  padding: 38px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.review-stars {
  color: #d59b12;
  font-size: 2rem;
  letter-spacing: 0.12em;
}
.review-action h3 {
  font-size: 1.5rem;
  margin: 12px 0 6px;
}
.review-action p {
  color: var(--muted);
  margin: 0 0 22px;
}
.area {
  background: #e8eddc;
}
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}
.places {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.place {
  background: #fff;
  border: 1px solid #ced7c5;
  padding: 12px 16px;
  font-weight: 700;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.step {
  border-top: 4px solid var(--lime);
  padding-top: 20px;
}
.step strong {
  font-size: 2rem;
  color: #789010;
}
.cta {
  background: #0e2e1d;
  color: #fff;
  padding: 65px 0;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  margin: 0;
}
.cta p {
  color: #cbd9cf;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px;
}
.contact-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(4, 13, 8, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open {
  display: flex;
}
.modal-box {
  background: #fff;
  width: min(1040px, 100%);
  max-height: 92vh;
  overflow: auto;
  box-shadow: var(--shadow);
}
.modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.modal-head h2 {
  margin: 0;
}
.close {
  width: 42px;
  height: 42px;
  border: 0;
  background: #edf0e9;
  font-size: 1.6rem;
  cursor: pointer;
}
.modal-content {
  padding: 28px;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.gallery-slot {
  min-height: 190px;
  background: linear-gradient(135deg, #e8ede4, #d9e1d5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #68746c;
  font-weight: 700;
  border: 1px dashed #aab7a5;
}
.gallery-item {
  margin: 0;
  background: #eef1eb;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  cursor: zoom-in;
}
.gallery-item figcaption {
  padding: 11px 13px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #435047;
}
.modal-copy {
  color: var(--muted);
  max-width: 760px;
}
footer {
  background: #081b11;
  color: #c8d3cb;
  padding: 45px 0 25px;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.small {
  font-size: 0.85rem;
  color: #94a299;
}
.mobile {
  display: none;
}
@media (max-width: 880px) {
  .links {
    display: none;
  }
  .mobile {
    display: inline-flex;
  }
  .top .wrap {
    justify-content: center;
  }
  .top span:last-child {
    display: none;
  }
  .hero {
    min-height: 560px;
    background-position: 62% center;
  }
  .proof .wrap {
    grid-template-columns: 1fr 1fr;
  }
  .proof div:nth-child(2) {
    border-right: 0;
  }
  .services,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .reviews,
  .area-grid,
  .contact {
    grid-template-columns: 1fr;
  }
  .head,
  .cta .wrap,
  .foot {
    align-items: flex-start;
    flex-direction: column;
  }
  .wrap {
    width: min(100% - 28px, 1180px);
  }
}
@media (max-width: 620px) {
  .services,
  .steps,
  .emergency-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: auto;
  }
  .emergency .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
  .hero-inner {
    padding: 65px 0;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .nav .wrap {
    height: 66px;
  }
  .nav .brand {
    gap: 7px;
    font-size: 0.95rem;
  }
  .nav .brand img {
    width: 48px;
    height: 48px;
  }
  .proof div {
    font-size: 0.86rem;
    padding: 16px 8px;
  }
  section {
    padding: 65px 0;
  }
  .panel {
    padding: 30px;
  }
  .modal {
    padding: 8px;
  }
  .modal-content {
    padding: 20px;
  }
}
