:root {
  --teal: #006B66;
  --teal-dark: #004D49;
  --teal-light: #0C8A83;
  --lime: #A8C938;
  --lime-dark: #8FAE2C;
  --bg: #F5FAF8;
  --bg-alt: #E7F2ED;
  --paper: #FFFFFF;
  --ink: #10241F;
  --ink-muted: #52655F;
  --line: #D9E9E2;
  --container: 1180px;
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --font-head: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Karla", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 16px 40px rgba(0, 77, 73, 0.12);
  --shadow-sm: 0 4px 16px rgba(0, 77, 73, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-head); color: var(--teal-dark); line-height: 1.18; margin: 0; letter-spacing: -0.01em; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1.1em; color: var(--ink-muted); }
p:last-child { margin-bottom: 0; }
a { color: inherit; text-decoration: none; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.95rem; font-family: var(--font-body);
  border: none; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-lime { background: var(--lime); color: var(--teal-dark); box-shadow: var(--shadow-sm); }
.btn-lime:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); }

/* Floating rounded header */
.header-wrap { position: sticky; top: 0; z-index: 100; padding: 18px 20px 0; }
.site-header {
  background: var(--teal);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  max-width: 1280px;
  margin: 0 auto;
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 12px 0 26px; }
.logo { display: flex; align-items: center; gap: 8px; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; white-space: nowrap; flex-shrink: 0; }
.logo .mark { color: var(--lime); }
.main-nav { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.main-nav a { color: rgba(255,255,255,0.85); font-size: 0.86rem; font-weight: 600; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.header-phone svg { width: 15px; height: 15px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }

@media (max-width: 1180px) {
  .main-nav { position: fixed; top: 96px; left: 20px; right: 20px; background: var(--teal-dark); border-radius: var(--radius); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px; display: none; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-phone span.phone-text { display: none; }
}

/* Page hero (inner pages) */
.page-hero-wrap { padding: 20px 20px 0; }
.page-hero { background: var(--teal); padding: 52px 44px 48px; border-radius: var(--radius); max-width: 1280px; margin: 0 auto; }
.page-hero .container { max-width: 1140px; padding: 0; }
.page-hero .eyebrow { color: var(--lime); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin-top: 14px; font-size: 1.05rem; }
.breadcrumb { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.88); }
.breadcrumb a:hover { text-decoration: underline; }

/* Home hero */
.home-hero { padding: 20px 20px 0; }
.home-hero-inner { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); border-radius: 28px; max-width: 1280px; margin: 0 auto; padding: 72px 48px; position: relative; overflow: hidden; }
.home-hero-inner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,201,56,0.25) 0%, rgba(168,201,56,0) 70%);
}
.home-hero .container { position: relative; z-index: 2; max-width: 1100px; padding: 0; }
.home-hero .eyebrow { color: var(--lime); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.home-hero h1 { color: #fff; max-width: 760px; }
.home-hero p.lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 600px; margin-top: 18px; }
.home-hero .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }

.trust-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.trust-chip { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 0.86rem; font-weight: 600; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 9px 16px; border-radius: var(--radius-pill); }
.trust-chip svg { width: 15px; height: 15px; stroke: var(--lime); fill: none; }

/* Sections */
.section { padding: 76px 0; }
.section-alt { background: var(--bg-alt); }
.section-teal { background: var(--teal); }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow-lbl { color: var(--teal); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-teal .eyebrow-lbl { color: var(--lime); }
.section-teal h2 { color: #fff; }
.section-teal p { color: rgba(255,255,255,0.8); }
.section-head p { margin-top: 14px; font-size: 1.03rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 30px; } }

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink); font-weight: 600; font-size: 0.98rem; }
.check-list svg { flex-shrink: 0; width: 20px; height: 20px; fill: var(--teal); margin-top: 2px; }

