:root {
  --ink: #1f2a24;
  --muted: #667066;
  --deep: #123325;
  --green: #2f7a4f;
  --green-dark: #225c3c;
  --leaf: #dbeedd;
  --clay: #b96c3b;
  --clay-soft: #f4dfd2;
  --sky: #e7f0f3;
  --paper: #fbfaf5;
  --white: #ffffff;
  --line: #dce5dc;
  --shadow: 0 18px 50px rgba(31, 42, 36, 0.13);
  --soft-shadow: 0 10px 28px rgba(31, 42, 36, 0.08);
  --motion-ease: cubic-bezier(0.21, 0.72, 0.26, 1);
  --motion-slow: 720ms;
  --motion-medium: 520ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.topbar {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-hours {
  color: #f6e4ce;
  font-weight: 850;
  white-space: nowrap;
}

.topbar a {
  color: #f7d7bf;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid rgba(220, 229, 220, 0.88);
  transition: box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 245, 0.96);
  border-color: rgba(220, 229, 220, 0.62);
  box-shadow: 0 10px 32px rgba(31, 42, 36, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.brand-logo {
  width: 195px;
  height: 103px;
  flex: 0 0 195px;
  object-fit: contain;
  border-radius: 8px;
  background: transparent;
  padding: 6px;
  box-shadow: none;
}

.site-header .brand-logo {
  mix-blend-mode: multiply;
}

.site-footer .brand-logo {
  background: var(--white);
  mix-blend-mode: normal;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--deep);
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #465247;
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links a {
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--deep);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 3px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s var(--motion-ease), box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 12px 28px rgba(47, 122, 79, 0.24);
}

.button.small {
  min-height: 42px;
  padding-inline: 16px;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  box-shadow: none;
}

.button.light {
  background: var(--white);
  color: var(--deep);
}

.button.light:hover {
  background: #f5f5ee;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.94) 0%, rgba(18, 51, 37, 0.8) 48%, rgba(18, 51, 37, 0.18) 100%),
    url("assets/work-photos/rios-modern-desert-front-yard.jpg") center 58% / cover;
  color: var(--white);
}

.hero.service-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.94) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-modern-desert-front-yard.jpg") center 58% / cover;
}

.hero.city-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(33, 84, 58, 0.82) 54%, rgba(33, 84, 58, 0.22) 100%),
    url("assets/work-photos/rios-flowering-curb-appeal.jpg") center 58% / cover;
}

.hero.combo-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.8) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-upscale-desert-yard.jpg") center 58% / cover;
}

.hero.service-index-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 50%, rgba(18, 51, 37, 0.16) 100%),
    url("assets/work-photos/rios-palm-desert-landscape.jpg") center 58% / cover;
}

.hero.maintenance-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-modern-desert-front-yard.jpg") center 58% / cover;
}

.hero.irrigation-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-yellow-tree-front-yard.jpg") center 52% / cover;
}

.hero.plants-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-desert-shrubs-tree.jpg") center 58% / cover;
}

.hero.trim-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-tree-care-front-yard.jpg") center 52% / cover;
}

.hero.weed-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-shaded-front-landscape.jpg") center 58% / cover;
}

.hero.grass-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.2) 100%),
    url("assets/work-photos/rios-flowering-curb-appeal.jpg") center 58% / cover;
}

.hero.about-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.78) 52%, rgba(18, 51, 37, 0.22) 100%),
    url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://assets.cdn.filesafe.space/3CCm56O6h4VOE5w1fD8w/media/6986a4da5f93993be7a4f65f.png") center 32% / cover;
}

.hero.contact-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.8) 52%, rgba(18, 51, 37, 0.22) 100%),
    url("https://images.leadconnectorhq.com/image/f_webp/q_80/r_1200/u_https://storage.googleapis.com/msgsndr/3CCm56O6h4VOE5w1fD8w/media/6924d1c32a79271441555d23.jpg") center / cover;
}

