:root {
  --bg: #f5f7f1;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.1);
  --text: #0d2618;
  --text-soft: #5b6d61;
  --hero: #204726;
  --hero-deep: #17361d;
  --hero-line: rgba(255, 255, 255, 0.12);
  --accent: #ffad1f;
  --accent-deep: #f59b00;
  --success: #00d757;
  --success-deep: #00be4c;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  --radius: 22px;
  --container: min(1120px, calc(100vw - 32px));
  --header-height: 52px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 54, 29, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  color: #ffffff;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.desktop-nav,
.header-cta,
.mobile-nav {
  display: none;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  margin: 0 auto;
}

.mobile-nav {
  padding: 0 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.is-open {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  background:
    linear-gradient(180deg, rgba(26, 61, 26, 0.96) 0%, rgba(26, 61, 26, 0.92) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 173, 31, 0.12), transparent 25%);
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 39, 21, 0.48) 0%, rgba(18, 39, 21, 0.84) 100%),
    radial-gradient(circle at top right, rgba(255, 173, 31, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(23, 54, 29, 0.84) 0%, rgba(23, 54, 29, 0.4) 45%, rgba(23, 54, 29, 0.68) 100%);
  z-index: 1;
}

.hero-backdrop-photo {
  position: absolute;
  left: 50%;
  /* Mobile crop keeps the worker visible above the CTA without changing layout. */
  top: -31%;
  width: 112%;
  height: 124%;
  object-fit: cover;
  object-position: 45% top;
  transform: translateX(-50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100svh - 72px);
  align-items: center;
  padding: 24px 0 28px;
}

.hero-copy {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 173, 31, 0.18);
  color: #ffca68;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.9rem, 9vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-lead {
  margin: 20px auto 0;
  max-width: 18ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  width: 100%;
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 215, 87, 0.26);
}

.button-primary:hover {
  background: var(--success-deep);
}

.button-secondary {
  width: 100%;
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
}

.wa-icon,
.floating-whatsapp {
  display: inline-grid;
  place-items: center;
}

.wa-icon svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.hero-stats article {
  text-align: center;
}

.stat-icon {
  display: block;
  margin-bottom: 8px;
  color: #ffc34d;
  font-size: 1.2rem;
}

.hero-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-stats span:last-child {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
}

.hero-reviews {
  margin-top: 26px;
}

.summary-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.summary-rating strong {
  color: #ffffff;
  font-size: 1.3rem;
}

.hero-rating {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top, rgba(255, 173, 31, 0.18), transparent 52%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 36px rgba(3, 16, 8, 0.24);
}

.hero-rating-card {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.hero-rating-kicker {
  color: #ffcf74;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-rating .hero-rating-title {
  color: #fff4d4;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-rating-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-rating-main strong {
  color: #ffffff;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.hero-rating-laurel {
  color: rgba(255, 207, 116, 0.92);
  font-size: 2rem;
  line-height: 1;
  transform: rotate(-20deg);
  filter: drop-shadow(0 6px 14px rgba(255, 173, 31, 0.18));
}

.hero-rating-laurel-right {
  transform: scaleX(-1) rotate(-20deg);
}

.rating-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.google-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #4285f4;
  font-weight: 800;
}

.google-mark-hero {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), transparent 48%),
    linear-gradient(180deg, rgba(255, 214, 122, 0.34), rgba(255, 173, 31, 0.12));
  border: 1px solid rgba(255, 214, 122, 0.3);
  color: #fbbc05;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 18px rgba(0, 0, 0, 0.16);
  text-shadow:
    -0.6px 0 #ea4335,
    0 0.6px #34a853,
    0.6px 0 #4285f4;
}

.google-mark-small {
  width: 22px;
  height: 22px;
  font-size: 0.76rem;
}

.stars {
  color: #ffc34d;
  letter-spacing: 0.12em;
  font-size: 0.94rem;
}

.hero-rating .rating-label {
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.hero-rating-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.hero-rating-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 244, 212, 0.08);
  color: rgba(255, 244, 212, 0.84);
  font-size: 0.75rem;
  font-weight: 700;
}

.review-preview,
.review-card,
.service-card,
.cta-box {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-preview {
  margin-top: 16px;
  padding: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--hero-line);
  backdrop-filter: blur(10px);
}

.review-head,
.review-head-full,
.review-person {
  display: flex;
  align-items: center;
}

.review-head {
  gap: 12px;
}

.review-avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
}

.review-head strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.review-preview p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.reviews-section,
.clients-section,
.services-section,
.gallery-section,
.cta-section {
  padding: 72px 0;
}

.reviews-section {
  background: #eef2eb;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-tag {
  margin: 0 0 14px;
  color: #2d6e37;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-heading h2,
.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.cta-box p,
.reviews-summary p,
.review-card p,
.service-body p,
.footer-brand p,
.footer-bottom p {
  color: var(--text-soft);
  line-height: 1.7;
}

.section-heading p:last-child,
.cta-box p {
  margin-top: 14px;
}

.reviews-summary {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 28px;
}

.summary-rating strong {
  color: var(--text);
}

.review-grid,
.service-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  padding: 24px;
  background: var(--surface);
}

