:root {
  --bg: #f6f6f2;
  --bg-alt: #eceee8;
  --surface: #ffffff;
  --surface-soft: #f7f8f4;
  --surface-moss: #f0f4ea;
  --text: #1f241d;
  --text-soft: #5f685b;
  --heading: #181d16;
  --line: #d7ddd0;
  --line-soft: #e3e8dd;
  --brand: #5f8f43;
  --brand-dark: #486f33;
  --brand-soft: #edf5e8;
  --accent: #c9a36a;
  --accent-soft: #f5eee3;
  --footer: #10130f;
  --footer-text: #d9dfd3;
  --shadow-xs: 0 8px 18px rgba(16, 19, 15, 0.05);
  --shadow-sm: 0 14px 30px rgba(16, 19, 15, 0.07);
  --shadow-md: 0 24px 54px rgba(16, 19, 15, 0.10);
  --shadow-lg: 0 34px 74px rgba(16, 19, 15, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 44px;
  --container: 1180px;
  --transition: 0.22s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(95, 143, 67, 0.06) 0%, rgba(95, 143, 67, 0) 20%),
    linear-gradient(180deg, #f8f8f4 0%, #f5f6f1 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

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

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

.container {
  width: 100%;
  max-width: calc(var(--container) + 40px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  color: var(--heading);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.85rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.42rem);
}

h4 {
  font-size: 1rem;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 143, 67, 0.2), rgba(95, 143, 67, 0.9));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 246, 242, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215, 221, 208, 0.9);
  box-shadow: 0 8px 20px rgba(16, 19, 15, 0.03);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  gap: 24px;
  min-height: 96px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 182px;
  max-width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--heading);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-phone,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.header-phone {
  justify-self: end;
  min-height: 48px;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--brand) 0%, #6d9f4d 100%);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: 0 14px 28px rgba(95, 143, 67, 0.24);
}

.header-phone:hover,
.btn:hover {
  transform: translateY(-1px);
}

.header-phone:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5d8f41 100%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--heading);
  border-radius: 999px;
}

.btn {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.97rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #6d9f4d 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(95, 143, 67, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #5b8840 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--heading);
  border-color: rgba(31, 36, 29, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(95, 143, 67, 0.25);
}

.hero {
  position: relative;
  padding: 76px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 163, 106, 0.10) 0%, rgba(201, 163, 106, 0) 28%),
    radial-gradient(circle at 100% 0%, rgba(95, 143, 67, 0.14) 0%, rgba(95, 143, 67, 0) 32%),
    linear-gradient(180deg, #f8f8f4 0%, #f2f4ee 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -180px -220px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 143, 67, 0.10) 0%, rgba(95, 143, 67, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.hero-content {
  max-width: 760px;
  padding-right: 8px;
}

