:root {
  --green-900: #0d3b1f;
  --green-800: #14532d;
  --green-700: #166534;
  --green-600: #1d7a43;
  --green-500: #2ea85e;
  --green-400: #52c878;
  --green-300: #9be5b2;
  --green-200: #d9f7e1;
  --white: #ffffff;
  --text: #183020;
  --muted: #567061;
  --bg: #f7fdf8;
  --line: #d8eadb;
  --shadow: 0 15px 40px rgba(24, 48, 32, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 80px 0; }
.section-light { background: linear-gradient(180deg, #fbfffb 0%, #effaf1 100%); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2 { font-size: clamp(2rem, 3vw, 3rem); margin: 10px 0 12px; line-height: 1.1; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.eyebrow {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e4f8e8;
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: .85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 234, 219, 0.9);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: var(--shadow);
}
.brand-text strong { display: block; font-size: 1rem; }
.brand-text small { color: var(--muted); }
.site-nav { display: flex; gap: 24px; align-items: center; font-weight: 600; }
.site-nav a:hover { color: var(--green-700); }
.menu-toggle {
  display: none; border: 0; background: #e8f6eb; color: var(--green-800);
  width: 44px; height: 44px; border-radius: 12px; font-size: 1.25rem;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.15) contrast(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6, 35, 16, 0.86) 0%, rgba(15, 74, 38, 0.68) 38%, rgba(17, 102, 47, 0.28) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; padding: 100px 0 90px; max-width: 700px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 5rem); line-height: 0.98; margin: 18px 0; }