.review-head-full {
  justify-content: space-between;
  gap: 16px;
}

.review-person {
  gap: 12px;
}

.review-person strong {
  color: var(--text);
}

.review-person small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
}

.review-card .stars {
  display: inline-block;
  margin-top: 16px;
}

.review-card p {
  margin: 16px 0 0;
}

.reviews-link-wrap {
  margin: 24px 0 0;
  text-align: center;
}

.reviews-link {
  color: #2d6e37;
  font-weight: 700;
}

.services-section {
  background: var(--bg);
}

.clients-section {
  background:
    linear-gradient(180deg, rgba(32, 71, 38, 0.06) 0%, rgba(32, 71, 38, 0) 100%),
    #f0f4ec;
}

.gallery-section {
  background: #eef2eb;
}

.clients-grid {
  display: grid;
  gap: 18px;
}

.client-card {
  position: relative;
  padding: 24px 22px;
  border: 1px solid rgba(32, 71, 38, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 34px rgba(13, 38, 24, 0.08);
}

.client-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(45, 110, 55, 0.12);
  color: #2d6e37;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.client-card h3 {
  margin: 16px 0 0;
  font-size: 1.24rem;
  letter-spacing: -0.04em;
}

.client-card p {
  margin: 10px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.gallery-carousel {
  position: relative;
}

.gallery-viewport {
  overflow: hidden;
  border-radius: 28px;
}

.gallery-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.gallery-card {
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.gallery-card picture {
  display: block;
}

.gallery-image-wide {
  object-fit: contain;
  background: #eef2eb;
  padding: 12px;
}

.gallery-card figcaption {
  padding: 18px 20px 20px;
  color: var(--text-soft);
  line-height: 1.6;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 54, 29, 0.88);
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 28px rgba(13, 38, 24, 0.2);
}

.gallery-nav-prev {
  left: 12px;
}

.gallery-nav-next {
  right: 12px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.gallery-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 71, 38, 0.22);
  cursor: pointer;
}

.gallery-dot.is-active {
  width: 34px;
  background: #2d6e37;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
}

.service-visual {
  display: grid;
  align-content: space-between;
  justify-items: start;
  position: relative;
  min-height: 170px;
  padding: 22px;
  background: linear-gradient(135deg, #355f36 0%, #203f25 100%);
  isolation: isolate;
}

.service-business {
  background: linear-gradient(135deg, #415f2d 0%, #254322 100%);
}

.service-garden {
  background: linear-gradient(135deg, #2f6942 0%, #1f4533 100%);
}

.service-photo,
.service-overlay {
  position: absolute;
  inset: 0;
}

.service-visual picture {
  position: absolute;
  inset: 0;
}

.service-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-photo-business {
  object-position: center top;
}

.service-photo-logo {
  object-fit: contain;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.service-overlay {
  background:
    linear-gradient(180deg, rgba(16, 38, 20, 0.08) 0%, rgba(16, 38, 20, 0.74) 100%),
    linear-gradient(135deg, rgba(53, 95, 54, 0.22) 0%, rgba(32, 63, 37, 0.68) 100%);
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.service-body h3,
.pests-panel h3,
.site-footer h3 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.service-lead {
  margin: 12px 0 0;
  color: var(--hero);
  font-weight: 700;
}

.service-body p {
  margin: 10px 0 0;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.service-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf4ea;
  color: #27492a;
  font-size: 0.85rem;
  font-weight: 600;
}

.pests-panel {
  margin-top: 26px;
  padding: 28px 22px;
  border-radius: 28px;
  background: var(--hero);
  color: #ffffff;
}

.pest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.pest-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.cta-section {
  background: var(--hero);
}

.cta-box {
  padding: 36px 24px;
  text-align: center;
  background: linear-gradient(180deg, #234e29 0%, #17361d 100%);
  color: #ffffff;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.cta-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.site-footer {
  background: #17361d;
  color: #ffffff;
}

.footer-grid {
  padding: 48px 0 32px;
}

.footer-brand p {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  padding: 20px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--success);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 215, 87, 0.34);
}

@media (max-width: 479px) {
  .hero-rating {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
  }

  .hero-rating-laurel,
  .hero-rating-laurel-right {
    display: none;
  }
}

@media (min-width: 760px) {
  .clients-grid,
  .review-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-carousel {
    max-width: 440px;
    margin: 0 auto;
  }

  .pest-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .header-row {
    grid-template-columns: auto 1fr auto auto;
    gap: 24px;
  }

  .desktop-nav {
    display: inline-flex;
    justify-self: center;
    gap: 28px;
  }

  .desktop-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 10px;
    background: var(--success);
    color: #ffffff;
    font-weight: 700;
  }

  .menu-toggle {
    display: none;
  }

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

  .hero-backdrop-photo {
    /* Desktop needs extra height and a right-biased crop so the subject stays in frame. */
    top: -36%;
    width: 112%;
    height: 154%;
    object-position: 100% 22%;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero-lead {
    max-width: 34ch;
  }

  .button-primary {
    width: auto;
    min-width: 320px;
  }

  .clients-grid,
  .review-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-carousel {
    max-width: 480px;
  }

  .pest-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