.hero-content h1 {
  max-width: 9ch;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 4.4vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-interior-content h1 {
  max-width: 16ch;
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 3.4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero-text {
  max-width: 600px;
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.78;
}

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

.hero-urgency {
  margin: 0 0 22px;
  color: var(--brand-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-trust {
  display: grid;
  gap: 10px;
  max-width: 640px;
}

.hero-trust li {
  position: relative;
  padding-left: 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0;
  padding: 28px 0 34px;
}

.hero-media-enhanced::before {
  content: "";
  position: absolute;
  inset: 18px 0 34px 56px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(95, 143, 67, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-image-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.hero-image-card-large {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
}

.hero-feature-image {
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
}

.hero-highlight-card {
  position: relative;
  padding: 24px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #f2f6ed 100%);
  border: 1px solid rgba(216, 221, 211, 0.9);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.hero-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.hero-highlight-floating {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: -8px;
  z-index: 2;
  width: min(316px, 72%);
}

.hero-highlight-label {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-highlight-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.42rem, 2vw, 2rem);
}

.hero-highlight-card p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-interior {
  padding: 78px 0 56px;
}

.hero-interior .container {
  position: relative;
}

.hero-interior-content {
  max-width: 900px;
  padding: 36px 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.34) 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
}

.trust-bar {
  position: relative;
  z-index: 1;
  padding: 0 0 40px;
}

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

.trust-item {
  position: relative;
  padding: 22px 22px 20px;
  background: linear-gradient(135deg, #557f3d 0%, #628f46 100%);
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 18px 34px rgba(95, 143, 67, 0.20);
}

.trust-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.99rem;
}

.trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
}

.section,
.cta-section,
.before-after-section,
.media-support-section,
.service-area-section {
  position: relative;
  overflow: clip;
}

.section {
  padding: 96px 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(236, 238, 232, 0.92) 0%, rgba(242, 244, 238, 0.96) 100%);
}

.section-alt::before,
.media-support-section::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-alt::before {
  background: radial-gradient(circle at top right, rgba(95, 143, 67, 0.05), rgba(95, 143, 67, 0) 35%);
}

.narrow {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  position: relative;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
}

.section-heading-left {
  margin: 0 0 46px;
  text-align: left;
}

.section-heading-left p:last-child {
  max-width: 660px;
  margin: 0;
}

.services-grid,
.reasons-grid,
.reason-list,
.service-list,
.before-after-proof-grid {
  display: grid;
  gap: 22px;
}

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

.reasons-grid,
.reason-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.reason-card,
.reason-list-item,
.service-list-item {
  position: relative;
  height: 100%;
  min-width: 0;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 251, 247, 0.98) 100%);
  border: 1px solid rgba(216, 221, 211, 0.92);
  border-radius: 24px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card::after,
.reason-card::after,
.reason-list-item::after,
.service-list-item::after,
.media-image-card::after,
.media-placeholder-card::after,
.before-after-proof-card::after,
.cta-box::after,
.about-approach-band::after,
.property-feature-band::after,
.contact-details-band::after,
.primary-service-area-band::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.42);
  pointer-events: none;
}

.service-card:hover,
.reason-card:hover,
.reason-list-item:hover,
.service-list-item:hover,
.media-image-card:hover,
.before-after-proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(95, 143, 67, 0.20);
}

.service-card p,
.reason-card p,
.reason-list-item p,
.service-list-item p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.featured-service-card,
.featured-reason-card {
  background: linear-gradient(180deg, #f8fbf4 0%, #eef4e8 100%);
  border-color: rgba(95, 143, 67, 0.20);
  box-shadow: 0 20px 40px rgba(95, 143, 67, 0.10);
}

.featured-service-card h3,
.featured-reason-card h3 {
  position: relative;
  padding-top: 18px;
}

.featured-service-card h3::before,
.featured-reason-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.soft-service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8f4 100%);
}

.before-after-section {
  background:
    linear-gradient(180deg, rgba(236, 238, 232, 0.82) 0%, rgba(245, 246, 241, 0.98) 100%);
}

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

.before-after-proof-card {
  overflow: hidden;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.before-after-proof-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.before-after-proof-image-wrap img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.before-after-proof-card:hover .before-after-proof-image-wrap img {
  transform: scale(1.03);
}

.before-after-proof-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 19, 15, 0.18);
}

.before-card .before-after-proof-badge {
  background: rgba(20, 24, 18, 0.88);
}

.after-card .before-after-proof-badge {
  background: linear-gradient(135deg, var(--brand) 0%, #79ab58 100%);
}

.before-after-proof-card figcaption {
  padding: 16px 8px 8px;
  color: #4f584b;
  font-size: 0.95rem;
  line-height: 1.58;
}

.proof-hook {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.68;
}

.media-support-section {
  background: linear-gradient(180deg, #f8f9f5 0%, #f4f6f0 100%);
}

.media-support-section::before {
  background: radial-gradient(circle at left center, rgba(201, 163, 106, 0.08), rgba(201, 163, 106, 0) 30%);
}

.media-support-grid,
.media-support-grid-reverse {
  display: grid;
  gap: 36px;
  align-items: center;
}

.media-support-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.media-support-grid-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.media-copy-block p:not(.eyebrow) {
  max-width: 580px;
  color: var(--text-soft);
}

.media-image-card,
.media-placeholder-card {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 244, 0.98) 100%);
  border: 1px solid rgba(216, 221, 211, 0.92);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.media-image-card img {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-caption,
.media-image-card p,
.media-placeholder-card p {
  margin: 14px 0 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.62;
}

.media-placeholder-box {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 24px;
  border: 2px dashed rgba(95, 143, 67, 0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(95, 143, 67, 0.08), rgba(201, 163, 106, 0.08));
  text-align: center;
}

.media-placeholder-box span {
  color: var(--brand-dark);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.image-strip {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: #dfe6d7;
}

.image-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 19, 15, 0.08) 0%, rgba(16, 19, 15, 0.34) 100%);
}