.hero p { max-width: 620px; font-size: 1.1rem; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.hero-points {
  list-style: none; padding: 0; margin: 18px 0 0; display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-points li {
  padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 14px; font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff; background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 12px 24px rgba(17, 102, 47, 0.28);
}
.btn-secondary {
  color: var(--green-900); background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.35);
}
.btn.full { width: 100%; }

.intro-strip { background: #fff; border-bottom: 1px solid var(--line); }
.strip-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 26px 0;
}
.strip-grid div {
  background: linear-gradient(180deg, #fff, #f6fdf8);
  border: 1px solid var(--line); border-radius: 18px; padding: 22px;
}
.strip-grid strong { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.strip-grid p { margin: 0; color: var(--muted); }

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.card, .pair-card, .quote-box, .gallery-card, .quote-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.card { padding: 24px; }
.card h3 { margin-top: 0; margin-bottom: 10px; }
.card p { margin: 0; color: var(--muted); }

.results-grid { display: grid; gap: 22px; }
.pair-card { padding: 18px; }
.pair-card h3 { margin: 18px 0 8px; }
.pair-card p { margin: 0; color: var(--muted); }
.pair-images { display: grid; gap: 12px; }
.two-up { grid-template-columns: repeat(2, 1fr); }
.pair-images figure, .gallery-card { margin: 0; overflow: hidden; position: relative; }
.pair-images img, .gallery-card img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 18px;
}
.pair-images figure { min-height: 280px; }
.tag {
  position: absolute; left: 12px; top: 12px; z-index: 2; color: #fff;
  font-size: .85rem; font-weight: 700; padding: 7px 10px; border-radius: 999px;
}
.tag.before { background: rgba(199, 62, 62, 0.92); }
.tag.after { background: rgba(30, 122, 67, 0.96); }
.before-after-note {
  margin-top: 24px; background: linear-gradient(180deg, #fff, #f9fef9); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.before-after-note h3 { margin-top: 0; }
.before-after-note p { color: var(--muted); }
.mini-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.mini-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 18px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.gallery-card { grid-column: span 4; }
.gallery-card.wide { grid-column: span 8; }
.gallery-card.tall { grid-column: span 4; }
.gallery-card img { aspect-ratio: 4 / 3; }
.gallery-card.tall img { aspect-ratio: 3 / 4; }
.gallery-card figcaption {
  padding: 14px 16px 18px; color: var(--muted); font-weight: 600;
}

.why-grid { display: grid; grid-template-columns: 1.3fr .8fr; gap: 24px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.check-list li {
  padding-left: 28px; position: relative; color: var(--text);
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--green-700); font-weight: 800;
}
.quote-box { padding: 26px; background: linear-gradient(180deg, #fff, #edf9f0); }
.quote-box p { color: var(--muted); }

.quote-section {
  background: radial-gradient(circle at top left, #effdf2 0%, #ffffff 55%);
}
.quote-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-list { display: grid; gap: 10px; margin-top: 20px; color: var(--muted); }
.contact-list a { font-weight: 700; color: var(--green-700); }
.quote-form { padding: 24px; display: grid; gap: 14px; }
.quote-form label { display: grid; gap: 7px; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; padding: 14px 15px; border-radius: 14px; border: 1px solid #cae5d1; font: inherit; color: var(--text); background: #fbfffc;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid rgba(46, 168, 94, 0.18); border-color: var(--green-500);
}

.site-footer {
  background: var(--green-900); color: rgba(255,255,255,.88); padding: 28px 0;
}
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.footer-wrap p { margin: 8px 0 0; color: rgba(255,255,255,.76); }

@media (max-width: 980px) {
  .service-grid,
  .strip-grid,
  .quote-grid,
  .why-grid,
  .gallery-grid,
  .mini-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-card, .gallery-card.wide, .gallery-card.tall { grid-column: auto; }
  .site-nav {
    position: absolute; top: 78px; left: 16px; right: 16px; background: #fff; border: 1px solid var(--line);
    border-radius: 18px; box-shadow: var(--shadow); padding: 12px; display: none; flex-direction: column; align-items: flex-start;
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: inline-grid; place-items: center; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { min-height: 88svh; }
  .service-grid,
  .strip-grid,
  .quote-grid,
  .why-grid,
  .mini-gallery,
  .gallery-grid,
  .two-up { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .footer-wrap { flex-direction: column; }
  .brand-text small { display: none; }
  .pair-images figure { min-height: 220px; }
}


/* V2 additions: call/text buttons, pricing, rewards, mobile sticky CTA */
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(17, 102, 47, 0.22);
}

.btn-white {
  color: var(--green-900);
  background: #fff;
}

.quick-contact {
  background: linear-gradient(135deg, #effdf2, #ffffff);
  border-bottom: 1px solid var(--line);
}

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

.quick-contact-grid a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(24, 48, 32, 0.08);
}

.quick-contact-grid strong {
  display: block;
  color: var(--green-800);
  font-size: 1.05rem;
}

.quick-contact-grid span {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}

.pricing-section {
  background:
    radial-gradient(circle at top left, rgba(82, 200, 120, .22), transparent 35%),
    linear-gradient(180deg, #ffffff, #f2fbf4);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--green-500);
  transform: translateY(-6px);
}

.price-label {
  display: inline-block;
  color: #fff;
  background: var(--green-700);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .8rem;
  margin-bottom: 12px;
}

.price-card h3 {
  margin: 0 0 8px;
}

.price {
  color: var(--green-700);
  font-size: 1.6rem;
  font-weight: 900;
  margin: 8px 0 16px;
}

.price-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.price-card li {
  margin: 8px 0;
}

.pricing-note {
  margin-top: 22px;
  background: var(--green-900);
  color: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.pricing-note a {
  color: var(--green-300);
  font-weight: 900;
  text-decoration: underline;
}

.rewards-section {
  background: linear-gradient(180deg, #f7fdf8 0%, #ffffff 100%);
}

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

.reward-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.reward-card h3 {
  margin-top: 0;
}

.reward-amount {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green-700);
  margin: 10px 0;
}

.small-print {
  color: var(--muted);
  font-size: .92rem;
  margin-top: 18px;
}

.mobile-cta {
  display: none;
}

.site-footer a {
  color: var(--green-300);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .header-call {
    display: none;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .quick-contact-grid,
  .rewards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 68px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 52px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    box-shadow: 0 12px 30px rgba(13, 59, 31, .25);
  }
  .mobile-cta a:nth-child(2) {
    background: var(--green-900);
  }
}


/* Snow removal section */
.snow-section {
  background:
    radial-gradient(circle at top right, rgba(170, 231, 255, .45), transparent 32%),
    linear-gradient(135deg, #f7fdff 0%, #effaf1 58%, #ffffff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.snow-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: stretch;
}

.snow-content,
.snow-card {
  background: rgba(255, 255, 255, .88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.snow-content h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 12px 0;
}

.snow-content p,
.snow-card p,
.snow-card li {
  color: var(--muted);
}

.snow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.snow-list span {
  background: #ffffff;
  color: var(--green-800);
  border: 1px solid #cae5d1;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
}

.snow-card h3 {
  margin-top: 0;
}

.snow-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.snow-actions {
  margin-bottom: 0;
}

.snow-price {
  background: linear-gradient(180deg, #ffffff, #f1fbff);
  border-color: #b9e7f5;
}

@media (max-width: 980px) {
  .snow-grid {
    grid-template-columns: 1fr;
  }
}


/* Family-owned emphasis */
.family-owned-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.family-owned-card {
  margin-top: 0;
  margin-bottom: 0;
  padding: 18px 0;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.family-owned-card strong {
  color: #fff;
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.family-owned-card span {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 720px) {
  .family-owned-card {
    flex-direction: column;
    gap: 8px;
  }
}


/* Mobile readability + before/after fix */
.hero-points li {
  color: var(--green-900) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(13, 59, 31, 0.18);
}

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

body {
  padding-bottom: 0 !important;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.comparison-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.comparison-header {
  margin-bottom: 16px;
}

.comparison-header h3 {
  margin: 12px 0 6px;
  font-size: 1.55rem;
}

.comparison-header p {
  margin: 0;
  color: var(--muted);
}

.static-tag {
  position: static !important;
  display: inline-flex;
  width: fit-content;
}

.comparison-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.comparison-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.before-card {
  background: linear-gradient(180deg, #fff, #fff8f4);
}

.after-card {
  background: linear-gradient(180deg, #fff, #f2fff5);
}

.results-note {
  margin-top: 20px;
  background: var(--green-900);
  color: #fff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.results-note strong {
  color: var(--green-300);
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-points {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px !important;
  }

  .hero-points li {
    text-align: center;
    padding: 10px 8px !important;
    font-size: .95rem;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-gallery {
    grid-template-columns: 1fr;
  }

  .comparison-gallery img {
    aspect-ratio: 16 / 10;
  }

  .quick-contact-grid a {
    min-height: auto;
  }
}


/* Future Builder additions */
.season-banner {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}

.season-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.season-banner strong {
  display: block;
  font-size: 1.25rem;
}

.season-banner span {
  color: rgba(255,255,255,.82);
}

.season-banner a {
  background: #fff;
  color: var(--green-900);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.about-section {
  background:
    radial-gradient(circle at top left, rgba(82, 200, 120, .18), transparent 38%),
    #ffffff;
}

.about-grid,
.manager-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
  align-items: start;
}

.about-grid h2,
.manager-grid h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  margin: 12px 0;
}

.about-grid p,
.manager-grid p {
  color: var(--muted);
}

.about-values,
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-values span,
.area-tags span {
  background: #fff;
  color: var(--green-800);
  border: 1px solid #cae5d1;
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 900;
}

.about-card,
.service-area-card,
.contract-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.about-card h3,
.service-area-card h3,
.contract-card h3 {
  margin-top: 0;
}

.about-card li {
  margin: 10px 0;
  color: var(--muted);
}

.contracts-section {
  background: linear-gradient(180deg, #ffffff, #f0fdf4);
}

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

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

.contract-card a {
  display: inline-flex;
  margin-top: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 900;
}

.managers-section {
  background:
    radial-gradient(circle at top right, rgba(82, 200, 120, .20), transparent 34%),
    linear-gradient(180deg, #f8fff9, #ffffff);
}

.manager-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.review-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .about-grid,
  .manager-grid,
  .contract-grid {
    grid-template-columns: 1fr;
  }

  .season-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .season-banner a,
  .manager-actions .btn,
  .review-cta .btn {
    width: 100%;
  }
}


/* Next-level growth sections */
.process-section {
  background: linear-gradient(180deg, #ffffff, #f2fbf4);
}

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

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.process-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: #fff;
  font-weight: 900;
  margin-bottom: 16px;
}

.process-card h3 {
  margin: 0 0 10px;
}

.process-card p {
  color: var(--muted);
  margin: 0;
}

.built-section {
  background:
    radial-gradient(circle at top left, rgba(82, 200, 120, .18), transparent 35%),
    #ffffff;
}

.built-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.built-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.service-page-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-page-links a {
  background: var(--green-900);
  color: #fff;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 900;
}

.service-detail-hero {
  background:
    radial-gradient(circle at top right, rgba(82, 200, 120, .25), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f2fbf4 100%);
  padding: 88px 0 64px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
}

.service-detail-grid h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  margin: 14px 0;
}

.service-detail-grid p {
  color: var(--muted);
  font-size: 1.1rem;
}

.service-detail-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.local-proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.local-proof-card h3 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .process-grid,
  .built-grid,
  .service-detail-grid,
  .local-proof-grid {
    grid-template-columns: 1fr;
  }
}
