:root {
  --green-900: #123f25;
  --green-800: #185331;
  --green-700: #28633a;
  --green-100: #eef6e6;
  --leaf: #77a934;
  --gold: #e5b749;
  --ink: #172015;
  --muted: #68715f;
  --paper: #fffdf7;
  --line: #dce6d1;
  --shadow: 0 18px 50px rgba(18, 63, 37, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  color: var(--green-900);
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--green-100);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--green-900);
  font-weight: 800;
  padding: 10px 12px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: clamp(38px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--green-900);
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: heroBackgroundSwap 16s infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 63, 37, 0.52), rgba(18, 63, 37, 0.12)),
    linear-gradient(0deg, rgba(18, 63, 37, 0.18), rgba(18, 63, 37, 0.08));
}

.hero-bg-1 {
  background-image: url("assets/hero-background-1.png");
}

.hero-bg-2 {
  animation-delay: 4s;
  background-image: url("assets/hero-background-2.png");
}

.hero-bg-3 {
  animation-delay: 8s;
  background-image: url("assets/hero-background-3.png");
}

.hero-bg-4 {
  animation-delay: 12s;
  background-image: url("assets/hero-background-4.png");
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin-left: clamp(0px, 7vw, 90px);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

@keyframes heroBackgroundSwap {
  0%,
  22% {
    opacity: 1;
  }

  25%,
  97% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.gallery-band h2,
.contact-section h2,
.service-hero h1,
.intro-band h2 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button,
.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #1d210c;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--green-900);
  color: white;
}

.intro-band h2 {
  max-width: 840px;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.contact-strip {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.section,
.gallery-band,
.contact-section {
  padding: clamp(48px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.gallery-band h2,
.contact-section h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--green-900);
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 63, 37, 0.08);
}

.service-card.wide {
  grid-column: span 2;
}

.service-photo {
  min-height: 210px;
  background-size: cover;
  background-position: center;
}

.lawn {
  background-image: linear-gradient(135deg, rgba(23, 87, 47, 0.08), rgba(229, 183, 73, 0.08)), url("assets/hero-background-3.png");
}

.design {
  background-image: linear-gradient(135deg, rgba(23, 87, 47, 0.22), rgba(229, 183, 73, 0.28)), url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=900&q=80");
}

.irrigation {
  background-image: linear-gradient(135deg, rgba(23, 87, 47, 0.18), rgba(55, 115, 160, 0.24)), url("https://images.unsplash.com/photo-1625246333195-78d9c38ad449?auto=format&fit=crop&w=900&q=80");
}

.plumbing {
  background-image: linear-gradient(135deg, rgba(23, 87, 47, 0.2), rgba(229, 183, 73, 0.18)), url("https://images.unsplash.com/photo-1585704032915-c3400ca199e7?auto=format&fit=crop&w=900&q=80");
}

.homewatch {
  background-image: linear-gradient(135deg, rgba(23, 87, 47, 0.2), rgba(229, 183, 73, 0.2)), url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1200&q=80");
}

.service-card-body {
  padding: 22px;
}

.service-card h3 {
  min-height: 58px;
  margin: 0;
  color: var(--green-900);
  font-size: 1.25rem;
}

.service-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.card-link {
  width: 100%;
  background: var(--green-900);
  color: white;
}

.gallery-band {
  background: #eef4ea;
}

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

.gallery-slot {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 2px dashed #a9b99c;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-800);
  font-weight: 900;
  text-align: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.social-panel {
  border-radius: 8px;
  padding: clamp(24px, 4vw, 42px);
}

.contact-panel {
  background: var(--green-900);
  color: white;
}

.contact-panel h2 {
  color: white;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.quote-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button {
  border: 0;
  cursor: pointer;
}

.social-panel {
  background: #1b1d1b;
  color: white;
  overflow: hidden;
}

.social-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 30px;
}

.social-heading h3 {
  margin: 0;
  color: white;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.social-heading span {
  width: 120px;
  height: 10px;
  border-radius: 999px;
  background: #f07d2b;
}

.social-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.social-counter {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 22px 26px;
  border-radius: 999px;
  color: white;
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.social-counter strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1;
}

.social-icon {
  display: grid;
  place-items: center;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  font-size: 2rem;
  font-weight: 900;
}

.social-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.social-counter.facebook {
  background: #688be8;
}

.social-counter.instagram {
  background: linear-gradient(135deg, #5550db, #ed4157);
}

.social-counter.tiktok {
  background: #3da1ee;
}

.social-counter.whatsapp {
  background: #25d366;
  color: #072b14;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #082c15;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #0e2b1a;
  color: white;
}

.site-footer p {
  margin: 0;
}

.service-page main {
  background: #f8fbf4;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 8vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--green-900);
  color: white;
}

.service-hero h1 {
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.service-hero p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.service-image-slot {
  min-height: 390px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.service-details {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 380px);
  gap: 24px;
  padding: clamp(46px, 7vw, 82px) clamp(18px, 5vw, 72px);
}

.detail-card,
.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: clamp(24px, 4vw, 38px);
}

.detail-card h2,
.booking-card h2 {
  margin: 0 0 16px;
  color: var(--green-900);
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--leaf);
  background: var(--green-100);
  font-weight: 700;
}

.booking-card {
  align-self: start;
  position: sticky;
  top: 96px;
}

.booking-card .button {
  width: 100%;
  margin-top: 10px;
}

.booking-card .button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--green-900);
}

@media (max-width: 1080px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

  .intro-band,
  .contact-section,
  .service-hero,
  .service-details {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    margin-left: 0;
  }

  .service-card.wide {
    grid-column: auto;
  }

  .booking-card {
    position: static;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand span {
    max-width: 130px;
    line-height: 1.05;
  }

  .service-grid,
  .gallery-grid,
  .button,
  .card-link {
    width: 100%;
  }

  .social-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .social-heading span {
    width: 92px;
  }

  .social-counter-grid {
    grid-template-columns: 1fr;
  }

  .social-counter {
    border-radius: 28px;
    font-size: 1.1rem;
    min-height: 92px;
    padding: 18px;
  }

  .social-counter strong {
    font-size: 1.35rem;
  }

  .whatsapp-float {
    left: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
  }

  .hero-bg-1 {
    opacity: 1;
  }
}