.image-strip img {
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.image-strip-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 1;
  max-width: 560px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(14, 17, 13, 0.52);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.image-strip-overlay p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.about-difference-section .reason-card,
.contact-first-step-section .reason-card,
.gallery-page-cards .reason-card,
.why-this-works-section .reason-list-item,
.common-contact-reasons-section .reason-list-item,
.counties-served-section .reason-card,
.common-requests-section .reason-list-item {
  padding-top: 34px;
}

.about-difference-section .reason-card h3,
.contact-first-step-section .reason-card h3,
.why-this-works-section .reason-list-item h3,
.common-contact-reasons-section .reason-list-item h3,
.counties-served-section .reason-card h3,
.common-requests-section .reason-list-item h3 {
  position: relative;
}

.about-difference-section .reason-card h3::before,
.contact-first-step-section .reason-card h3::before,
.why-this-works-section .reason-list-item h3::before,
.common-contact-reasons-section .reason-list-item h3::before,
.counties-served-section .reason-card h3::before,
.common-requests-section .reason-list-item h3::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(95, 143, 67, 0.8));
}

.about-approach-band,
.property-feature-band,
.contact-details-band,
.primary-service-area-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 236, 0.98) 100%);
  border: 1px solid rgba(216, 221, 211, 0.95);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.about-approach-copy p:not(.eyebrow),
.property-feature-copy p:not(.eyebrow),
.contact-details-copy p:not(.eyebrow),
.primary-service-area-copy p:not(.eyebrow) {
  color: var(--text-soft);
}

.about-approach-details,
.property-feature-detail,
.contact-details-panel,
.primary-service-area-details {
  align-self: stretch;
  padding: 26px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(216, 221, 211, 0.92);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.about-approach-list,
.contact-details-list,
.primary-service-area-list,
.service-area-list {
  display: grid;
  gap: 12px;
}

.about-approach-list li,
.contact-details-list li,
.primary-service-area-list li,
.service-area-list li {
  position: relative;
  padding-left: 18px;
  color: var(--heading);
  font-weight: 700;
}

.about-approach-list li::before,
.contact-details-list li::before,
.primary-service-area-list li::before,
.service-area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.primary-service-area-section {
  background: linear-gradient(180deg, rgba(236, 238, 232, 0.9) 0%, rgba(244, 246, 241, 0.98) 100%);
}

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

.service-area-list li {
  padding: 18px 20px 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 250, 247, 0.98) 100%);
  border: 1px solid rgba(216, 221, 211, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow-xs);
}

.service-area-list li::before {
  left: 18px;
}

.service-area-list li {
  padding-left: 38px;
}

.most-requested-section .service-card {
  background: linear-gradient(180deg, #fbfcf8 0%, #f1f5eb 100%);
}

.cleanup-control-section .service-list-item,
.contact-message-examples-section .service-list-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 237, 0.94) 100%);
}

.ongoing-maintenance-section .service-card,
.who-this-is-for-section .service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 244, 0.96) 100%);
}

.why-homeowners-reach-out-section .service-list-item,
.common-requests-section .reason-list-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 245, 236, 0.92) 100%);
}

.counties-served-grid,
.contact-first-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compact-service-list,
.contact-message-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.reason-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cta-section {
  padding: 96px 0 116px;
}

