﻿:root {
  --green: #249d14;
  --green-dark: #116d0a;
  --green-soft: #e8f8e5;
  --ink: #20282d;
  --muted: #5e6a70;
  --line: rgba(32, 40, 45, 0.14);
  --paper: #ffffff;
  --mist: #f3f6f2;
  --shadow: 0 20px 60px rgba(14, 27, 22, 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:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.86)),
    url("assets/web/gardening.jpg") center / cover fixed;
}

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

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

.top-strip {
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
}

.top-strip .wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 9px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.top-strip a {
  color: #fff;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand img {
  width: 96px;
  height: 68px;
  object-fit: contain;
  background: #fff;
  border-radius: 7px;
  padding: 4px;
}

.brand span {
  line-height: 1.05;
  max-width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 7px;
  font-weight: 800;
  color: var(--ink);
}

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

.call-button,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  font-weight: 900;
  min-height: 46px;
  padding: 0 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.call-button,
.primary-button {
  background: var(--green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(36, 157, 20, 0.28);
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}

.call-button:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 1.4rem;
}

.hero {
  min-height: 690px;
  color: #fff;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(105deg, rgba(10, 18, 14, 0.92), rgba(10, 18, 14, 0.58)),
    url("assets/web/gutter-cleaning.jpg") center / cover;
}

.hero-bg-image,
.page-hero-image,
.slide-image,
.tile-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-image {
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(10, 18, 14, 0.92), rgba(10, 18, 14, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(243, 246, 242, 1));
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  padding: 88px 0 132px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: #daf7d4;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  background: var(--green);
  border-radius: 99px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  max-width: 850px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.36);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.22rem;
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  min-height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.slide {
  min-height: 440px;
  display: none;
  position: relative;
  padding: 28px;
  align-items: end;
  background-size: cover;
  background-position: center;
}

.slide-image {
  z-index: 0;
}

.slide.active {
  display: flex;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.86));
}

.slide-content {
  position: relative;
  z-index: 2;
}

.slide-content strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.slide-content span {
  color: rgba(255,255,255,0.78);
}

.section {
  padding: 86px 0;
  background: rgba(243, 246, 242, 0.96);
}

.section.white {
  background: rgba(255, 255, 255, 0.94);
}

.section.white .eyebrow,
.section:not(.dark) .eyebrow {
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 7px 10px;
  border-radius: 6px;
}

.section.white .eyebrow::before,
.section:not(.dark) .eyebrow::before {
  background: var(--green-dark);
}

.section.dark {
  color: #fff;
  background:
    linear-gradient(rgba(14, 24, 19, 0.93), rgba(14, 24, 19, 0.95)),
    url("assets/web/roof-cleaning.jpg") center / cover fixed;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
  max-width: 660px;
}

.dark .section-head p,
.dark .lead {
  color: rgba(255,255,255,0.76);
}

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

.service-tile {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(32, 40, 45, 0.16);
  background-color: var(--ink);
}

.tile-image {
  z-index: 0;
  transition: transform 0.35s ease;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(rgba(0,0,0,0.08), rgba(0,0,0,0.88));
}

.service-tile:hover .tile-image {
  transform: scale(1.09);
}

.service-tile .tile-content {
  position: absolute;
  z-index: 2;
  inset: auto 18px 18px;
}

.tile-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tile-content p {
  color: rgba(255,255,255,0.94);
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

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

.feature-image {
  min-height: 460px;
  border-radius: 8px;
  background: url("assets/web/tree-surgeon.jpg") center / cover;
  box-shadow: var(--shadow);
}

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

.review,
.faq-item,
.form-panel,
.contact-panel {
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(32, 40, 45, 0.08);
}

.review {
  color: #172026;
}

.review p,
.faq-item p,
.form-panel p,
.contact-panel p,
.service-copy p,
.service-copy li {
  color: #3f4b51;
  line-height: 1.65;
}

.review p {
  color: #253138;
  font-size: 1.02rem;
}

.review strong {
  color: #10181c;
  font-weight: 950;
}

.stars {
  color: #078512;
  font-weight: 950;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  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: 128px;
  resize: vertical;
}

button.primary-button {
  border: 0;
  cursor: pointer;
}

.map {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.9) contrast(1.05);
}

.page-hero {
  color: #fff;
  padding: 108px 0 96px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.page-hero-image {
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(10, 18, 14, 0.92), rgba(10, 18, 14, 0.58));
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
}

.page-hero .lead {
  color: rgba(255,255,255,0.94);
  text-shadow: 0 2px 12px rgba(0,0,0,0.36);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.breadcrumb {
  margin-bottom: 16px;
  color: #d8f8d2;
  font-weight: 850;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.service-copy {
  background: rgba(255,255,255,0.96);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 34px;
}

.service-copy ul {
  padding-left: 20px;
}

.side-card {
  position: sticky;
  top: 110px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 26px;
}

.side-card p {
  color: rgba(255,255,255,0.76);
  line-height: 1.6;
}

.mini-service-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.mini-service-list a {
  padding: 11px 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 7px;
  font-weight: 800;
}

.mini-service-list a:hover {
  background: var(--green);
}

.site-footer {
  color: #fff;
  background: #161d20;
}

.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-grid img {
  width: 104px;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,0.76);
  line-height: 1.7;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 16px;
  text-align: center;
  color: rgba(255,255,255,0.68);
}

.footer-bottom a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    min-height: 76px;
  }

  .nav-links {
    position: absolute;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .nav .call-button {
    display: none;
  }

  .hero-inner,
  .feature-band,
  .quote-layout,
  .service-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-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;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 64px 0 90px;
  }

  .hero-panel,
  .slide {
    min-height: 320px;
  }

  .service-grid,
  .review-grid,
  .faq-list,
  .service-tile {
    min-height: 270px;
  }

  .section {
    padding: 62px 0;
  }

  .brand span {
    display: none;
  }
}