/* Cards */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--paper); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; }
.svc-card .svc-icon { width: 46px; height: 46px; border-radius: 14px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.svc-card .svc-icon svg { width: 23px; height: 23px; stroke: var(--teal); fill: none; }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { font-size: 0.94rem; margin-bottom: 16px; }
.svc-card .lnk { margin-top: auto; color: var(--teal); font-weight: 700; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }

/* Pest hub */
.pest-toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.pest-toc a { background: var(--paper); border: 1px solid var(--line); padding: 9px 18px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 700; color: var(--teal-dark); }
.pest-toc a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

.pest-section { padding: 44px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.pest-section:last-child { border-bottom: none; }
.pest-section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.pest-icon-lg { width: 54px; height: 54px; border-radius: 16px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pest-icon-lg svg { width: 27px; height: 27px; stroke: var(--teal); fill: none; }

/* Stat row */
.stat-row { display: flex; flex-wrap: wrap; gap: 30px; padding: 26px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 8px 0 36px; }
.stat-row > div { display: flex; flex-direction: column; gap: 3px; }
.stat-row strong { font-family: var(--font-head); font-size: 1.5rem; color: var(--teal-dark); font-weight: 700; }
.stat-row span { font-size: 0.82rem; color: var(--ink-muted); font-weight: 600; }

/* Mini numbered steps */
.mini-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mini-steps li { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.mini-steps li:last-child { border-bottom: none; padding-bottom: 0; }
.mini-steps li:first-child { padding-top: 0; }
.mini-steps .num { width: 34px; height: 34px; border-radius: 50%; background: var(--lime); color: var(--teal-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-head); font-size: 0.9rem; flex-shrink: 0; }
.mini-steps h3 { margin-bottom: 4px; font-size: 1.02rem; }
.mini-steps p { font-size: 0.93rem; margin-bottom: 0; }

/* Related pages */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
.related-card { background: var(--paper); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.related-card h3 { font-size: 1rem; margin-bottom: 8px; }
.related-card p { font-size: 0.88rem; margin-bottom: 14px; }
.related-card .lnk { color: var(--teal); font-weight: 700; font-size: 0.86rem; }

/* Tag list / town chips */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.tag-list span { background: var(--paper); border: 1px solid var(--line); padding: 9px 17px; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
.section-teal .tag-list span { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; }

.town-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 760px) { .town-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .town-grid { grid-template-columns: repeat(2, 1fr); } }
.town-chip { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 700; font-size: 0.92rem; color: var(--teal-dark); display: flex; align-items: center; gap: 8px; }
.town-chip svg { width: 14px; height: 14px; fill: var(--lime-dark); flex-shrink: 0; }

/* Season grid */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .season-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .season-grid { grid-template-columns: 1fr; } }
.season-card { background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.season-card .season-head { background: var(--teal); color: #fff; padding: 18px 20px; }
.season-card .season-head span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); }
.season-card .season-head h3 { color: #fff; margin-top: 4px; }
.season-body { padding: 20px; }
.season-body .tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.season-body .tag-row span { background: var(--bg-alt); border-radius: var(--radius-pill); padding: 5px 11px; font-size: 0.76rem; font-weight: 700; color: var(--teal-dark); }
.season-body p { font-size: 0.9rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-form-card { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.contact-frame { min-height: 500px; }
.contact-frame iframe { width: 100%; height: 500px; border: none; }
.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 22px; }
.contact-info-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-list .ic { width: 42px; height: 42px; border-radius: 14px; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-list .ic svg { width: 19px; height: 19px; stroke: var(--teal); fill: none; }
.contact-info-list strong { display: block; color: var(--teal-dark); margin-bottom: 2px; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--paper); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 22px; font-weight: 700; font-size: 1rem; color: var(--teal-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font-body); }
.faq-question .icon { color: var(--lime-dark); font-size: 1.2rem; transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 20px; }
.faq-answer p { margin: 0; font-size: 0.95rem; }

/* Final CTA */
.final-cta { padding: 20px 20px 0; }
.final-cta-inner { background: var(--lime); border-radius: 28px; max-width: 1280px; margin: 0 auto; padding: 60px 40px; text-align: center; }
.final-cta-inner h2 { color: var(--teal-dark); margin-bottom: 14px; }
.final-cta-inner p { color: rgba(0,77,73,0.75); max-width: 560px; margin: 0 auto 26px; }
.final-cta-inner .btn-teal:hover { background: var(--teal-dark); }

/* Footer */
.site-footer { background: var(--teal-dark); color: rgba(255,255,255,0.68); padding: 56px 0 26px; font-size: 0.9rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 24px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .logo { margin-bottom: 12px; }
.footer-grid > div > p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }
.footer-col h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; font-weight: 700; font-family: var(--font-head); }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }

/* Thank-you */
.ty-wrap { max-width: 660px; margin: 0 auto; padding: 80px 24px 100px; text-align: center; }
.ty-badge { width: 80px; height: 80px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.ty-badge svg { width: 38px; height: 38px; fill: var(--teal-dark); }
.ty-wrap .ty-lead { font-size: 1.08rem; margin-bottom: 34px; }
.ty-notice { background: var(--paper); border-left: 4px solid var(--lime); border-radius: var(--radius-sm); padding: 26px 28px; text-align: left; box-shadow: var(--shadow-sm); }
.ty-notice p { color: var(--ink); font-size: 0.96rem; margin-bottom: 12px; }
.ty-notice p:last-child { margin-bottom: 0; }

/* Legal */
.legal-wrap { max-width: 800px; margin: 0 auto; padding: 56px 24px 100px; }
.legal-meta { color: var(--ink-muted); font-size: 0.9rem; margin-bottom: 36px; }
.legal-wrap h2 { font-family: var(--font-body); font-weight: 700; font-size: 1.3rem; margin: 40px 0 12px; color: var(--teal-dark); }
.legal-wrap h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--teal); }
.legal-wrap ul { color: var(--ink-muted); padding-left: 20px; }
.legal-wrap li { margin-bottom: 8px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--teal); font-weight: 700; font-size: 0.9rem; }

/* Content wrap */
.content-wrap { max-width: 820px; }
.content-wrap.wide { max-width: 100%; }