.cta-section::before {
  background: radial-gradient(circle at 20% 20%, rgba(201, 163, 106, 0.08), rgba(201, 163, 106, 0) 34%);
}

.cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 46px 50px;
  background: linear-gradient(135deg, #557f3d 0%, #67994a 100%);
  border-radius: 34px;
  box-shadow: 0 30px 64px rgba(71, 108, 51, 0.28);
}

.cta-copy {
  max-width: 700px;
}

.cta-box .eyebrow,
.cta-box h2,
.cta-box p {
  color: #fff;
}

.cta-box .eyebrow {
  opacity: 0.88;
}

.cta-box .eyebrow::before {
  background: rgba(255, 255, 255, 0.46);
}

.cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-subtext,
.cta-urgency {
  margin-top: 10px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-box .btn-primary {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

.cta-box .btn-primary:hover {
  background: #f3f6ef;
}

.cta-box .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  box-shadow: none;
}

.cta-box .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(95, 143, 67, 0.14) 0%, rgba(95, 143, 67, 0) 28%),
    var(--footer);
  color: var(--footer-text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding: 72px 0 36px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.site-footer p {
  max-width: 430px;
  color: rgba(217, 223, 211, 0.82);
}

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

.footer-links a {
  color: rgba(217, 223, 211, 0.92);
  transition: color var(--transition), transform var(--transition);
}

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

.footer-bottom {
  padding: 22px 0 34px;
  border-top: 1px solid rgba(217, 223, 211, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(217, 223, 211, 0.68);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero-grid,
  .media-support-grid,
  .media-support-grid-reverse,
  .service-area-layout,
  .about-approach-band,
  .property-feature-band,
  .contact-details-band,
  .primary-service-area-band {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media-enhanced::before {
    inset: 24px 0 0 24px;
  }

  .hero-image-card-large {
    max-width: 760px;
  }

  .hero-highlight-floating {
    left: 24px;
    bottom: 24px;
  }

  .services-grid,
  .service-list,
  .compact-service-list,
  .contact-message-list,
  .reasons-grid,
  .reason-list,
  .counties-served-grid,
  .contact-first-step-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-strip {
    height: 360px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 16px;
    min-height: auto;
    padding: 16px 0;
  }

  .logo-image {
    width: 164px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
    padding: 10px 0 6px;
  }

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

  .site-nav a::after {
    display: none;
  }

  .header-phone {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 6px;
  }
}

@media (max-width: 860px) {
  .hero,
  .hero-interior {
    padding: 42px 0 36px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
  }

  .hero-media {
    order: 1;
    display: block;
  }

  .hero-media-enhanced::before,
  .hero-highlight-floating {
    display: none;
  }

  .hero-image-card-large {
    max-width: 100%;
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(16, 19, 15, 0.12);
  }

  .hero-feature-image {
    aspect-ratio: 4 / 2.95;
  }

  .hero-interior-content {
    padding: 28px 24px;
    border-radius: 24px;
  }

  .hero-content h1,
  .hero-interior-content h1 {
    margin-bottom: 12px;
    font-size: 2.45rem;
    line-height: 0.98;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions {
    gap: 10px;
    margin: 22px 0 14px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.92rem;
  }

  .section,
  .cta-section {
    padding: 72px 0;
  }

  .cta-box,
  .about-approach-band,
  .property-feature-band,
  .contact-details-band,
  .primary-service-area-band {
    padding: 28px 22px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services-grid,
  .service-list,
  .compact-service-list,
  .contact-message-list,
  .reasons-grid,
  .reason-list,
  .counties-served-grid,
  .contact-first-step-grid,
  .trust-grid,
  .before-after-proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .reason-card,
  .reason-list-item,
  .service-list-item,
  .about-approach-details,
  .property-feature-detail,
  .contact-details-panel,
  .primary-service-area-details,
  .media-image-card,
  .media-placeholder-card {
    padding: 24px;
  }

  .image-strip {
    height: 280px;
  }

  .image-strip-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .btn,
  .header-phone {
    width: 100%;
  }

  .cta-actions {
    width: 100%;
  }
}


.dynamic-contact-link--header {
  white-space: nowrap;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.estimate-section {
  padding-top: 32px;
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.estimate-copy-panel,
.estimate-form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,248,244,0.98) 100%);
  box-shadow: var(--shadow-sm);
}

.estimate-copy-panel {
  padding: 34px 32px;
}

.estimate-lead {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.estimate-points {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.estimate-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text-soft);
}

.estimate-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(95, 143, 67, 0.12);
}

.estimate-side-note,
.estimate-form-note {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.estimate-form-note a,
.local-pages-grid a {
  color: var(--brand-dark);
  font-weight: 700;
}

.estimate-form-shell {
  padding: 28px;
}

.estimate-form {
  display: grid;
  gap: 16px;
}

.estimate-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--heading);
  font-size: 0.9rem;
  font-weight: 700;
}

.estimate-form input,
.estimate-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.estimate-form textarea {
  min-height: 160px;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
  outline: none;
  border-color: rgba(95, 143, 67, 0.9);
  box-shadow: 0 0 0 4px rgba(95, 143, 67, 0.12);
}

.estimate-submit {
  width: 100%;
}

.local-pages-section .service-card a:hover {
  color: var(--brand-dark);
}

@media (max-width: 900px) {
  .estimate-layout,
  .estimate-form-grid {
    grid-template-columns: 1fr;
  }

  .estimate-copy-panel,
  .estimate-form-shell {
    padding: 24px;
  }
}


.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex !important;
  }
}

