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

/* Guard against any single element forcing a horizontal scrollbar — without
   this, one overflowing node makes phones zoom the whole page out ("too big"). */
html { overflow-x: hidden; }
body { overflow-x: hidden; }
img, svg, video, table { max-width: 100%; }

:root {
  --green: #1b4332;        /* deep forest */
  --green-soft: #2d6a4f;
  --green-tint: #f1f5f0;   /* pale sage wash */
  --green-line: #d7e3d5;
  --terra: #c2410c;        /* warm terracotta accent */
  --terra-dark: #9a3412;
  --gold: #b45309;
  --cream: #faf7f1;        /* page background */
  --ink: #21261f;
  --muted: #5c6358;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 18px 48px rgba(27, 67, 50, 0.16);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  background: var(--cream);
}

h1, h2, h3, .logo { font-family: var(--serif); letter-spacing: -0.01em; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}
.kicker.light { color: #e9c46a; }

/* ── HEADER ── */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--green-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--green);
  color: #fff;
  border-radius: 11px;
  flex-shrink: 0;
}
.logo-accent { color: var(--terra); }
.header-nav { display: flex; align-items: center; gap: 30px; }
.header-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
}
.header-nav a:hover { color: var(--terra); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.header-phone:hover { background: var(--terra-dark); transform: translateY(-1px); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--green); color: #eaf1e8; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 11px 0;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item svg { color: #95d5b2; }

/* ── HERO ── */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(45,106,79,0.18), transparent 60%),
    linear-gradient(180deg, #fbf9f4 0%, var(--green-tint) 100%);
  border-bottom: 1px solid var(--green-line);
  padding: 68px 0 72px;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(27,67,50,0.05) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-weight: 600;
  color: var(--terra);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 3.05rem;
  font-weight: 600;
  line-height: 1.08;
  color: var(--green);
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-sub {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 24px;
}
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-points span { font-weight: 600; color: var(--green-soft); font-size: 0.95rem; }

/* call card */
.call-card {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 30px 28px;
  text-align: center;
}
.call-card-top { margin-bottom: 14px; }
.call-card-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-soft);
  background: var(--green-tint);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.call-card-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2d6a4f;
  box-shadow: 0 0 0 0 rgba(45,106,79,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45,106,79,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(45,106,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(45,106,79,0); }
}
.call-card-label {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}
.call-card-phone {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.call-card-phone:hover { color: var(--green-soft); }
.call-card-btn {
  display: block;
  background: var(--terra);
  color: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(194,65,12,0.32);
  transition: background 0.15s, transform 0.1s;
}
.call-card-btn:hover { background: var(--terra-dark); transform: translateY(-2px); }
.call-card-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; line-height: 1.5; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-header h2 { font-size: 2.25rem; font-weight: 600; color: var(--green); margin-bottom: 12px; }
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ── HOW IT WORKS ── */
.how { padding: 76px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--green);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.2rem; color: var(--green); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* ── SERVICES / CRITTERS ── */
.services { padding: 76px 0; background: var(--green-tint); border-top: 1px solid var(--green-line); border-bottom: 1px solid var(--green-line); }
.critter-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 14px;
}
.critter-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: 12px;
  padding: 16px 18px;
  font-weight: 600;
  color: var(--green);
  transition: transform 0.12s, box-shadow 0.12s;
}
.critter-grid li:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.critter-emoji { font-size: 1.5rem; line-height: 1; }
.services-cta { text-align: center; margin-top: 36px; color: var(--muted); font-size: 1.05rem; }
.services-cta a { color: var(--terra); font-weight: 700; text-decoration: none; }
.services-cta a:hover { text-decoration: underline; }

