/* Spokane Rodent Control — "Ponderosa" design system
   Pine-green corporate palette, Plus Jakarta Sans + Source Sans 3, mono-free. */

:root {
  --pine: #123b2e;
  --pine-2: #1c5140;
  --pine-3: #0d2c22;
  --paper: #f6f5f1;
  --white: #ffffff;
  --ink: #1b2420;
  --ink-soft: #46564e;
  --sage: #8fa99b;
  --sage-2: #d7e0d8;
  --basalt: #3b4742;
  --red: #e0483a;
  --red-dark: #c23628;
  --gold: #e7a83a;
  --line: #e3e2db;
  --shadow: 0 10px 30px rgba(18, 59, 46, 0.10);
  --shadow-sm: 0 4px 14px rgba(18, 59, 46, 0.08);
  --radius: 14px;
  --radius-pill: 999px;
  --wrap: 1160px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.62;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pine-2); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 800; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5.2vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3.6vw, 2.25rem); }
h3 { font-size: 1.24rem; }
p { margin: 0 0 1.05rem; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---------- Kicker ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem;
  color: var(--pine-2);
}
.kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.kicker.on-dark { color: var(--sage-2); }

/* ---------- Buttons ---------- */
.btn-call, .btn-quote, .btn-ghost {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 700;
  border-radius: var(--radius-pill); padding: 15px 26px;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  line-height: 1.05;
}
.btn-call { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(224,72,58,.34); }
.btn-call:hover { background: var(--red-dark); text-decoration: none; transform: translateY(-2px); }
.btn-call svg { width: 22px; height: 22px; flex: 0 0 auto; }
.btn-call span { display: flex; flex-direction: column; align-items: flex-start; }
.btn-call small { font-family: var(--font-body); font-weight: 600; font-size: .68rem; opacity: .9; letter-spacing: .02em; }
.btn-quote { background: #fff; color: var(--pine); border-color: #fff; }
.btn-quote:hover { background: transparent; color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--pine); border-color: var(--sage); }
.btn-ghost:hover { background: var(--pine); color: #fff; border-color: var(--pine); text-decoration: none; }

/* ---------- Utility bar ---------- */
.util-bar { background: var(--pine-3); color: #cfe0d6; font-size: .82rem; }
.util-bar .wrap { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.util-bar a { color: #fff; font-weight: 700; }
.util-bar .u-left { display: flex; gap: 20px; align-items: center; }
.util-bar .u-item { display: inline-flex; gap: 7px; align-items: center; }
.util-bar svg { width: 15px; height: 15px; color: var(--gold); }
.util-bar .u-call { color: #fff; }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--pine); box-shadow: 0 2px 0 rgba(0,0,0,.15); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 74px; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand:hover { text-decoration: none; }
.brand .mark { width: 46px; height: 46px; flex: 0 0 auto; }
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; line-height: 1.02; color: #fff; }
.wordmark small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .62rem; letter-spacing: .18em; color: var(--gold); text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a, .sub-toggle { color: #eaf1ec; font-weight: 600; font-size: .96rem; padding: 10px 13px; border-radius: 9px; }
.nav-links > a:hover, .sub-toggle:hover { background: var(--pine-2); text-decoration: none; }
.has-sub { position: relative; }
.submenu { position: absolute; top: 100%; left: 0; background: #fff; border-radius: 12px; box-shadow: var(--shadow); min-width: 268px; padding: 8px; display: none; z-index: 70; border: 1px solid var(--line); }
.has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
.submenu a { display: block; color: var(--ink); padding: 10px 13px; border-radius: 8px; font-weight: 600; font-size: .93rem; }
.submenu a:hover { background: var(--paper); color: var(--pine); text-decoration: none; }
.nav-call { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; padding: 11px 18px; border-radius: var(--radius-pill); margin-left: 8px; }
.nav-call:hover { background: var(--red-dark); text-decoration: none; }
.nav-call svg { width: 18px; height: 18px; }
.menu-toggle { display: none; background: transparent; border: 0; color: #fff; padding: 8px; cursor: pointer; }
.menu-toggle svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--pine) 0%, var(--pine-3) 100%); color: #eaf1ec; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: 0; background: url("/images/pines.svg") right bottom / auto 100% no-repeat; opacity: .10; pointer-events: none; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; padding-top: 58px; padding-bottom: 58px; position: relative; z-index: 2; }
.hero-trust { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); padding: 8px 15px; border-radius: var(--radius-pill); font-weight: 700; font-size: .82rem; color: #fff; margin-bottom: 20px; }
.hero-trust svg { width: 17px; height: 17px; color: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero h1 .hl { color: var(--gold); }
.hero .sub { font-size: 1.16rem; color: #cfe0d6; max-width: 34em; margin-bottom: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 16px; font-size: .86rem; color: #b7cabf; display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--sage); }
.hero-figure { position: relative; }
.hero-figure img { border-radius: 18px; box-shadow: 0 24px 50px rgba(0,0,0,.32); border: 5px solid rgba(255,255,255,.9); width: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: -14px; bottom: 22px; background: #fff; color: var(--ink); border-radius: 14px; padding: 13px 17px; box-shadow: var(--shadow); font-weight: 700; font-size: .9rem; display: flex; align-items: center; gap: 11px; max-width: 250px; }
.hero-badge svg { width: 30px; height: 30px; color: var(--red); flex: 0 0 auto; }
.hero-badge small { display: block; font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); font-size: .78rem; }

/* ---------- Section base ---------- */
section { padding: 66px 0; }
.section-head { text-align: center; max-width: 46rem; margin: 0 auto 40px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }
.tree { display: inline-block; width: 26px; height: 26px; color: var(--pine-2); }

/* ---------- Service selector grid ---------- */
.selector { background: var(--white); }
.selector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sel-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 18px; text-align: center; color: var(--ink); transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.sel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sage); text-decoration: none; }
.sel-icon { width: 62px; height: 62px; border-radius: 50%; background: var(--sage-2); display: grid; place-items: center; }
.sel-icon svg { width: 32px; height: 32px; color: var(--pine); }
.sel-card:hover .sel-icon { background: var(--pine); }
.sel-card:hover .sel-icon svg { color: #fff; }
.sel-card b { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; }
.sel-card span { color: var(--ink-soft); font-size: .86rem; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--pine); color: #eaf1ec; padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item { display: flex; gap: 15px; align-items: flex-start; padding: 34px 26px; border-right: 1px solid rgba(255,255,255,.10); }
.trust-item:last-child { border-right: 0; }
.trust-item svg { width: 30px; height: 30px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }
.trust-item b { font-family: var(--font-display); font-weight: 700; display: block; color: #fff; font-size: 1.05rem; margin-bottom: 3px; }
.trust-item span { color: #cfe0d6; font-size: .92rem; }

/* ---------- Local intro + value trio ---------- */
.intro-split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 46px; align-items: center; }
.intro-split img { border-radius: var(--radius); box-shadow: var(--shadow); }
.value-trio { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.value-pill { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; flex: 1 1 150px; }
.value-pill b { font-family: var(--font-display); display: block; color: var(--pine); font-size: 1.02rem; }
.value-pill span { font-size: .84rem; color: var(--ink-soft); }

/* ---------- Field guide cards ---------- */
.guide-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gcard .gc-top { background: var(--pine); color: #fff; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.gcard .gc-top svg { width: 30px; height: 30px; color: var(--gold); }
.gcard .gc-top b { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; }
.gcard .gc-top i { font-style: normal; font-size: .78rem; color: #cfe0d6; display: block; }
.gcard .gc-body { padding: 18px 20px; }
.gcard dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; }
.gcard dt { font-weight: 700; color: var(--pine-2); font-size: .84rem; }
.gcard dd { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.gcard .risk { margin-top: 14px; background: #fdeeec; color: var(--red-dark); border-radius: 10px; padding: 10px 12px; font-size: .84rem; font-weight: 600; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.step .num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--sage); line-height: 1; }
.step h3 { margin: 10px 0 6px; }
.step p { margin: 0; font-size: .94rem; color: var(--ink-soft); }

/* ---------- Seasonal indoor-push timeline ---------- */
.season { background: var(--pine-3); color: #eaf1ec; }
.season .section-head h2, .season .section-head p { color: #eaf1ec; }
.season .section-head p { color: #cfe0d6; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 30px; border-radius: var(--radius); overflow: hidden; }
.tl { padding: 26px 22px; border-right: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
.tl:last-child { border-right: 0; }
.tl.peak { background: rgba(224,72,58,.16); }
.tl .season-name { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 8px; }
.tl .bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,.14); margin-bottom: 14px; overflow: hidden; }
.tl .bar i { display: block; height: 100%; background: var(--gold); }
.tl.peak .bar i { background: var(--red); }
.tl p { font-size: .9rem; color: #cfe0d6; margin: 0; }
.tl .lvl { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--gold); }
.tl.peak .lvl { color: #ffb3aa; }

/* ---------- Detailed service cards ---------- */
.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.svc img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.svc .svc-b { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.svc h3 { display: flex; align-items: center; gap: 10px; }
.svc h3 svg { width: 22px; height: 22px; color: var(--red); }
.svc p { font-size: .94rem; color: var(--ink-soft); }
.svc .more { margin-top: auto; font-weight: 700; color: var(--pine-2); display: inline-flex; align-items: center; gap: 6px; }
.svc .more svg { width: 16px; height: 16px; }

/* ---------- Why / feature rows ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 34px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item svg { width: 26px; height: 26px; color: var(--pine-2); flex: 0 0 auto; margin-top: 3px; }
.why-item b { font-family: var(--font-display); display: block; margin-bottom: 3px; }
.why-item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Areas index ---------- */
.areas-band { background: var(--white); }
.area-index { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.area-index a { background: var(--paper); border: 1px solid var(--line); border-radius: 11px; padding: 15px 18px; color: var(--ink); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.area-index a:hover { background: var(--pine); color: #fff; text-decoration: none; border-color: var(--pine); }
.area-index svg { width: 18px; height: 18px; color: var(--red); }
.area-index a:hover svg { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--red); font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 22px 18px; margin: 0; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #ffe4e0; max-width: 40rem; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-band .btn-call { background: #fff; color: var(--red-dark); box-shadow: 0 10px 26px rgba(0,0,0,.22); }
.cta-band .btn-call:hover { background: var(--pine); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-3); color: #c6d5cc; padding-top: 0; }
.footer-call-row { background: var(--pine); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px 34px; border-radius: var(--radius); margin: -40px auto 44px; max-width: var(--wrap); box-shadow: var(--shadow); flex-wrap: wrap; position: relative; }
.footer-call-row h2 { color: #fff; margin: 0; font-size: 1.5rem; }
.giant-phone { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: #fff; display: flex; flex-direction: column; }
.giant-phone:hover { text-decoration: none; color: var(--gold); }
.giant-phone small { font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .1em; color: var(--gold); text-transform: uppercase; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 34px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-grid p { font-size: .92rem; color: #a9bcb1; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: #c6d5cc; font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-brand .mark { width: 42px; height: 42px; }
.footer-brand b { font-family: var(--font-display); color: #fff; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding: 24px 0 40px; }
.disclaimer { font-size: .8rem; color: #93a89d; line-height: 1.6; max-width: 100%; margin-bottom: 14px; }
.copyright { font-size: .82rem; color: #839a8e; }

/* ---------- Inner page hero ---------- */
.page-hero { background: linear-gradient(160deg, var(--pine) 0%, var(--pine-3) 100%); color: #eaf1ec; padding: 46px 0 40px; position: relative; }
.page-hero .crumbs { font-size: .84rem; color: #a9c2b5; margin-bottom: 14px; }
.page-hero .crumbs a { color: #fff; }
.page-hero h1 { color: #fff; margin: 12px 0 14px; }
.page-hero .lede { font-size: 1.14rem; color: #cfe0d6; max-width: 42em; }
.page-hero .hero-cta { margin-top: 22px; }

/* ---------- Article layout ---------- */
.article { padding: 52px 0; }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.prose { max-width: 100%; }
.prose img { border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: .55em; width: 10px; height: 10px; background: var(--red); border-radius: 3px; transform: rotate(45deg); }
.prose .faq ul li { padding-left: 0; }
.prose .faq ul li::before { display: none; }
.side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.side-card.accent { background: var(--pine); color: #eaf1ec; border-color: var(--pine); }
.side-card.accent h3 { color: #fff; }
.side-card.accent p { color: #cfe0d6; font-size: .92rem; }
.side-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.side-card ul { list-style: none; margin: 0; padding: 0; }
.side-card li { margin-bottom: 9px; }
.side-card.accent .btn-call { margin-top: 6px; }

/* ---------- Simple content pages ---------- */
.simple { padding: 52px 0; }
.simple .wrap { max-width: 820px; }
.simple h2 { margin-top: 1.6em; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }

/* ---------- Blog index ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.post-card .tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin-bottom: 10px; }
.post-card h3 { margin-bottom: 8px; }
.post-card p { font-size: .93rem; color: var(--ink-soft); }
.post-card .more { margin-top: auto; font-weight: 700; color: var(--pine-2); }

/* ---------- Mobile sticky call bar ---------- */
.mobile-call { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--red); color: #fff; text-align: center; padding: 14px; font-family: var(--font-display); font-weight: 700; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 -4px 18px rgba(0,0,0,.2); }
.mobile-call svg { width: 20px; height: 20px; }
.mobile-call:hover { text-decoration: none; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 30px; padding-top: 40px; padding-bottom: 40px; }
  .hero-figure { max-width: 520px; margin: 0 auto; }
  .hero .sub { font-size: 1.06rem; margin-bottom: 20px; }
  .intro-split { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .selector-grid { grid-template-columns: repeat(3, 1fr); }
  .guide-cards, .svc-list, .post-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .area-index { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .util-bar .u-left .u-hours { display: none; }
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; background: var(--pine); flex-direction: column; align-items: stretch; padding: 12px; gap: 2px; box-shadow: var(--shadow); max-height: calc(100vh - 74px); max-height: calc(100dvh - 74px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
  .nav-links.open { display: flex; }
  .nav-links > a, .sub-toggle { padding: 13px; font-size: 1rem; }
  .has-sub { width: 100%; }
  .submenu { position: static; display: block; box-shadow: none; border: 0; background: var(--pine-2); padding: 4px 4px 4px 16px; min-width: 0; }
  .submenu a { color: #eaf1ec; }
  .submenu a:hover { background: var(--pine-3); color: #fff; }
  .nav-call { margin: 8px 0 0; justify-content: center; }
  .mobile-call { display: flex; }
  body { padding-bottom: 60px; }
  .footer-call-row { flex-direction: column; text-align: center; align-items: center; }
}
@media (max-width: 560px) {
  .selector-grid { grid-template-columns: 1fr 1fr; }
  .guide-cards, .svc-list, .post-grid, .steps, .timeline, .footer-grid, .area-index, .why-grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.95rem; }
  .hero-badge { position: static; margin-top: 16px; max-width: 100%; }
  .btn-call, .btn-quote { width: 100%; justify-content: center; }
  .giant-phone { font-size: 1.7rem; }
}