.service-area-list a,
.footer-links a.local-link,
.county-link-card {
  color: inherit;
}

.service-area-list a {
  display: block;
}

.county-link-card {
  display: block;
}

.footer-links a.local-link {
  color: rgba(217, 223, 211, 0.92);
}

.footer-links a.local-link:hover {
  color: #fff;
}

/* Page-specific polish to restore variation and stronger visual hierarchy */
.page-home .hero-content h1 {
  max-width: 11ch;
}

.page-about .hero-about,
.page-services .hero-services,
.page-service-areas .hero-service-areas,
.page-gallery .hero-gallery,
.page-contact .hero-contact,
.page-local-seo .hero-local {
  position: relative;
  isolation: isolate;
}

.page-about .hero-interior,
.page-services .hero-interior,
.page-service-areas .hero-interior,
.page-gallery .hero-interior,
.page-contact .hero-interior,
.page-local-seo .hero-interior {
  padding: 82px 0 62px;
}

.page-about .hero-interior::before,
.page-services .hero-interior::before,
.page-service-areas .hero-interior::before,
.page-gallery .hero-interior::before,
.page-contact .hero-interior::before,
.page-local-seo .hero-interior::before {
  content: "";
  position: absolute;
  inset: 18px 0 0;
  pointer-events: none;
  z-index: 0;
}

.page-about .hero-interior::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 163, 106, 0.12), rgba(201, 163, 106, 0) 28%),
    radial-gradient(circle at 88% 22%, rgba(95, 143, 67, 0.10), rgba(95, 143, 67, 0) 30%);
}

.page-services .hero-interior::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(95, 143, 67, 0.13), rgba(95, 143, 67, 0) 29%),
    linear-gradient(180deg, rgba(240, 245, 236, 0.75), rgba(240, 245, 236, 0));
}

.page-service-areas .hero-interior::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(201, 163, 106, 0.12), rgba(201, 163, 106, 0) 26%),
    radial-gradient(circle at 82% 20%, rgba(95, 143, 67, 0.08), rgba(95, 143, 67, 0) 28%);
}

.page-gallery .hero-interior::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(95, 143, 67, 0.12), rgba(95, 143, 67, 0) 26%),
    radial-gradient(circle at 24% 28%, rgba(201, 163, 106, 0.10), rgba(201, 163, 106, 0) 24%);
}