/* ── COVERAGE / MAP ── */
.coverage { padding: 76px 0 64px; }
.coverage .container { position: relative; }
#us-map { width: 100%; }
.state { fill: #9ab8a6; stroke: var(--cream); stroke-width: 1; transition: fill 0.15s; cursor: default; }
.state:hover { fill: #7aa489; }
/* Live states (have a page) read as interactive: richer fill + pointer. */
.state-live { fill: var(--green-soft); cursor: pointer; }
.state-live:hover { fill: var(--terra); }
.state-border { fill: none; stroke: var(--cream); stroke-width: 1; pointer-events: none; }
.map-tooltip {
  display: none;
  position: absolute;
  background: var(--green);
  color: #fff;
  padding: 6px 13px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow);
}
.map-hint { text-align: center; color: var(--muted); font-size: 0.95rem; margin-top: 18px; }
.map-hint a { color: var(--terra); font-weight: 700; text-decoration: none; }

/* Real anchor into the live state pages, sitting under the map. Secondary
   (outlined green) so it never competes with the terracotta call CTAs. */
.map-states { text-align: center; margin-top: 20px; }
.map-state-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green);
  border: 2px solid var(--green-line);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, transform 0.1s;
}
.map-state-link:hover {
  border-color: var(--green-soft);
  color: var(--green-soft);
  transform: translateY(-1px);
}

