
:root {
  --green: #6f8f2d;
  --green-dark: #587423;
  --green-soft: #edf2e5;
  --charcoal: #262a29;
  --ink: #333836;
  --muted: #69716d;
  --cream: #f7f8f4;
  --white: #ffffff;
  --border: #dfe4dc;
  --shadow: 0 22px 60px rgba(32, 40, 35, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed; left: 18px; top: -80px; z-index: 9999; padding: 12px 18px;
  background: var(--charcoal); color: #fff; border-radius: 10px;
}
.skip-link:focus { top: 18px; }

.announcement { background: var(--charcoal); color: #fff; font-size: 0.9rem; }
.announcement-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.announcement a { color: #e5efcd; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.94);
  border-bottom: 1px solid rgba(38,42,41,0.08); backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 118px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 320px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 27px; font-size: 0.95rem; font-weight: 700; }
.site-nav > a:not(.button) { position: relative; }
.site-nav > a:not(.button)::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; background: var(--green); transition: width .25s ease;
}
.site-nav > a:not(.button):hover::after { width: 100%; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--charcoal); transition: .25s; }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px;
  border-radius: 999px; border: 2px solid var(--green); background: var(--green); color: #fff;
  font-weight: 800; letter-spacing: -0.01em; box-shadow: 0 12px 24px rgba(111,143,45,.2); transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); border-color: var(--green-dark); }