.hero.blog-hero {
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.95) 0%, rgba(18, 51, 37, 0.79) 50%, rgba(18, 51, 37, 0.18) 100%),
    url("assets/work-photos/rios-yellow-tree-front-yard.jpg") center 58% / cover;
}

.hero-grid {
  display: block;
  padding: 86px 0;
}

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

.eyebrow {
  margin: 0 0 13px;
  color: #f3c5a7;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 4.9rem, 5.2rem);
  line-height: 1.02;
  font-weight: 950;
}

h2 {
  margin-bottom: 14px;
  color: var(--deep);
  font-size: clamp(2rem, 3.2rem, 3.45rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 1.2rem;
  line-height: 1.22;
}

.lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  max-width: 700px;
}

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

.quote-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.quote-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.28rem;
}

.quote-card p,
.quote-card li {
  color: rgba(255, 255, 255, 0.82);
}

.quote-card ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.quote-card li {
  padding: 10px 0 10px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
}

.quote-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f3c5a7;
}

.proof-strip {
  padding: 0;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-grid div {
  padding: 26px;
  border-right: 1px solid var(--line);
}

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

.proof-grid strong {
  display: block;
  color: var(--deep);
  font-size: 1.1rem;
}

.proof-grid span {
  color: var(--muted);
}

.reviews-section {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(18, 51, 37, 0.94), rgba(34, 92, 60, 0.88)),
    url("assets/work-photos/rios-flowering-curb-appeal.jpg") center 58% / cover;
  color: var(--white);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 38px;
  align-items: center;
}

.reviews-widget-wrap {
  display: grid;
  gap: 26px;
}

.reviews-copy {
  max-width: 470px;
}

.reviews-widget-heading {
  max-width: 820px;
}

.reviews-widget-heading .button {
  margin-top: 6px;
}

.reviews-copy .eyebrow {
  color: #f5cbaa;
}

.reviews-copy h2 {
  color: var(--white);
}