/* ── REASSURE BAND ── */
.reassure {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(45,106,79,0.5), transparent 60%),
    var(--green);
  color: #e7eee4;
  padding: 76px 0;
}
.reassure-inner { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 48px; align-items: center; }
.reassure-copy h2 { color: #fff; font-size: 2.1rem; margin-bottom: 16px; }
.reassure-copy > p { color: #cbdacb; font-size: 1.08rem; margin-bottom: 22px; }
.reassure-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.reassure-list li { padding-left: 28px; position: relative; color: #dde7da; font-size: 1rem; }
.reassure-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: #95d5b2; font-weight: 800;
}
.reassure-list strong { color: #fff; }
.reassure-call {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
}
.reassure-call > p { color: #cbdacb; font-weight: 600; margin-bottom: 14px; }
.reassure-call > span { display: block; color: #9fb4a0; font-size: 0.85rem; margin-top: 14px; }
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(194,65,12,0.4);
  transition: background 0.15s, transform 0.1s;
}
.phone-cta:hover { background: var(--terra-dark); transform: translateY(-2px); }

/* ── FAQ ── */
.faq { padding: 76px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: 12px;
  overflow: hidden;
}
.faq summary {
  padding: 18px 22px;
  font-weight: 700;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--green);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 1.4rem; color: var(--terra); flex-shrink: 0; transition: transform 0.15s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details > div {
  padding: 0 22px 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
}
.faq details > div strong { color: var(--ink); }

/* ── PAGE HERO / SIMPLE (404 etc.) ── */
.page-hero {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-soft) 100%);
  color: #fff;
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero h1 { font-size: 2.2rem; font-weight: 600; margin-bottom: 8px; }
.page-hero p { color: #cbdacb; font-size: 1.05rem; }
.simple-section { padding: 64px 0; }

/* ── FOOTER ── */
footer { background: var(--green); color: #c4d2c2; padding: 56px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { color: #fff; font-size: 1.4rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { color: #aebfab; font-size: 0.95rem; max-width: 360px; margin-bottom: 16px; }
.footer-call { color: #fff; font-weight: 700; font-size: 1.2rem; text-decoration: none; }
.footer-col h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
/* Second heading in a footer column needs its own top gap; the first one gets
   spacing from the column itself. */
.footer-col-h4-stacked { margin-top: 22px; }
.footer-col ul { list-style: none; font-size: 0.93rem; }
.footer-col li { margin-bottom: 8px; color: #aebfab; }
.footer-col a { color: #aebfab; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { color: #8ea08c; font-size: 0.85rem; }

/* ── MOBILE STICKY CALL CTA ── */
.mobile-call-cta-wrap { display: none; }
@media (max-width: 768px) {
  .mobile-call-cta-wrap {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    padding: 0 12px calc(12px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
  }
  .mobile-call-cta {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%);
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 6px 22px rgba(194,65,12,0.4), 0 2px 6px rgba(0,0,0,0.12);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-call-cta:active { transform: translateY(1px); }
  .mobile-call-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .mobile-call-cta-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
  .mobile-call-cta-label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.92; }
  .mobile-call-cta-number { font-size: 1.05rem; font-weight: 700; }
  body { padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)); }
}

/* ── BREADCRUMB ── */
.crumbs { background: var(--green-tint); border-bottom: 1px solid var(--green-line); padding: 10px 0; font-size: 0.85rem; color: var(--muted); }
.crumbs a { color: var(--green-soft); text-decoration: none; font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { margin: 0 6px; color: #aab3a6; }
.crumbs strong { color: var(--green); }

/* ── STATE HERO + CITY PICKER ── */
.state-hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(45,106,79,0.18), transparent 60%),
    linear-gradient(180deg, #fbf9f4 0%, var(--green-tint) 100%);
  border-bottom: 1px solid var(--green-line);
  padding: 52px 0 60px;
  overflow: hidden;
}
.state-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(27,67,50,0.05) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  z-index: 0; pointer-events: none;
}
.state-hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.state-hero h1 { font-size: 2.85rem; font-weight: 600; color: var(--green); line-height: 1.08; margin-bottom: 14px; }

.picker-card {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 22px;
}
.picker-title { font-size: 1.5rem; color: var(--green); margin: 10px 0 16px; }
.picker-label { display: block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 7px; }
.picker-select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--green-line);
  border-radius: 11px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  margin-bottom: 12px;
}
.picker-select:focus { outline: none; border-color: var(--green-soft); }
.picker-btn {
  width: 100%;
  background: var(--terra);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 11px;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(194,65,12,0.3);
  transition: background 0.15s, transform 0.1s;
}
.picker-btn:hover { background: var(--terra-dark); transform: translateY(-1px); }
.picker-fallback { font-size: 0.85rem; color: var(--muted); margin-top: 14px; text-align: center; }
.picker-fallback a { color: var(--terra); font-weight: 700; text-decoration: none; }

.connect-result { display: none; margin-top: 16px; }
.cr-card { border-radius: 13px; padding: 20px; text-align: center; }
.cr-loading { background: var(--green-tint); color: var(--muted); font-weight: 600; }
.cr-assigned { background: #eef7f0; border: 1.5px solid #b7dcc0; }
.cr-dispatch { background: #fbf1e9; border: 1.5px solid #f0d3bf; }
.cr-badge { display: inline-block; background: var(--green-soft); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.cr-name { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--green); margin-bottom: 14px; }
.cr-head { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.cr-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 16px; }
.cr-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra); color: #fff;
  font-size: 1.3rem; font-weight: 800;
  padding: 13px 28px; border-radius: 11px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(194,65,12,0.32);
}
.cr-call:hover { background: var(--terra-dark); }
.cr-note { font-size: 0.83rem; color: var(--muted); margin-top: 12px; }

/* ── CONTRACTOR BLOCK (city hub / spoke hero aside) ── */
.pro-block {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 24px;
}
.pro-block .call-card-status { margin-bottom: 16px; }
.pro-block .pro-card { padding: 4px 2px 2px; text-align: center; background: none; border: none; }
.pro-block .cr-name { margin-bottom: 16px; }
.pro-block .cr-head { margin-bottom: 8px; }
.pro-block .cr-call { width: 100%; justify-content: center; }

/* spoke link cards on the city hub */
.spoke-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.spoke-card {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: #fff;
  border: 1px solid var(--green-line);
  border-left: 4px solid var(--terra);
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 0.12s, box-shadow 0.12s;
}
.spoke-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.spoke-card-label { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--green); }
.spoke-card-go { color: var(--terra); font-weight: 700; font-size: 0.9rem; white-space: nowrap; }

/* ── CONTENT SECTIONS / PROSE ── */
.content-section { padding: 64px 0; }
.content-section.tint { background: var(--green-tint); border-top: 1px solid var(--green-line); border-bottom: 1px solid var(--green-line); }
.prose { max-width: 820px; }
.prose > .kicker { margin-bottom: 6px; }
.prose h2 { font-size: 2rem; font-weight: 600; color: var(--green); margin-bottom: 16px; }
.prose h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--green); margin: 30px 0 8px; }
.prose p { color: #3f463a; margin-bottom: 16px; font-size: 1.02rem; }
.prose strong { color: var(--ink); }

.risk-list { list-style: none; margin: 4px 0 8px; display: flex; flex-direction: column; gap: 12px; }
.risk-list li { padding-left: 28px; position: relative; color: #3f463a; font-size: 1.0rem; }
.risk-list li::before { content: '➜'; position: absolute; left: 0; top: 0; color: var(--terra); font-weight: 800; }

/* inline call-now callout */
.callout {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
  background: var(--green);
  color: #e7eee4;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 28px 0 8px;
}
.callout strong { display: block; color: #fff; font-family: var(--serif); font-size: 1.2rem; margin-bottom: 2px; }
.callout span { font-size: 0.93rem; color: #c2d3c0; }
.callout-btn {
  flex-shrink: 0;
  background: var(--terra); color: #fff;
  font-weight: 700; font-size: 1.05rem;
  padding: 13px 24px; border-radius: 11px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(194,65,12,0.34);
}
.callout-btn:hover { background: var(--terra-dark); }

/* seasonal grid */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.season-card { background: #fff; border: 1px solid var(--green-line); border-radius: var(--radius); padding: 24px 22px; box-shadow: var(--shadow); }
.season-card h3 { font-family: var(--serif); font-size: 1.15rem; color: var(--green); margin-bottom: 8px; }
.season-card p { color: var(--muted); font-size: 0.93rem; }

/* region grid */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.region-card { background: #fff; border: 1px solid var(--green-line); border-left: 4px solid var(--green-soft); border-radius: 12px; padding: 20px 22px; box-shadow: var(--shadow); }
.region-card h3 { font-family: var(--serif); font-size: 1.12rem; color: var(--green); margin-bottom: 6px; }
.region-card p { color: var(--muted); font-size: 0.9rem; }
.region-cta { text-align: center; margin-top: 28px; color: var(--muted); }
.region-cta a { color: var(--terra); font-weight: 700; text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .state-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .picker-card { max-width: 480px; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .call-card { max-width: 460px; margin: 0 auto; width: 100%; }
  .reassure-inner { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-inner { height: 64px; }
  .header-phone { font-size: 0.9rem; padding: 9px 16px; }
  .logo { font-size: 1.25rem; }
  .trust-bar-inner { gap: 16px; }
  .trust-item:nth-child(n+3) { display: none; }
  .hero { padding: 48px 0 52px; }
  .hero h1 { font-size: 2.25rem; }
  .state-hero h1 { font-size: 2.05rem; }
  .season-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .callout { flex-direction: column; align-items: flex-start; }
  .callout-btn { width: 100%; text-align: center; white-space: normal; }
  .hero-sub { font-size: 1.05rem; }
  .section-header h2 { font-size: 1.8rem; }
  .call-card-phone { font-size: 2.1rem; }
  .phone-cta { font-size: 1.55rem; padding: 13px 26px; }
}

/* ── SMALL PHONES (≤480px) ── tighten side gutters and scale down the big
   headline/phone elements so nothing runs past a narrow viewport. */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 44px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-sub, .state-hero .hero-sub { font-size: 1rem; }
  .state-hero { padding: 40px 0 46px; }
  .state-hero h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.55rem; }
  .prose h2 { font-size: 1.6rem; }
  .reassure-copy h2 { font-size: 1.7rem; }

  /* Phone CTAs: shrink and allow wrapping so the number never overflows. */
  .call-card { padding: 26px 20px; }
  .call-card-phone { font-size: 1.85rem; }
  .phone-cta { font-size: 1.35rem; padding: 13px 20px; white-space: normal; }
  .cr-call { font-size: 1.1rem; padding: 12px 18px; white-space: normal; }
  .picker-card { padding: 22px 18px 20px; }

  /* Section vertical rhythm: trim the generous desktop padding on small screens. */
  .how, .services, .coverage, .reassure, .faq, .content-section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ── BLOG: index grid ── */
.guides { padding: 56px 0 72px; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.guide-card {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
.guide-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.guide-card-link { display: block; padding: 26px 24px 24px; text-decoration: none; color: inherit; }
.guide-cat {
  display: inline-block;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 10px;
}
.guide-card h2 {
  font-family: var(--serif);
  font-size: 1.22rem; line-height: 1.3; font-weight: 600;
  color: var(--green); margin: 0 0 10px; text-wrap: balance;
}
.guide-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; margin: 0 0 14px; }
.guide-more { font-family: var(--sans); font-size: .88rem; font-weight: 600; color: var(--terra); }
.guide-card:hover .guide-more { color: var(--terra-dark); }

/* ── BLOG: post ── */
.post-container { max-width: 780px; }
.post-head { background: var(--green-tint); padding: 40px 0 34px; border-bottom: 1px solid var(--green-line); }
.post-head h1 {
  font-family: var(--serif);
  font-size: 2.35rem; line-height: 1.15; font-weight: 600;
  color: var(--green); margin: 10px 0 14px; text-wrap: balance;
}
.post-dek { font-size: 1.12rem; line-height: 1.6; color: var(--muted); margin: 0 0 18px; }
.post-byline {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--sans); font-size: .85rem; color: var(--muted); margin: 0;
}

.post-toc {
  background: var(--white);
  border: 1px solid var(--green-line);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 34px 0 8px;
}
.post-toc h2 {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px;
}
.post-toc ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.post-toc a { color: var(--green-soft); text-decoration: none; font-size: .96rem; }
.post-toc a:hover { color: var(--terra); text-decoration: underline; }

.post-body { padding-bottom: 8px; }
.post-section { padding: 30px 0 4px; }
.post-section h2 {
  font-family: var(--serif);
  font-size: 1.62rem; line-height: 1.25; font-weight: 600;
  color: var(--green); margin: 0 0 16px; text-wrap: balance;
}
.post-section p { font-size: 1.06rem; line-height: 1.75; color: var(--ink); margin: 0 0 16px; }
.post-section strong { color: var(--green); font-weight: 600; }
.post-section a { color: var(--terra); }

/* Price table — scrolls on its own so the page body never moves sideways */
.table-scroll { overflow-x: auto; margin: 20px 0 8px; -webkit-overflow-scrolling: touch; }
.price-table {
  width: 100%; min-width: 560px; border-collapse: collapse;
  font-family: var(--sans); font-size: .93rem;
  background: var(--white);
  border: 1px solid var(--green-line); border-radius: var(--radius); overflow: hidden;
}
.price-table th, .price-table td {
  padding: 13px 16px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--green-line);
}
.price-table thead th {
  background: var(--green-tint); color: var(--green);
  font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
}
.price-table tbody th { font-weight: 600; color: var(--green); width: 27%; }
.price-table tbody td:first-of-type { font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--terra-dark); font-weight: 600; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: none; }

.post-related {
  margin: 40px 0 8px; padding: 24px 26px;
  background: var(--green-tint); border-radius: var(--radius);
}
.post-related h2 {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px;
}
.post-related ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.post-related a { color: var(--green-soft); font-weight: 500; text-decoration: none; }
.post-related a:hover { color: var(--terra); text-decoration: underline; }

.reassure-links { margin-top: 14px; }
.reassure-links a { color: #fff; font-weight: 600; text-decoration: underline; }

@media (max-width: 640px) {
  .post-head h1 { font-size: 1.78rem; }
  .post-section h2 { font-size: 1.34rem; }
  .post-section p { font-size: 1.01rem; }
  .price-table tbody th { width: auto; }
}
