:root {
  --green: #6f9b78;
  --green-mid: #557f5f;
  --green-dark: #224a2d;
  --green-deep: #12361f;
  --cream: #f4efd8;
  --cream-light: #fbf8eb;
  --cream-soft: #fffdf2;
  --ink: #142419;
  --muted: #667265;
  --white: #ffffff;
  --line: rgba(18, 54, 31, 0.14);
  --shadow: 0 24px 70px rgba(18, 54, 31, 0.16);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 235, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 126px;
  height: auto;
  border-radius: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
}

nav a {
  position: relative;
  color: var(--green-deep);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.2s ease;
}

nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  color: var(--green-mid);
  font-weight: 900;
  white-space: nowrap;
}

.phone-link::before {
  content: "☎";
  margin-right: 8px;
}

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

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

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(34, 74, 45, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--green-deep);
  border-color: var(--green-dark);
}

.btn-large {
  min-height: 58px;
  padding: 0 28px;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 30px;
  background:
    linear-gradient(90deg, rgba(251, 248, 235, 0.98) 0%, rgba(251, 248, 235, 0.9) 46%, rgba(251, 248, 235, 0.16) 78%),
    url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1600&q=80") center right / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(251, 248, 235, 0.98));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-mid);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 82px);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text {
  max-width: 590px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #233629;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 38px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 660px;
}

.hero-points span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-left: 1px solid var(--line);
  color: var(--green-deep);
  font-weight: 900;
  text-align: center;
  font-size: 13px;
}

.hero-points span::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  border: 2px solid var(--green-mid);
  border-radius: 50%;
}

.hero-visual {
  min-height: 520px;
  position: relative;
}

.hero-photo {
  position: absolute;
  inset: 0 0 82px 0;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(18, 54, 31, 0.02), rgba(18, 54, 31, 0.22)),
    url("https://images.unsplash.com/photo-1533473359331-0135ef1b58bf?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: var(--shadow);
}

.hero-proof-card {
  position: absolute;
  right: 32px;
  bottom: 0;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: var(--white);
  box-shadow: 0 20px 50px rgba(18, 54, 31, 0.25);
}

.hero-proof-card div {
  padding: 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof-card div:last-child {
  border-right: 0;
}

.hero-proof-card strong,
.hero-proof-card span {
  display: block;
}

.hero-proof-card strong {
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-proof-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.trust-strip,
.dark-band {
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: var(--white);
}

.trust-grid,
.band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div,
.band-grid div {
  min-height: 112px;
  padding: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-grid strong,
.trust-grid span,
.band-grid strong,
.band-grid span {
  display: block;
}

.trust-icon {
  display: inline-grid !important;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.trust-grid strong,
.band-grid strong {
  margin-bottom: 5px;
  color: var(--cream);
}

.trust-grid span:last-child,
.band-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.centered {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 42px;
}

.centered p:last-child {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream-soft);
  box-shadow: 0 16px 38px rgba(18, 54, 31, 0.08);
}

.service-image {
  min-height: 200px;
  background: var(--cream);
}

.window-cleaning {
  background: url("assets/window.jpeg") center / cover;
}

.garden-care {
  background: url("assets/images.jpg") center / cover;
}

.handyman {
  background: url("assets/handyman.jpg") center / cover;
}

.pest-control {
  background: url("assets/pest.jpg") center / cover;
}

.service-content {
  position: relative;
  padding: 44px 24px 28px;
  text-align: center;
}

.service-icon {
  position: absolute;
  top: -36px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  transform: translateX(-50%);
  border: 2px solid var(--green);
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 900;
}

.service-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(111, 155, 120, 0.25);
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.coming-soon {
  opacity: 0.92;
}

.band-grid div {
  min-height: 96px;
}

.why-section {
  background: linear-gradient(135deg, var(--cream-light), #f0ead0);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.9fr 1.1fr;
  gap: 38px;
  align-items: stretch;
}

.why-copy,
.quote-panel {
  padding: 34px;
}

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

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--green-deep);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--green-mid);
  border-radius: 50%;
  color: var(--green-dark);
  font-size: 13px;
}

.callout-card {
  display: grid;
  gap: 2px;
  padding: 22px;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.48);
}

.callout-card strong {
  color: var(--green-deep);
  font-size: 24px;
}

.callout-card span,
.callout-card small {
  color: var(--green-mid);
  font-weight: 800;
}

.why-photo {
  min-height: 540px;
  border-radius: 18px;
  background: url("https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?auto=format&fit=crop&w=1000&q=80") center / cover;
  box-shadow: 0 16px 38px rgba(18, 54, 31, 0.1);
}

.quote-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 38px rgba(18, 54, 31, 0.08);
}

.quote-panel > p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 13px;
}

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

.quote-form label,
fieldset legend {
  display: grid;
  gap: 6px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--cream-soft);
}

.checkbox-row input {
  width: auto;
}

.hidden-field {
  display: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 54, 31, 0.18);
  border-radius: 9px;
  padding: 13px 14px;
  font: inherit;
  background: var(--cream-soft);
  color: var(--ink);
}

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

.privacy-note {
  display: block;
  color: var(--muted);
  text-align: center;
}

.service-area {
  background: var(--cream-soft);
}

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

.area-grid p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.footer {
  padding: 56px 0 26px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
  gap: 44px;
}

.footer-logo {
  width: 128px;
  margin-bottom: 20px;
  border-radius: 0;
}

.footer h4 {
  margin: 0 0 16px;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

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

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 0;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-grid,
  .why-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .service-cards,
  .trust-grid,
  .band-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-photo {
    min-height: 360px;
  }
}

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

  .brand img {
    width: 110px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding: 50px 0 24px;
  }

  .hero-actions,
  .form-row,
  .checkbox-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-points,
  .service-cards,
  .trust-grid,
  .band-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-photo {
    inset: 0 0 90px 0;
  }

  .hero-proof-card {
    left: 12px;
    right: 12px;
    grid-template-columns: 1fr;
  }

  .hero-proof-card div {
    padding: 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding: 62px 0;
  }

  .why-copy,
  .quote-panel {
    padding: 24px;
  }
}