.reviews-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.review-score {
  display: grid;
  gap: 2px;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.reviews-widget-heading .review-score {
  display: none;
}

.review-score-stars,
.review-stars {
  color: #ffd36b;
  letter-spacing: 0.08em;
  font-weight: 950;
}

.review-score strong {
  font-size: 1.18rem;
}

.review-score small {
  color: rgba(255, 255, 255, 0.72);
}

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

.review-card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.ghl-review-widget-shell {
  min-width: 0;
  min-height: 390px;
  max-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.ghl-review-widget-shell iframe {
  display: block;
  width: 100% !important;
  min-height: 390px;
  max-height: 520px;
  border: 0;
}

.review-card p {
  margin: 14px 0 22px;
  color: var(--muted);
}

.review-author {
  display: grid;
  gap: 2px;
  margin-top: auto;
}

.review-author strong {
  color: var(--deep);
}

.review-author span {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 850;
}

.section {
  padding: 88px 0;
}

.section.soft {
  background: #eef6ef;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.two-col p,
.split p,
.steps-grid p,
.legal p,
.legal li {
  color: var(--muted);
}

.service-grid,
.area-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.service-card,
.area-card,
.detail-card,
.feature-grid article,
.side-box,
.form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-card,
.area-card,
.detail-card,
.feature-grid article {
  padding: 26px;
  min-height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card:hover,
.area-card:hover,
.detail-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 122, 79, 0.42);
  box-shadow: var(--shadow);
}

.area-card span {
  display: inline-flex;
  margin-bottom: 15px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.city-icon {
  width: 100%;
  height: 118px;
  margin-bottom: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 211, 107, 0.46) 0 14%, transparent 15%),
    linear-gradient(145deg, #f7fbf4, #dcefdc);
}

.city-icon svg {
  width: min(190px, 84%);
  height: 100%;
}

.city-icon .city-line,
.city-icon .city-ground {
  fill: none;
  stroke: var(--green-dark);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.city-icon .city-fill {
  fill: #cfe6c8;
  stroke: var(--green-dark);
  stroke-width: 3.5;
  stroke-linejoin: round;
}

.city-icon .city-sun {
  fill: #f4c16c;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 28%, #ffffff 0 18%, transparent 19%),
    linear-gradient(145deg, #e4f2dc, #c9e5c9);
  color: var(--green-dark);
  box-shadow: inset 0 -6px 14px rgba(47, 122, 79, 0.1), 0 10px 24px rgba(31, 42, 36, 0.08);
}

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

.service-icon.compact {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.service-icon.compact svg {
  width: 34px;
  height: 34px;
  stroke-width: 4.4;
}

.offer-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9) 0 18%, transparent 19%),
    linear-gradient(145deg, #f1f7e8, #cfe7d1);
  color: var(--green-dark);
  box-shadow: inset 0 -6px 14px rgba(47, 122, 79, 0.08), 0 10px 22px rgba(31, 42, 36, 0.07);
}

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

.service-card p,
.area-card p,
.detail-card p,
.feature-grid p,
.side-box p,
.side-box li {
  color: var(--muted);
}

.service-card strong {
  color: var(--green);
  font-weight: 950;
}

.center-action {
  margin-top: 30px;
  text-align: center;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.service-detail-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-points {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.detail-points article {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.detail-points article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-points h3,
.detail-card h3 {
  margin-bottom: 8px;
  color: var(--deep);
}

.detail-points p {
  margin: 0;
  color: var(--muted);
}

.service-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-photo-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.service-photo-card figcaption {
  padding: 14px 18px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  background: #f3f8f1;
}

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

.detail-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.not-found-page {
  min-height: 62vh;
  display: grid;
  align-items: center;
}

.not-found-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.not-found-copy {
  max-width: 760px;
}

.not-found-links {
  display: grid;
  gap: 12px;
}

.not-found-links a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.not-found-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 122, 79, 0.42);
  box-shadow: var(--shadow);
}

.not-found-links span {
  color: var(--deep);
  font-weight: 950;
}

.not-found-links small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.compact-steps article {
  align-items: start;
}

.split,
.two-col,
.contact-grid,
.steps-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.two-col,
.contact-grid {
  align-items: start;
}

.contact-grid {
  width: min(1360px, calc(100% - 40px));
  grid-template-columns: minmax(520px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
}

.contact-grid > * {
  min-width: 0;
}

.quote-phone-line {
  white-space: nowrap;
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.quote-phone-line span {
  white-space: nowrap;
}

.quote-call-button {
  margin: 8px 0 18px;
}

.quote-form-note {
  margin-top: 0;
  color: var(--muted);
}

.quote-intake-panel {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(50, 112, 75, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(50, 112, 75, 0.08), rgba(245, 193, 115, 0.12)),
    var(--white);
  box-shadow: 0 18px 40px rgba(18, 51, 37, 0.08);
}

.quote-intake-panel h3 {
  max-width: 560px;
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.18;
}

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

.quote-detail-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  column-gap: 12px;
  row-gap: 4px;
  padding: 13px 0;
  border-top: 1px solid rgba(102, 112, 102, 0.16);
}

.quote-detail-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--clay);
  box-shadow: 0 0 0 6px rgba(185, 108, 59, 0.12);
  content: "";
}

.quote-detail-list strong,
.quote-detail-list span {
  grid-column: 2;
}

.quote-detail-list strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.quote-detail-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.media-panel {
  min-height: 470px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(47, 122, 79, 0.04), rgba(185, 108, 59, 0.18)),
    url("assets/work-photos/rios-desert-shrubs-tree.jpg") center / cover;
  box-shadow: var(--shadow);
}

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

.work-photo-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 8px;
  background: #d7ded5;
  box-shadow: var(--soft-shadow);
}

.work-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.work-photo-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(18, 51, 37, 0.88);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.before-after-carousel {
  position: relative;
}

.before-after-carousel::before,
.before-after-carousel::after {
  position: absolute;
  top: 0;
  bottom: 18px;
  z-index: 2;
  width: 72px;
  pointer-events: none;
  content: "";
}

.before-after-carousel::before {
  left: -1px;
  background: linear-gradient(90deg, var(--cream) 0%, rgba(246, 244, 238, 0) 100%);
}

.before-after-carousel::after {
  right: -1px;
  background: linear-gradient(270deg, var(--cream) 0%, rgba(246, 244, 238, 0) 100%);
}

.before-after-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(420px, 520px);
  gap: 22px;
  margin: 0 -28px;
  padding: 8px 84px 10px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: 84px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.before-after-scroll::-webkit-scrollbar {
  display: none;
}

.before-after-scroll .before-after-card {
  scroll-snap-align: start;
}

.scroll-button {
  position: absolute;
  top: 42%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(246, 244, 238, 0.68);
  border-radius: 999px;
  background: rgba(18, 51, 37, 0.92);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(18, 51, 37, 0.22);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.scroll-button:hover {
  background: var(--green);
  transform: translateY(-50%) scale(1.04);
}

.scroll-button:focus-visible {
  outline: 3px solid rgba(245, 193, 115, 0.72);
  outline-offset: 3px;
}

.scroll-button:disabled {
  opacity: 0.32;
  cursor: default;
  transform: translateY(-50%);
}

.scroll-button-prev {
  left: 8px;
}

.scroll-button-next {
  right: 8px;
}

.before-after-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.comparison-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #d7ded5;
}

.comparison-photos figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
}