.page-contact .hero-interior::before {
  background:
    radial-gradient(circle at 15% 22%, rgba(95, 143, 67, 0.12), rgba(95, 143, 67, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.page-local-seo .hero-interior::before {
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 163, 106, 0.13), rgba(201, 163, 106, 0) 25%),
    radial-gradient(circle at 12% 24%, rgba(95, 143, 67, 0.08), rgba(95, 143, 67, 0) 24%);
}

.page-about .hero-interior-content,
.page-services .hero-interior-content,
.page-service-areas .hero-interior-content,
.page-gallery .hero-interior-content,
.page-contact .hero-interior-content,
.page-local-seo .hero-interior-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 42px 46px;
  border-radius: 34px;
  box-shadow: 0 24px 56px rgba(16, 19, 15, 0.08);
}

.page-about .hero-interior-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(246, 240, 231, 0.78) 100%);
}

.page-services .hero-interior-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 245, 232, 0.84) 100%);
}

.page-service-areas .hero-interior-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 243, 236, 0.82) 100%);
}

.page-gallery .hero-interior-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 246, 239, 0.82) 100%);
}

.page-contact .hero-interior-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(236, 244, 232, 0.88) 100%);
}

.page-local-seo .hero-interior-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 242, 235, 0.84) 100%);
}

.page-about .hero-interior-content h1,
.page-services .hero-interior-content h1,
.page-service-areas .hero-interior-content h1,
.page-gallery .hero-interior-content h1,
.page-contact .hero-interior-content h1,
.page-local-seo .hero-interior-content h1 {
  max-width: 18ch;
  font-size: clamp(2.3rem, 3vw, 3.4rem);
}

.page-gallery .hero-interior-content h1,
.page-local-seo .hero-interior-content h1 {
  max-width: 20ch;
}

.page-services .most-requested-section .service-card:nth-child(3n + 1),
.page-services .ongoing-maintenance-section .service-card:nth-child(3n + 1) {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ef 100%);
}

.page-services .most-requested-section .service-card:nth-child(3n + 2),
.page-services .ongoing-maintenance-section .service-card:nth-child(3n + 2) {
  background: linear-gradient(180deg, #ffffff 0%, #f8f3ea 100%);
}

.page-services .most-requested-section .service-card:nth-child(3n),
.page-services .ongoing-maintenance-section .service-card:nth-child(3n) {
  background: linear-gradient(180deg, #ffffff 0%, #f5f6f2 100%);
}

.page-about .reason-card:nth-child(odd),
.page-contact .reason-list-item:nth-child(odd),
.page-service-areas .reason-list-item:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,247,239,0.95) 100%);
}

.page-about .reason-card:nth-child(even),
.page-contact .reason-list-item:nth-child(even),
.page-service-areas .reason-list-item:nth-child(even) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(249,244,236,0.95) 100%);
}

.page-about .about-approach-band,
.page-service-areas .primary-service-area-band,
.page-contact .contact-details-band,
.page-services .property-feature-band {
  box-shadow: var(--shadow-md);
}

.page-local-seo .section-alt,
.page-service-areas .section-alt {
  background: linear-gradient(180deg, rgba(238, 240, 234, 0.9) 0%, rgba(245, 246, 241, 0.98) 100%);
}

.page-local-seo .service-list-item:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,247,239,0.94) 100%);
}

.page-local-seo .service-list-item:nth-child(even) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,243,236,0.94) 100%);
}

.page-gallery .section:first-of-type .service-card:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,247,239,0.95) 100%);
}

.page-gallery .section:first-of-type .service-card:nth-child(even) {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,243,236,0.95) 100%);
}

.page-service-areas .service-area-list li,
.page-local-seo .service-area-list li {
  box-shadow: 0 14px 28px rgba(16, 19, 15, 0.06);
}

.page-about .section-heading,
.page-services .section-heading,
.page-service-areas .section-heading,
.page-gallery .section-heading,
.page-contact .section-heading,
.page-local-seo .section-heading {
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .page-about .hero-interior-content,
  .page-services .hero-interior-content,
  .page-service-areas .hero-interior-content,
  .page-gallery .hero-interior-content,
  .page-contact .hero-interior-content,
  .page-local-seo .hero-interior-content {
    padding: 30px 24px;
  }
}