.button-small { min-height: 44px; padding-inline: 19px; }
.button-outline { background: transparent; color: var(--charcoal); border-color: var(--charcoal); box-shadow: none; }
.button-outline:hover { color: #fff; background: var(--charcoal); border-color: var(--charcoal); }
.button-light { color: var(--charcoal); background: #fff; border-color: #fff; box-shadow: none; }
.button-light:hover { background: #eef3e8; border-color: #eef3e8; color: var(--charcoal); }
.button-full { width: 100%; border-radius: 14px; }

.hero { position: relative; overflow: hidden; padding: 88px 0 90px; background: linear-gradient(135deg, #fbfcf8 0%, #f2f5ed 100%); }
.hero::before {
  content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; right: -240px; top: -160px;
  border: 90px solid rgba(111,143,45,.07);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 70px; align-items: center; position: relative; }
.eyebrow { margin: 0 0 17px; color: var(--green-dark); font-size: .79rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow-light { color: #d8e7b5; }
.hero h1, .section-heading h2, .process-intro h2, .proof-copy h2, .cta-box h2, .contact-copy h2, .faq-heading h2 {
  margin: 0; font-family: Georgia, "Times New Roman", serif; color: var(--charcoal); line-height: 1.02; letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(3.3rem, 6.3vw, 6.2rem); max-width: 720px; }
.hero h1 span { color: var(--green); }
.hero-lead { max-width: 650px; margin: 26px 0 31px; font-size: 1.19rem; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 31px; font-size: .9rem; font-weight: 700; color: #4f5753; }
.trust-row i { display: inline-grid; place-items: center; width: 21px; height: 21px; margin-right: 6px; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-style: normal; }
.hero-art { position: relative; }
.hero-art > img { width: 100%; filter: drop-shadow(0 30px 40px rgba(38,42,41,.08)); }
.floating-card {
  position: absolute; right: -18px; bottom: 18px; display: flex; align-items: center; gap: 14px; width: 255px;
  padding: 16px; border: 1px solid rgba(38,42,41,.08); border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: var(--shadow);
}
.floating-icon { flex: 0 0 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--green); color: #fff; font-size: 1.35rem; font-weight: 900; }
.floating-card strong, .floating-card small { display: block; }
.floating-card small { color: var(--muted); line-height: 1.35; margin-top: 2px; }

.service-band { position: relative; z-index: 2; margin-top: -1px; background: var(--charcoal); color: #fff; }
.service-band-grid { display: grid; grid-template-columns: repeat(5,1fr); }
.service-band-grid > a { min-height: 132px; padding: 28px 24px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; align-content: center; border-right: 1px solid rgba(255,255,255,.12); }
.service-band-grid > a:last-child { border-right: 0; }
.service-number { grid-row: 1 / 3; color: #9fbc65; font-size: .76rem; font-weight: 900; letter-spacing: .1em; }
.service-band strong { font-size: 1.02rem; }
.service-band small { color: #cbd1ce; }

.section { padding: 110px 0; }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2, .process-intro h2, .proof-copy h2, .faq-heading h2 { font-size: clamp(2.6rem, 4.6vw, 4.55rem); }
.section-heading > p:last-child, .faq-heading > p:last-child { max-width: 710px; color: var(--muted); font-size: 1.08rem; }

.cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.service-card-wide { grid-column: 1 / -1; }
.service-card { position: relative; overflow: hidden; padding: 38px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card::after { content: ""; position: absolute; right: -48px; bottom: -48px; width: 140px; height: 140px; border-radius: 50%; background: var(--green-soft); opacity: .7; }
.service-card:hover { transform: translateY(-7px); border-color: #c8d4b5; box-shadow: var(--shadow); }
.card-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; background: var(--green-soft); }
.card-icon svg { width: 38px; height: 38px; fill: none; stroke: var(--green-dark); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 25px 0 12px; font-size: 1.55rem; color: var(--charcoal); }
.service-card p { color: var(--muted); }
.service-card ul { padding: 0; margin: 23px 0 0; list-style: none; }
.service-card li { position: relative; padding-left: 25px; margin: 9px 0; font-size: .95rem; font-weight: 700; }
.service-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); }

.section-dark { background: var(--charcoal); color: #fff; }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.process-intro { position: sticky; top: 145px; }
.process-intro h2 { color: #fff; }
.process-intro > p:nth-of-type(2) { color: #bbc2be; font-size: 1.08rem; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 19px; color: #dcecbb; font-weight: 800; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.process-list { list-style: none; margin: 0; padding: 0; }
.process-list li { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.process-list li:first-child { padding-top: 0; }
.process-list > li > span { color: #9fbc65; font-size: 1.65rem; font-family: Georgia,serif; }
.process-list h3 { margin: 0 0 8px; font-size: 1.55rem; }
.process-list p { margin: 0; color: #bdc4c0; }

.proof-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.proof-visual { min-height: 590px; display: grid; place-items: center; border-radius: 36px; background: linear-gradient(145deg,#f4f7ef,#e5ecd9); overflow: hidden; }
.proof-house { width: 78%; position: relative; filter: drop-shadow(0 25px 24px rgba(38,42,41,.13)); }
.proof-roof { width: 0; height: 0; margin: auto; border-left: 190px solid transparent; border-right: 190px solid transparent; border-bottom: 145px solid var(--charcoal); }
.proof-body { height: 270px; position: relative; background: #fff; border: 12px solid var(--charcoal); border-top: 0; }
.proof-body::before { content: ""; position: absolute; left: 42%; bottom: 0; width: 70px; height: 125px; background: #c9d7b1; }
.proof-body::after { content: ""; position: absolute; right: 42px; top: 42px; width: 85px; height: 70px; border: 9px solid #c9d7b1; box-shadow: inset 0 0 0 5px #fff; }
.proof-point { position: absolute; z-index: 2; padding: 8px 12px; background: #fff; border-radius: 999px; box-shadow: 0 10px 20px rgba(38,42,41,.12); color: var(--charcoal); font-size: .74rem; font-weight: 900; white-space: nowrap; }
.proof-point::before { content: ""; width: 10px; height: 10px; display: inline-block; margin-right: 7px; border-radius: 50%; background: var(--green); }
.point-1 { left: -33px; top: -103px; }
.point-2 { right: -34px; top: 55px; }
.point-3 { left: -58px; bottom: 19px; }
.point-4 { right: -56px; bottom: 26px; }
.proof-copy > p:nth-of-type(2) { color: var(--muted); font-size: 1.08rem; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin-top: 30px; }
.stats-grid > div { padding: 20px; border-radius: 17px; background: var(--cream); border: 1px solid var(--border); }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { color: var(--green-dark); font-size: 1.16rem; }
.stats-grid span { margin-top: 3px; color: var(--muted); font-size: .88rem; }

.cta-section { padding: 0 0 110px; }
.cta-box { min-height: 280px; padding: 58px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-radius: 34px; color: #fff; background: linear-gradient(115deg,#5e7a27,#78983b); box-shadow: 0 30px 80px rgba(77,104,31,.25); }
.cta-box h2 { color: #fff; font-size: clamp(2.3rem,4vw,4rem); }
.cta-box p:last-child { margin-bottom: 0; color: #edf4df; }

.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 145px; }
.accordion details { padding: 26px 0; border-bottom: 1px solid #cfd6ca; }
.accordion details:first-child { padding-top: 0; }
.accordion summary { position: relative; list-style: none; padding-right: 48px; color: var(--charcoal); font-size: 1.12rem; font-weight: 800; cursor: pointer; }
.accordion summary::-webkit-details-marker { display:none; }
.accordion summary::after { content: "+"; position: absolute; right: 0; top: -7px; width: 35px; height: 35px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--green); font-size: 1.5rem; }
.accordion details[open] summary::after { content: "–"; }
.accordion p { margin: 15px 48px 0 0; color: var(--muted); }

.contact-section { padding: 110px 0; background: var(--charcoal); color: #fff; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.contact-copy h2 { color: #fff; font-size: clamp(3rem,5vw,5.2rem); }
.contact-copy > p:nth-of-type(2) { color: #bec5c1; max-width: 520px; font-size: 1.08rem; }
.contact-phone { display: block; width: fit-content; margin: 18px 0 5px; color: #d9e9b9; font-family: Georgia,serif; font-size: clamp(2rem,4vw,3.5rem); }
.contact-email { display: block; width: fit-content; max-width: 100%; margin: 0 0 26px; color: #fff; font-size: clamp(.95rem,1.6vw,1.12rem); font-weight: 800; overflow-wrap: anywhere; border-bottom: 1px solid rgba(255,255,255,.35); }
.contact-email:hover { color: #d9e9b9; border-bottom-color: #d9e9b9; }
.contact-points { display: flex; flex-direction: column; gap: 10px; color: #d5d9d7; font-size: .95rem; }
.contact-points span::before { content: "✓"; color: #a9c76d; margin-right: 8px; }
.quote-form { padding: 38px; border-radius: 26px; background: #fff; color: var(--charcoal); box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form label { display: block; margin-bottom: 15px; font-size: .88rem; font-weight: 800; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%; margin-top: 7px; padding: 14px 15px; border: 1px solid #d8ded4; border-radius: 12px; background: #fbfcfa; color: var(--charcoal); outline: none;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(111,143,45,.12); }
.form-note { margin: 13px 0 0; text-align: center; color: var(--muted); font-size: .78rem; }
.form-status { min-height: 1.2em; margin: 8px 0 0; text-align: center; color: var(--green-dark); font-size: .86rem; font-weight: 800; }

.site-footer { padding: 70px 0 25px; background: #191c1b; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 70px; }
.footer-brand img { width: 320px; max-width: 100%; height: auto; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 360px; color: #aeb5b1; }
.site-footer h3 { margin: 0 0 18px; color: #dcecbb; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; }
.site-footer a, .site-footer span { display: block; margin: 9px 0; color: #c5cbc8; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); font-size: .79rem; color: #8e9692; }
.footer-bottom span { margin: 0; color: inherit; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay, .reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (max-width: 1020px) {
  .site-nav { gap: 18px; font-size: .9rem; }
  .hero-grid, .proof-grid, .contact-grid { gap: 45px; }
  .hero h1 { font-size: clamp(3.2rem,7vw,5.2rem); }
  .service-band-grid { grid-template-columns: 1fr 1fr; }
  .service-band-grid > a { border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-band-grid > a:nth-child(even) { border-right: 0; }
  .service-band-grid > a:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .process-layout, .faq-layout { gap: 50px; }
  .proof-visual { min-height: 510px; }
  .proof-roof { border-left-width: 150px; border-right-width: 150px; border-bottom-width: 120px; }
}

@media (max-width: 820px) {
  .announcement-inner { justify-content: center; text-align: center; }
  .announcement-inner > span { display: none; }
  .nav-wrap { min-height: 78px; }
  .brand { width: 220px; }
  .brand img { height: auto; }
  .menu-toggle { display: block; position: relative; z-index: 2; }
  .site-nav {
    position: fixed; inset: 78px 0 auto; display: none; padding: 28px 20px 35px; flex-direction: column; align-items: stretch; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 20px 35px rgba(32,40,35,.14);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 7px 0; text-align: center; }
  .hero { padding: 65px 0 75px; }
  .hero-grid, .process-layout, .proof-grid, .faq-layout, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 650px; margin-inline: auto; }
  .process-intro, .faq-heading { position: static; }
  .cards-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .section { padding: 85px 0; }
  .proof-grid { gap: 50px; }
  .proof-visual { order: 2; }
  .cta-box { padding: 43px; flex-direction: column; align-items: flex-start; }
  .contact-grid { gap: 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-call { display: flex; position: fixed; left: 14px; right: 14px; bottom: 13px; z-index: 1000; min-height: 52px; align-items: center; justify-content: center; border-radius: 999px; background: var(--green); color: #fff; font-weight: 900; box-shadow: 0 15px 35px rgba(34,42,38,.28); }
  body { padding-bottom: 72px; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, var(--container)); }
  .announcement { font-size: .8rem; }
  .hero h1 { font-size: clamp(3rem,14vw,4.3rem); }
  .hero-lead { font-size: 1.04rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { flex-direction: column; gap: 10px; }
  .floating-card { position: relative; right: auto; bottom: auto; width: calc(100% - 18px); margin: -32px auto 0; }
  .service-band-grid { grid-template-columns: 1fr; }
  .service-band-grid > div, .service-band-grid > a:last-child { grid-column: auto; min-height: 105px; border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.12); }
  .service-band-grid > a:last-child { border-bottom: 0; }
  .section-heading h2, .process-intro h2, .proof-copy h2, .faq-heading h2 { font-size: clamp(2.35rem,12vw,3.5rem); }
  .service-card { padding: 28px; }
  .process-list li { grid-template-columns: 55px 1fr; }
  .proof-visual { min-height: 430px; overflow: visible; }
  .proof-house { width: 82%; transform: scale(.82); }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-section { padding-bottom: 80px; }
  .cta-box { padding: 34px 27px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 27px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Expanded service-page system */
.service-card .text-link { color: var(--green-dark); margin-top: 22px; position: relative; z-index: 2; }
.service-card .text-link:hover { color: var(--charcoal); }
.service-directory { margin-top: 28px; padding: 24px; border-radius: 20px; background: var(--cream); border: 1px solid var(--border); }
.service-directory strong { display:block; margin-bottom: 12px; color: var(--charcoal); }
.service-directory-links { display:flex; gap:10px; flex-wrap:wrap; }
.service-directory-links a { display:inline-flex; align-items:center; min-height:40px; padding:8px 14px; border-radius:999px; background:#fff; border:1px solid var(--border); font-size:.9rem; font-weight:800; color:var(--charcoal); }
.service-directory-links a:hover { border-color:#b7c69c; color:var(--green-dark); }

.page-hero { position:relative; overflow:hidden; padding:78px 0 82px; background:linear-gradient(135deg,#fbfcf8 0%,#eff4e7 100%); }
.page-hero::before { content:""; position:absolute; width:440px; height:440px; border-radius:50%; right:-220px; top:-180px; border:82px solid rgba(111,143,45,.07); }
.breadcrumb { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-bottom:24px; font-size:.88rem; font-weight:700; color:var(--muted); }
.breadcrumb a { color:var(--green-dark); }
.page-hero-grid { position:relative; display:grid; grid-template-columns:1.08fr .92fr; gap:65px; align-items:center; }
.page-hero h1 { margin:0; font-family:Georgia,"Times New Roman",serif; color:var(--charcoal); font-size:clamp(3rem,5.6vw,5.4rem); line-height:1.02; letter-spacing:-.045em; }
.page-hero h1 span { color:var(--green); }
.page-lead { max-width:720px; margin:24px 0 28px; font-size:1.16rem; color:var(--muted); }
.hero-proof-card { position:relative; padding:34px; border-radius:28px; background:var(--charcoal); color:#fff; box-shadow:var(--shadow); }
.hero-proof-card .mini-label { color:#d8e7b5; font-size:.76rem; text-transform:uppercase; letter-spacing:.15em; font-weight:900; }
.hero-proof-card h2 { margin:10px 0 14px; font-family:Georgia,"Times New Roman",serif; font-size:2rem; line-height:1.08; }
.hero-proof-card p { color:#cbd1ce; }
.hero-proof-list { margin:22px 0 0; padding:0; list-style:none; }
.hero-proof-list li { position:relative; padding:10px 0 10px 28px; border-top:1px solid rgba(255,255,255,.1); font-weight:700; }
.hero-proof-list li::before { content:"✓"; position:absolute; left:0; color:#b8d47e; }

.service-intro-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:80px; align-items:start; }
.sticky-kicker { position:sticky; top:145px; }
.sticky-kicker h2, .content-block h2, .service-faq h2, .related-heading h2 { margin:0; font-family:Georgia,"Times New Roman",serif; color:var(--charcoal); font-size:clamp(2.35rem,4vw,3.9rem); line-height:1.05; letter-spacing:-.04em; }
.sticky-kicker p { color:var(--muted); }
.content-block { padding-bottom:38px; margin-bottom:38px; border-bottom:1px solid var(--border); }
.content-block:last-child { border-bottom:0; margin-bottom:0; padding-bottom:0; }
.content-block h2 { font-size:clamp(2rem,3vw,3rem); margin-bottom:16px; }
.content-block h3 { margin:26px 0 8px; color:var(--charcoal); font-size:1.25rem; }
.content-block p { color:var(--muted); font-size:1.02rem; }
.check-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px 24px; margin:22px 0 0; padding:0; list-style:none; }
.check-grid li { position:relative; padding:14px 15px 14px 42px; border:1px solid var(--border); border-radius:14px; background:#fff; font-weight:750; }
.check-grid li::before { content:"✓"; position:absolute; left:16px; top:14px; color:var(--green); font-weight:900; }

.trust-strip { background:var(--charcoal); color:#fff; }
.trust-strip-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-strip-grid > div { padding:30px 24px; border-right:1px solid rgba(255,255,255,.11); }
.trust-strip-grid > div:last-child { border-right:0; }
.trust-strip strong { display:block; font-size:1.05rem; }
.trust-strip span { display:block; color:#bec6c1; margin-top:3px; font-size:.9rem; }

.process-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:38px; }
.process-card { padding:28px; border:1px solid var(--border); border-radius:20px; background:#fff; }
.process-card b { display:grid; place-items:center; width:42px; height:42px; border-radius:12px; background:var(--green-soft); color:var(--green-dark); }
.process-card h3 { margin:18px 0 8px; font-size:1.15rem; }
.process-card p { margin:0; color:var(--muted); font-size:.94rem; }

.service-faq { background:var(--cream); }
.faq-list { max-width:900px; margin-top:35px; }
.faq-list details { padding:0; border-bottom:1px solid #d7ddd4; }
.faq-list summary { padding:21px 4px; cursor:pointer; font-weight:850; color:var(--charcoal); font-size:1.05rem; list-style:none; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; float:right; color:var(--green-dark); font-size:1.35rem; }
.faq-list details[open] summary::after { content:"–"; }
.faq-list details p { margin:0; padding:0 36px 22px 4px; color:var(--muted); }

.related-services { padding:80px 0; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:30px; }
.related-card { padding:25px; border:1px solid var(--border); border-radius:18px; background:#fff; transition:.2s ease; }
.related-card:hover { transform:translateY(-4px); box-shadow:0 15px 35px rgba(32,40,35,.08); border-color:#c8d4b5; }
.related-card span { color:var(--green-dark); font-weight:900; font-size:.77rem; letter-spacing:.09em; text-transform:uppercase; }
.related-card h3 { margin:8px 0 6px; color:var(--charcoal); }
.related-card p { margin:0; color:var(--muted); font-size:.93rem; }

.local-section { background:linear-gradient(135deg,#26302b 0%,#202422 100%); color:#fff; }
.local-grid { display:grid; grid-template-columns:1fr .85fr; gap:70px; align-items:center; }
.local-grid h2 { margin:0; color:#fff; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2.5rem,4.5vw,4.2rem); line-height:1.04; letter-spacing:-.04em; }
.local-grid p { color:#cbd1ce; }
.local-card { padding:30px; border-radius:22px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); }
.local-card strong { display:block; color:#dcecbb; margin-bottom:8px; }

.landing-contact { background:#fff; }
.landing-contact-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:start; }
.landing-contact h2 { margin:0; font-family:Georgia,"Times New Roman",serif; font-size:clamp(2.5rem,4vw,4rem); color:var(--charcoal); line-height:1.03; letter-spacing:-.04em; }
.landing-contact p { color:var(--muted); }
.contact-options { margin-top:25px; display:grid; gap:12px; }
.contact-options a { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:17px 20px; border:1px solid var(--border); border-radius:14px; font-weight:800; }
.contact-options a:hover { border-color:#b7c69c; }
.landing-form { padding:30px; border-radius:22px; background:var(--cream); border:1px solid var(--border); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-grid .full { grid-column:1/-1; }
.landing-form label { display:block; margin-bottom:6px; font-size:.86rem; font-weight:800; color:var(--charcoal); }
.landing-form input, .landing-form textarea { width:100%; border:1px solid #ccd3ca; border-radius:12px; padding:13px 14px; background:#fff; }
.landing-form textarea { min-height:110px; resize:vertical; }
.sms-disclosure { margin:13px 0 0; font-size:.76rem !important; line-height:1.55; color:#747c78 !important; }
.form-status { min-height:24px; margin:10px 0 0; font-size:.85rem; font-weight:700; color:var(--green-dark) !important; }

@media (max-width: 980px) {
  .page-hero-grid,.service-intro-grid,.local-grid,.landing-contact-grid { grid-template-columns:1fr; gap:40px; }
  .sticky-kicker { position:static; }
  .process-cards,.trust-strip-grid { grid-template-columns:repeat(2,1fr); }
  .related-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 650px) {
  .page-hero { padding:54px 0 60px; }
  .page-hero h1 { font-size:clamp(2.7rem,13vw,4rem); }
  .check-grid,.form-grid,.process-cards,.trust-strip-grid,.related-grid { grid-template-columns:1fr; }
  .trust-strip-grid > div { border-right:0; border-bottom:1px solid rgba(255,255,255,.11); }
  .trust-strip-grid > div:last-child { border-bottom:0; }
  .hero-proof-card { padding:26px; }
}

/* Dedicated landing-page navigation */
.service-band-grid > a { color:#fff; text-decoration:none; transition:background .2s ease; }
.service-band-grid > a:hover { background:rgba(255,255,255,.06); }
.service-band-grid > a strong,.service-band-grid > a small,.service-band-grid > a em { display:block; }
.service-band-grid > a em { grid-column:2; margin-top:8px; font-size:.78rem; font-style:normal; font-weight:800; opacity:.82; }
.service-card h3 a { color:inherit; text-decoration:none; }
.service-card h3 a:hover { color:var(--green-dark); }
.service-card .text-link { display:inline-flex; padding:10px 14px; border:1px solid #c7d3b3; border-radius:999px; background:var(--cream); }
.services-overview-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:34px; }
.services-overview-card { display:block; padding:30px; background:#fff; border:1px solid var(--border); border-radius:var(--radius); color:var(--charcoal); box-shadow:0 10px 28px rgba(24,31,27,.05); transition:transform .2s ease,box-shadow .2s ease; }
.services-overview-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); }
.services-overview-card span { color:var(--green-dark); font-size:.78rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.services-overview-card h2 { margin:10px 0 10px; font-size:1.45rem; }
.services-overview-card p { color:var(--muted); margin:0 0 15px; }
.services-overview-card b { color:var(--green-dark); }
@media(max-width:760px){.services-overview-grid{grid-template-columns:1fr}}


/* Polished featured-service navigation */
.quick-services {
  position: relative;
  z-index: 3;
  background: var(--charcoal);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.quick-services-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: stretch;
}
.quick-services-heading {
  display: flex;
  align-items: center;
  padding: 22px 28px 22px 0;
  border-right: 1px solid rgba(255,255,255,.12);
}
.quick-services-heading span {
  color: #a9c66b;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.35;
}
.quick-services-links {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
}
.quick-services-links a {
  min-height: 78px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 800;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .2s ease, color .2s ease;
}
.quick-services-links a:last-child { border-right: 0; }
.quick-services-links a b {
  color: #a9c66b;
  font-size: 1.08rem;
  font-weight: 500;
  transition: transform .2s ease;
}
.quick-services-links a:hover { background: rgba(255,255,255,.055); }
.quick-services-links a:hover b { transform: translateX(4px); }

@media (max-width: 1050px) {
  .quick-services-wrap { grid-template-columns: 1fr; }
  .quick-services-heading {
    padding: 15px 0 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .quick-services-links { grid-template-columns: repeat(3,1fr); }
  .quick-services-links a:nth-child(3) { border-right: 0; }
  .quick-services-links a:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .quick-services-links a:nth-child(5) { border-right: 0; }
}
@media (max-width: 680px) {
  .quick-services { padding: 0; }
  .quick-services-heading { padding: 14px 0 9px; }
  .quick-services-links { grid-template-columns: 1fr 1fr; }
  .quick-services-links a {
    min-height: 62px;
    padding: 14px 12px;
    font-size: .82rem;
  }
  .quick-services-links a:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .quick-services-links a:nth-child(even) { border-right: 0; }
  .quick-services-links a:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .quick-services-links a:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }
}