.comparison-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-photos figcaption {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 51, 37, 0.88);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.before-after-copy {
  padding: 24px;
  display: grid;
  align-content: center;
}

.before-after-copy span {
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.before-after-copy p {
  color: var(--muted);
}

.check-list,
.mini-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.mini-list li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid rgba(102, 112, 102, 0.18);
}

.check-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--clay);
}

.side-box {
  padding: 28px;
}

.side-box .button {
  width: 100%;
  margin-top: 18px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  row-gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 950;
}

.steps p {
  grid-column: 2;
  margin-bottom: 0;
}

.cta-band {
  padding-block: 70px;
  background: var(--deep);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  color: var(--white);
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.faq-wrap {
  max-width: 920px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(31, 42, 36, 0.06);
}

.faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--deep);
  font-weight: 950;
}

.faq p {
  padding: 0 22px 22px;
  color: var(--muted);
}

.link-cluster {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cluster-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-dark);
  font-weight: 800;
}

.form-card {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.ghl-form-card {
  padding: 34px 0 0;
  min-height: 1039px;
  overflow: hidden;
  border-radius: 20px;
}

.form-local-preview {
  display: none;
  min-height: 520px;
  padding: 38px;
  place-content: center;
  gap: 16px;
  background: linear-gradient(135deg, #f7f4ec 0%, #eef6ea 100%);
}

.form-local-preview h3 {
  max-width: 620px;
  margin: 0;
  color: var(--deep);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.form-local-preview p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.form-local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.ghl-form-card iframe {
  display: block;
  width: 100%;
  min-height: 1005px;
  border: 0;
}

.local-preview .ghl-form-card {
  min-height: 520px;
}

.local-preview .form-local-preview {
  display: grid;
}

.local-preview .ghl-form-card iframe {
  display: none;
}

label {
  display: grid;
  gap: 7px;
  color: var(--deep);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd9cc;
  border-radius: 8px;
  padding: 11px 13px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

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

.form-message {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--leaf);
  color: var(--green-dark);
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-grid.full {
  grid-template-columns: repeat(2, 1fr);
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 28px;
}

.blog-topic-strip span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 122, 79, 0.42);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-card span,
.article-meta span {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card p {
  color: var(--muted);
}

.blog-card strong {
  color: var(--green);
  font-weight: 950;
}

.about-photo-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-photo-card img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.team-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  background: #e7e0cf;
}

.team-card div {
  padding: 24px;
}

.team-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card p {
  color: var(--muted);
}

.article-hero {
  padding: 86px 0;
  background: #eef6ef;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
}

.article-hero h1 {
  max-width: 760px;
  color: var(--deep);
}

.article-hero .lead {
  color: var(--muted);
}

.article-hero img {
  width: 100%;
  min-height: 360px;
  max-height: 460px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-meta span {
  margin: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 54px;
  align-items: start;
}

.article-content {
  max-width: 760px;
}

.article-section {
  padding: 0 0 30px;
}

.article-section h2,
.article-cta h2 {
  font-size: clamp(1.65rem, 2.4rem, 2.55rem);
}

.article-section p,
.article-cta p {
  color: var(--muted);
  font-size: 1.05rem;
}

.article-list {
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.article-list li {
  margin: 8px 0;
}

.article-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #eef6ef;
  color: var(--deep);
  font-weight: 760;
}

.article-inline-image {
  margin: 24px 0 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.article-inline-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.article-inline-image figcaption {
  padding: 12px 16px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  background: #f3f8f1;
}

.article-cta {
  margin-top: 14px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.article-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 116px;
}

.legal {
  max-width: 860px;
}

.legal h1 {
  color: var(--deep);
  font-size: clamp(2.2rem, 3.7rem, 4rem);
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.7rem;
}

.site-footer {
  padding: 56px 0 28px;
  background: #10281e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer .brand strong,
.site-footer h3 {
  color: var(--white);
}

.site-footer .brand small,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

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

.footer-links a:hover {
  color: #f3c5a7;
}

.fine-print {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.motion-ready .hero {
  animation: heroPresence 900ms var(--motion-ease) both;
}

.motion-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity var(--motion-medium) var(--motion-ease) var(--motion-delay, 0ms),
    transform var(--motion-slow) var(--motion-ease) var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

.motion-ready [data-animate="hero"] {
  transform: translate3d(0, 18px, 0);
}

.motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .service-card[data-animate].is-visible:hover,
.motion-ready .area-card[data-animate].is-visible:hover,
.motion-ready .detail-card[data-animate].is-visible:hover,
.motion-ready .blog-card[data-animate].is-visible:hover,
.motion-ready .faq details[data-animate].is-visible:hover,
.motion-ready .steps article[data-animate].is-visible:hover,
.motion-ready .side-box[data-animate].is-visible:hover,
.motion-ready .form-card[data-animate].is-visible:hover {
  transform: translateY(-2px);
}

.service-icon,
.offer-icon,
.city-icon,
.brand-logo {
  transition: transform 0.32s var(--motion-ease), box-shadow 0.32s ease;
}

.service-card:hover .service-icon,
.detail-card:hover .offer-icon,
.area-card:hover .city-icon {
  transform: translateY(-4px) scale(1.03);
}

.service-photo-card,
.before-after-card,
.work-photo-grid figure,
.blog-card,
.about-photo-card,
.team-card {
  isolation: isolate;
}

.service-photo-card img,
.comparison-photos img,
.work-photo-grid img,
.blog-card img,
.about-photo-card img,
.team-card img,
.article-hero img,
.article-inline-image img {
  transition: transform 0.7s var(--motion-ease), filter 0.7s ease;
}

.service-photo-card:hover img,
.before-after-card:hover .comparison-photos img,
.work-photo-grid figure:hover img,
.blog-card:hover img,
.about-photo-card:hover img,
.team-card:hover img,
.article-inline-image:hover img {
  transform: scale(1.035);
}

.faq details,
.cluster-links a,
.footer-links a {
  transition: transform 0.22s var(--motion-ease), border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.faq details:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 122, 79, 0.28);
  box-shadow: 0 14px 34px rgba(31, 42, 36, 0.09);
}

.cluster-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 122, 79, 0.32);
  background: #f3f8f1;
}

.footer-links a:hover {
  transform: translateX(2px);
}

.proof-grid > *,
.steps article,
.cta-panel,
.side-box,
.form-card {
  transition-property: transform, box-shadow, border-color, background;
  transition-duration: 0.28s;
  transition-timing-function: var(--motion-ease);
}

.steps article:hover,
.side-box:hover,
.form-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 122, 79, 0.28);
  box-shadow: var(--shadow);
}

@keyframes heroPresence {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 940px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .topbar-inner a,
  .topbar-hours {
    display: inline-flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 88px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links .button {
    width: 100%;
  }

  .hero-grid,
  .proof-grid,
  .reviews-layout,
  .review-grid,
  .service-grid,
  .service-grid.small-grid,
  .area-grid,
  .detail-card-grid,
  .feature-grid,
  .blog-grid,
  .blog-grid.full,
  .work-photo-grid,
  .team-grid,
  .before-after-grid,
  .before-after-card,
  .service-detail-grid,
  .article-hero-grid,
  .article-layout,
  .not-found-wrap,
  .split,
  .two-col,
  .contact-grid,
  .steps-grid,
  .cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 560px;
  }

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1180px) {
  .contact-grid {
    grid-template-columns: 1fr;
    width: min(940px, calc(100% - 40px));
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .topbar {
    font-size: 0.78rem;
  }

  .topbar-inner {
    min-height: 36px;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 6px 0;
    text-align: left;
  }

  .topbar-inner > span:first-child {
    display: none;
  }

  .topbar-hours,
  .topbar a {
    min-width: 0;
    white-space: nowrap;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 160px;
    height: 85px;
    flex-basis: 160px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 70px 0 86px;
  }

  h1 {
    font-size: clamp(2.25rem, 3rem, 3.25rem);
  }

  h2 {
    font-size: clamp(1.9rem, 2.55rem, 2.7rem);
  }

  .quote-phone-line {
    font-size: clamp(1.28rem, 5.9vw, 1.9rem);
  }

  .hero-actions,
  .center-action {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }

  .service-card,
  .area-card,
  .detail-card,
  .feature-grid article,
  .review-card,
  .side-box,
  .form-card,
  .quote-card {
    padding: 22px;
  }

  .ghl-form-card {
    padding: 26px 0 0;
    min-height: 1031px;
  }

  .blog-card img {
    height: 200px;
  }

  .about-photo-card img {
    min-height: 300px;
  }

  .team-card img {
    height: 300px;
  }

  .article-hero {
    padding: 62px 0;
  }

  .article-hero img {
    min-height: 260px;
  }

  .article-sidebar {
    position: static;
  }

  .article-cta {
    padding: 22px;
  }

  .media-panel {
    min-height: 330px;
  }

  .service-photo-card img {
    height: 300px;
  }

  .work-photo-grid figure,
  .work-photo-grid img {
    min-height: 250px;
  }

  .steps article {
    grid-template-columns: 1fr;
  }

  .steps p {
    grid-column: 1;
  }

  .comparison-photos figure {
    min-height: clamp(220px, 62vw, 280px);
  }

  .comparison-photos figcaption {
    left: 10px;
    top: 10px;
    padding: 6px 8px;
    font-size: 0.66rem;
  }

  .before-after-scroll {
    grid-auto-columns: minmax(310px, 92vw);
    margin: 0 -18px;
    padding: 6px 58px 10px;
    scroll-padding-inline: 58px;
  }

  .before-after-carousel::before,
  .before-after-carousel::after {
    bottom: 8px;
    width: 44px;
  }

  .scroll-button {
    width: 42px;
    height: 42px;
  }

  .scroll-button-prev {
    left: 0;
  }

  .scroll-button-next {
    right: 0;
  }
}
