:root {
  --green: #78c926;
  --green-dark: #2d7b10;
  --ink: #15191b;
  --charcoal: #202528;
  --muted: #5b666b;
  --line: rgba(21, 25, 27, 0.14);
  --paper: #ffffff;
  --mist: #f4f7f1;
  --shadow: 0 22px 60px rgba(10, 17, 13, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--mist);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top-strip {
  background: #080b0c;
  color: #fff;
  font-size: 0.94rem;
}
.top-strip .wrap,
.nav,
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.top-strip .wrap {
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.top-strip a { color: #fff; font-weight: 900; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
}
.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}
.brand span {
  max-width: 160px;
  line-height: 1.05;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--ink);
  font-weight: 850;
}
.nav-links a:hover,
.nav-links a.active {
  background: #eaf8df;
  color: var(--green-dark);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 1.35rem;
}

.button,
.call-button,
.ghost-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  padding: 0 18px;
  font-weight: 950;
  border: 0;
  cursor: pointer;
}
.button,
.call-button {
  background: var(--green);
  color: #071006;
  box-shadow: 0 15px 34px rgba(120, 201, 38, 0.26);
}
.ghost-button {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.56);
  background: rgba(255,255,255,0.08);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--ink);
}
.hero {
  min-height: 720px;
  display: grid;
  place-items: center;
}
.hero img,
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(6, 9, 10, 0.92), rgba(6, 9, 10, 0.52));
}
.hero-inner {
  width: min(1180px, calc(100% - 32px));
  padding: 90px 0 120px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 44px;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 26px;
  backdrop-filter: blur(12px);
}
.hero-card img {
  position: static;
  width: 210px;
  height: 210px;
  object-fit: contain;
  margin-bottom: 20px;
}
.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #dff8d3;
  background: rgba(120,201,38,0.16);
  font-weight: 950;
  font-size: 0.82rem;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background: var(--green);
}
.section .eyebrow {
  color: var(--green-dark);
  background: #eaf8df;
}
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: 0; }
h1 { font-size: clamp(3.2rem, 7vw, 6.8rem); max-width: 920px; }
h2 { font-size: clamp(2.05rem, 4vw, 3.55rem); }
h3 { font-size: 1.28rem; }
.lead,
.hero p,
.page-hero p {
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  line-height: 1.62;
  color: rgba(255,255,255,0.91);
  max-width: 760px;
}

.section {
  padding: 84px 0;
  background: rgba(244,247,241,0.97);
}
.section.white { background: #fff; }
.section.dark {
  color: #fff;
  background: #111718;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head p,
.section .lead {
  color: var(--muted);
}
.dark .section-head p,
.dark .lead { color: rgba(255,255,255,0.78); }

.service-grid,
.subservice-grid,
.review-grid,
.faq-list {
  display: grid;
  gap: 16px;
}
.service-grid { grid-template-columns: repeat(2, 1fr); }
.subservice-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid,
.faq-list { grid-template-columns: repeat(3, 1fr); }

.service-tile,
.sub-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  min-height: 420px;
  box-shadow: var(--shadow);
}
.service-tile img,
.sub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.service-tile::after,
.sub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.04), rgba(0,0,0,0.34) 58%, rgba(0,0,0,0.78));
}
.service-tile:hover img,
.sub-card:hover img { transform: scale(1.06); }
.tile-content {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  min-height: 112px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(0, 34, 49, 0.98), rgba(0, 23, 35, 1));
  border-top: 1px solid rgba(120, 201, 38, 0.22);
}
.sub-card .tile-content {
  min-height: 104px;
  padding-top: 24px;
}
.tile-content h3 {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: none;
}
.tile-kicker {
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 22px;
  margin-bottom: 0;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--green);
  color: #071006;
  font-weight: 950;
  font-size: 0.76rem;
  text-transform: uppercase;
}
.tile-content p {
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
}
.split-image {
  min-height: 480px;
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  padding: 13px 14px;
  border-left: 5px solid var(--green);
  background: #fff;
  border-radius: 7px;
  color: #334047;
  font-weight: 750;
}

.page-hero {
  padding: 116px 0 104px;
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.content-panel,
.side-card,
.faq-item,
.review,
.form-panel,
.contact-panel {
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(21,25,27,0.08);
}
.content-panel p,
.content-panel li,
.faq-item p,
.review p,
.form-panel p,
.contact-panel p {
  color: #46535a;
  line-height: 1.68;
}
.content-panel h2,
.content-panel h3 { margin-top: 28px; }
.content-panel h2:first-child,
.content-panel h3:first-child { margin-top: 0; }
.content-panel ul { padding-left: 22px; }
.side-card {
  position: sticky;
  top: 110px;
  background: var(--ink);
  color: #fff;
}
.side-card p { color: rgba(255,255,255,0.78); line-height: 1.65; }
.side-card a { margin-top: 10px; width: 100%; }

.stars {
  color: var(--green-dark);
  font-weight: 950;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.review strong { color: var(--ink); }

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: start;
}
form { display: grid; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 132px; resize: vertical; }
button.button { width: 100%; }
.map {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 8px;
}

.footer {
  color: #fff;
  background: #090c0d;
}
.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}
.footer img { width: 116px; height: 116px; object-fit: contain; }
.footer p,
.footer a { color: rgba(255,255,255,0.78); line-height: 1.7; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px;
  color: rgba(255,255,255,0.66);
  text-align: center;
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav { min-height: 78px; }
  .nav-links {
    position: absolute;
    inset: 78px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav > .call-button { display: none; }
  .hero-inner,
  .split,
  .service-layout,
  .quote-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .service-grid,
  .subservice-grid,
  .review-grid,
  .faq-list { grid-template-columns: repeat(2, 1fr); }
  .side-card { position: static; }
}

@media (max-width: 680px) {
  .top-strip .wrap,
  .section-head,
  .form-row { display: grid; }
  .brand span { display: none; }
  .brand img { width: 68px; height: 68px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 66px 0 86px; }
  .service-grid,
  .subservice-grid,
  .review-grid,
  .faq-list { grid-template-columns: 1fr; }
  .service-tile { min-height: 340px; }
  .sub-card { min-height: 300px; }
  .section { padding: 62px 0; }
}
