/* ============================================================================
   THEME 9 — "Warm Community"
   Design system extracted from the provided charity/community concept:
   deep-teal rounded panels on a warm cream canvas, a peach/coral accent,
   big radii, wave dividers, pill buttons, circular icon chips, oval stat pills
   and a frame-breaking testimonial card. Plus Jakarta Sans throughout.

   The accent is fully tokenized (--accent + rgb + computed shades) so the
   brand-color picker can recolor the whole theme with zero stray hex.
   ============================================================================ */

:root {
  /* ---- accent (tokenized — overwritten by the brand-color block) ---- */
  --accent: #f6a97f;
  --accent-rgb: 246, 169, 127;
  --accent-dark: #e07d4b;   /* darker — hovers / on-light text */
  --accent-bright: #f9c199; /* lighter — glows / gradients */
  --accent-soft: #f9c6a8;   /* soft accent (quote marks, rings) */
  --accent-tint: #fbe6d8;   /* very pale accent (soft backgrounds) */

  /* ---- teal panel family ---- */
  --teal-900: #123230;
  --teal-800: #173e3b;
  --teal-700: #1d4b47;
  --teal-600: #22524d;
  --deepgreen: #14524a;

  /* ---- neutral canvas ---- */
  --cream: #fbf7f2;
  --cream-2: #f5efe7;
  --ivory: #f5efe7;
  --paper: #ffffff;
  --ink: #1f2a2a;
  --ink-soft: #4a5654;
  --muted: #6d7b79;
  --line: #e7ded4;
  --line-dark: rgba(255, 255, 255, 0.12);

  /* ---- category icon colours (community concept) ---- */
  --cat-blue: #3aa0d8;
  --cat-orange: #ef7a3a;
  --cat-green: #2f8f6b;

  /* ---- shape + depth ---- */
  --r-panel: 34px;
  --r-card: 22px;
  --r-sm: 14px;
  --r-xs: 10px;
  --pill: 999px;
  --shadow: 0 24px 60px rgba(18, 50, 48, 0.12);
  --shadow-sm: 0 12px 30px rgba(18, 50, 48, 0.08);
  --shadow-dark: 0 30px 70px rgba(0, 0, 0, 0.28);

  --font: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: "Plus Jakarta Sans", system-ui, sans-serif;
  --gutter: 26px;
  --shell: 1180px;
}

/* ------------------------------------------------------------------ RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; } /* entrance transforms never cause mobile h-scroll */
body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(120% 80% at 12% 0%, #f8e2d2 0%, rgba(248, 226, 210, 0) 46%),
    radial-gradient(120% 90% at 100% 100%, #d9e7ef 0%, rgba(217, 231, 239, 0) 52%),
    var(--cream);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { line-height: 1.12; letter-spacing: -0.015em; font-weight: 800; }
sup { font-size: 0.5em; font-weight: 700; vertical-align: super; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ------------------------------------------------------------- PRIMITIVES */
.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gutter); }
/* Grid/flex tracks default to min-width:auto, so wide children (forms, long
   words) blow out the track and cause horizontal overflow. Reset it. */
.hero-layout > *, .split-layout > *, .process-layout > *, .contact-layout > *,
.area-layout > *, .pricing-layout > *, .problems-grid > *, .location-hero-inner > *,
.coverage-layout > *, .location-contact-layout > *, .cta-inner > *, .special-inner > *,
.city-authority-layout > *, .nearby-layout > *, .location-section-heading > *,
.faq-layout > *, .local-pricing-layout > *, .footer-main > * { min-width: 0; }
.section { padding: 78px 0; position: relative; }
.section-ivory { background: transparent; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-dark); background: rgba(var(--accent-rgb), 0.14);
  padding: 6px 14px; border-radius: var(--pill); margin-bottom: 16px;
}
.eyebrow > span:first-child { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.eyebrow-light {
  color: #cfe4df;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
}
.eyebrow-light > span:first-child { background: var(--accent); }

.button {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 15px; border: none;
  border-radius: var(--pill); padding: 14px 26px; transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.button span { transition: transform 0.2s; }
.button:hover span { transform: translateX(3px); }
.button-primary { background: var(--accent); color: #5a2c12; }
.button-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.button-light { background: #fff; color: var(--teal-900); }
.button-light:hover { background: var(--cream-2); transform: translateY(-2px); }
.button-full { width: 100%; justify-content: center; }

.text-link {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700;
  color: var(--accent-dark); font-size: 14px;
}
.text-link:hover { gap: 11px; }
.text-link-light { color: var(--accent-soft); }
.text-link-light:hover { color: #fff; }

.status-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.22);
}

.section-heading { max-width: 640px; margin-bottom: 46px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); color: var(--teal-900); }
.section-heading p { color: var(--muted); margin-top: 14px; font-size: 15.5px; }
.section-heading.heading-split { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; max-width: none; }
.section-heading.heading-split p { margin-top: 0; }

/* =========================================================== NAVBAR / HEADER */
.site-header { position: relative; z-index: 40; }
.utility-bar { background: var(--teal-900); color: rgba(255, 255, 255, 0.82); font-size: 12.5px; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; }
.utility-inner p { display: flex; align-items: center; gap: 8px; }
.utility-inner > div { display: flex; gap: 20px; }
.main-nav {
  display: flex; align-items: center; gap: 22px; padding: 16px var(--gutter);
  max-width: var(--shell); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 20px;
  line-height: 1; text-align: center;
}
.brand > span { display: flex; flex-direction: column; font-weight: 800; color: var(--teal-900); font-size: 18px; line-height: 1.1; }
.brand small { font-size: 9.5px; letter-spacing: 0.16em; color: var(--muted); font-weight: 700; }
.brand-light > span { color: #fff; }
.brand-light small { color: rgba(255, 255, 255, 0.5); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a, .nav-dd > a { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 5px; }
.nav-links > a:hover, .nav-dd > a:hover { color: var(--accent-dark); }
.nav-dd { position: relative; }
.nav-dd-caret { font-size: 10px; }
.nav-dd-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  box-shadow: var(--shadow); padding: 10px; min-width: 250px; display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transition: 0.2s; z-index: 50;
}
/* Hover-to-open is DESKTOP-ONLY. Scoped behind min-width so it cannot reach
   the mobile menu: touch devices latch :hover on tap, and this selector
   (.nav-dd:hover .nav-dd-panel = specificity 0,3,0) outranks the plain
   .nav-dd-panel override in the max-width:900px block (0,1,0) — media queries
   add no specificity — which re-applied translateX(-50%) and pushed the
   submenu half its width off the left edge of the panel. */
@media (min-width: 901px) {
  .nav-dd:hover .nav-dd-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}
.nav-dd-panel a { padding: 9px 12px; border-radius: 9px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.nav-dd-panel a:hover { background: var(--accent-tint); color: var(--accent-dark); }
.nav-dd-all { color: var(--accent-dark) !important; border-top: 1px solid var(--line); margin-top: 4px; border-radius: 0 !important; }

.nav-call {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px;
  border-radius: var(--pill); background: var(--teal-900); color: #fff; font-weight: 700; font-size: 14px;
}
.nav-call:hover { background: var(--teal-700); }
.nav-call span:not(.phone-icon) { display: flex; flex-direction: column; line-height: 1.15; }
.nav-call small { font-size: 10px; font-weight: 600; opacity: 0.7; }
.nav-call .phone-icon {
  width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff;
  display: grid; place-items: center; font-size: 15px;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 40px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: var(--teal-900); border-radius: 2px; transition: 0.2s; }
/* Close (×) button inside the mobile menu panel — hidden on desktop. */
.nav-close { display: none; position: absolute; top: 20px; right: 22px; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
.nav-close span { position: absolute; top: 50%; left: 50%; width: 18px; height: 2px; background: var(--teal-900); border-radius: 2px; }
.nav-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

/* ================================================================= HERO */
.hero {
  position: relative; overflow: hidden; border-radius: var(--r-panel);
  max-width: 1240px; margin: 22px auto 0; padding: 0 18px;
  min-height: 620px; display: flex; align-items: stretch;
  background: var(--teal-900);
}
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: 70% 40%; z-index: 0; }
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(96deg, #0e2a28 0%, #123230 28%, rgba(18, 50, 48, 0.92) 44%, rgba(18, 50, 48, 0.55) 62%, rgba(18, 50, 48, 0.12) 82%, rgba(18, 50, 48, 0.05) 100%);
}
.hero-wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 60px; z-index: 2; display: block; }
.hero-layout {
  position: relative; z-index: 3; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 26px; align-items: start; width: 100%; padding: 46px 0 84px; min-height: 620px;
}
.hero-copy { align-self: center; }
/* detail-page hero: same treatment, a touch shorter, with a breadcrumb */
.hero-detail { min-height: 540px; }
.hero-detail .hero-layout { min-height: 540px; padding: 40px 0 80px; }
.hero-detail .breadcrumbs { margin-bottom: 14px; }
.hero-copy h1 { color: #fff; font-size: clamp(2.4rem, 5.4vw, 3.6rem); letter-spacing: -0.02em; }
.hero-copy > p { color: rgba(255, 255, 255, 0.72); margin: 22px 0 30px; font-size: 16.5px; max-width: 400px; }
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-proof > div { display: flex; flex-direction: column; }
.hero-proof strong { color: #fff; font-size: 30px; font-weight: 800; }
.hero-proof span { display: flex; flex-direction: column; color: var(--accent-soft); font-size: 12px; }
.hero-proof small { color: rgba(255, 255, 255, 0.6); font-size: 12px; }

/* hero request card (floating white form) */
.request-card {
  align-self: center; justify-self: end; background: #fff; border-radius: 20px; padding: 24px;
  box-shadow: var(--shadow-dark); width: 100%; max-width: 400px; min-width: 0;
}
.request-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.request-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; font-size: 19px; }
.request-heading small { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-dark); }
.request-heading h2 { font-size: 20px; color: var(--teal-900); }
.request-card > p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.request-card label, .contact-form label { display: flex; flex-direction: column; gap: 6px; }
.request-card label span, .contact-form label span { font-size: 12px; font-weight: 600; color: var(--teal-900); }
.full-field { grid-column: 1 / -1; }
.request-card input, .request-card select, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--r-xs); padding: 11px 13px;
  font-family: inherit; font-size: 13.5px; color: var(--ink); background: #fff; outline: none; transition: border-color 0.2s;
}
.request-card input:focus, .request-card select:focus, .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--accent);
}
.request-card input::placeholder, .contact-form input::placeholder, .contact-form textarea::placeholder { color: #b3bcba; }
.form-note { display: block; text-align: center; color: var(--muted); font-size: 11.5px; margin-top: 12px; }
.rl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-success {
  display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--r-xs);
  background: rgba(var(--accent-rgb), 0.16); color: var(--accent-dark); font-weight: 600; font-size: 13px; text-align: center;
}
.form-success.visible { display: block; }
.rl-turnstile { margin: 6px 0 12px; }

/* ============================================================ TRUST STRIP */
.trust-strip { padding: 40px 0 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.trust-grid > div { display: flex; gap: 14px; align-items: flex-start; }
.trust-grid span { font-size: 13px; font-weight: 800; color: var(--accent); }
.trust-grid p { font-size: 13px; color: var(--muted); }
.trust-grid strong { display: block; color: var(--teal-900); font-size: 15px; }

/* ================================================================ ABOUT */
.split-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.image-stack { position: relative; }
.image-stack img { width: 100%; border-radius: var(--r-card); object-fit: cover; }
.experience-stamp {
  position: absolute; right: -14px; bottom: -14px; background: var(--teal-900); color: #fff;
  border-radius: 20px; padding: 18px 22px; text-align: center; box-shadow: var(--shadow);
}
.experience-stamp strong { font-size: 34px; color: var(--accent); font-weight: 800; }
.experience-stamp span { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.75); }
.image-caption {
  position: absolute; left: 16px; top: 16px; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(4px);
  color: var(--teal-900); font-size: 12px; font-weight: 600; padding: 8px 14px; border-radius: var(--pill);
}
.section-copy .lead { font-size: 18px; color: var(--ink); margin: 6px 0 14px; font-weight: 500; }
.section-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); color: var(--teal-900); margin-bottom: 6px; }
.section-copy p { color: var(--muted); margin-bottom: 12px; }
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.check-list li span {
  flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark);
  display: grid; place-items: center; font-size: 12px; font-weight: 700; margin-top: 1px;
}
.signature-row { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.signature { font-size: 22px; color: var(--teal-900); font-weight: 800; font-style: italic; }
.signature-row strong { display: block; color: var(--teal-900); font-size: 14px; }
.signature-row small { color: var(--muted); font-size: 12.5px; }
.circle-link {
  margin-left: auto; width: 48px; height: 48px; border-radius: 50%; background: var(--accent);
  color: #fff; display: grid; place-items: center; font-size: 18px; transition: transform 0.2s;
}
.circle-link:hover { transform: translateY(-3px) rotate(8deg); }

/* ============================================================= SERVICES
   Sample "mission card": white rounded card, photo on top, an overlapping
   circular icon chip (cycling accent + category colours), title, description. */
.svc-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 0 22px 26px; box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-thumb { width: 100%; height: 150px; border-radius: var(--r-sm); background-size: cover; background-position: center; margin-top: 16px; }
.svc-ic { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; color: #fff; border: 4px solid #fff; margin: -30px 0 14px; box-shadow: var(--shadow-sm); }
.svc-ic svg { width: 24px; height: 24px; }
.svc-ic.ic-accent { background: var(--accent); }
.svc-ic.ic-blue { background: var(--cat-blue); }
.svc-ic.ic-orange { background: var(--cat-orange); }
.svc-ic.ic-green { background: var(--deepgreen); }
.svc-card strong { color: var(--teal-900); font-size: 17px; margin-bottom: 8px; }
.svc-desc { color: var(--muted); font-size: 13.5px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.svc-more { margin-top: 14px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 13px; color: var(--accent-dark); opacity: 0; transform: translateY(4px); transition: opacity 0.2s, transform 0.2s; }
.svc-card:hover .svc-more { opacity: 1; transform: translateY(0); }

/* (legacy image-overlay service cards — kept for any theme reuse) */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 22px; }
.service-card {
  position: relative; border-radius: var(--r-card); overflow: hidden; min-height: 320px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); background: var(--teal-900);
}
.service-card-featured { grid-column: span 1; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover img { transform: scale(1.06); }
.service-overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  gap: 8px; padding: 22px;
  background: linear-gradient(180deg, rgba(18, 50, 48, 0) 30%, rgba(18, 50, 48, 0.55) 62%, rgba(11, 34, 32, 0.94) 100%);
  color: #fff;
}
.service-overlay span {
  align-self: flex-start; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: #5a2c12; background: var(--accent); padding: 5px 12px; border-radius: var(--pill);
}
.service-overlay h3 { font-size: 20px; }
.service-overlay p { font-size: 13px; color: rgba(255, 255, 255, 0.82); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.service-overlay a { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--accent-soft); font-size: 13.5px; margin-top: 4px; }
.service-overlay a b { transition: transform 0.2s; }
.service-overlay a:hover b { transform: translateX(4px); }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-list a {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; row-gap: 2px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 18px 20px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, border-color 0.2s;
}
.service-list a:hover { transform: translateY(-3px); border-color: var(--accent); }
.service-list a span { font-size: 13px; font-weight: 800; color: var(--accent); grid-row: span 2; }
.service-list a strong { color: var(--teal-900); font-size: 15.5px; }
.service-list a small { grid-column: 2; color: var(--muted); font-size: 12.5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-list a b { grid-row: span 2; color: var(--accent-dark); font-size: 16px; }

/* ========================================================= PARTNER LOGOS */
.brand-strip { padding: 34px 0; }
.brand-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand-strip-inner p { color: var(--muted); font-size: 13px; font-weight: 600; }
.brand-strip-inner > div { display: flex; gap: 32px; flex-wrap: wrap; }
.brand-strip-inner span { font-weight: 800; color: rgba(31, 42, 42, 0.4); letter-spacing: 0.08em; font-size: 15px; }

/* ======================================================== SPECIALS RIBBON */
.special-ribbon { padding: 0 0; }
.special-inner {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px;
  background: linear-gradient(155deg, var(--teal-800), var(--teal-900));
  border-radius: var(--r-panel); padding: 40px 44px; color: #fff;
}
.special-badge { text-align: center; background: rgba(var(--accent-rgb), 0.16); border: 1px solid rgba(var(--accent-rgb), 0.3); border-radius: 20px; padding: 16px 22px; }
.special-badge small { display: block; font-size: 11px; color: var(--accent-soft); }
.special-badge strong { display: block; font-size: 34px; color: var(--accent); font-weight: 800; }
.special-badge span { font-size: 11px; color: rgba(255, 255, 255, 0.7); }
.special-inner h2 { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-top: 8px; }
.special-inner > p { font-size: 13.5px; color: rgba(255, 255, 255, 0.68); max-width: 240px; }

/* =========================================================== WHY CHOOSE US */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit-grid article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 24px;
  box-shadow: var(--shadow-sm); position: relative;
}
.benefit-number { font-size: 12px; font-weight: 800; color: var(--accent); letter-spacing: 0.08em; }
.mini-icon {
  width: 54px; height: 54px; border-radius: 50%; background: var(--teal-900); color: #fff;
  display: grid; place-items: center; font-size: 22px; margin: 14px 0 16px;
}
.benefit-grid article:nth-child(2) .mini-icon { background: var(--cat-blue); }
.benefit-grid article:nth-child(3) .mini-icon { background: var(--cat-orange); }
.benefit-grid article:nth-child(4) .mini-icon { background: var(--deepgreen); }
.benefit-grid h3 { font-size: 17px; color: var(--teal-900); margin-bottom: 8px; }
.benefit-grid p { color: var(--muted); font-size: 13.5px; }

/* ================================================================ PRICING */
.pricing-section { padding: 78px 0; }
.pricing-layout {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center;
  background: linear-gradient(155deg, var(--teal-800), var(--teal-900));
  border-radius: var(--r-panel); padding: 54px; color: #fff;
}
.pricing-intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.pricing-intro > p { color: rgba(255, 255, 255, 0.7); font-size: 15px; margin-bottom: 20px; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-cards article { background: #fff; color: var(--ink); border-radius: var(--r-card); padding: 24px 22px; display: flex; flex-direction: column; }
.price-cards article.price-featured { background: var(--accent); color: #4a2410; transform: translateY(-8px); box-shadow: var(--shadow-dark); }
.price-cards article > div { display: flex; align-items: center; justify-content: space-between; }
.price-cards article > div small { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dark); }
.price-featured > div small { color: #6b3417; }
.price-cards article > div span { font-size: 11.5px; color: var(--muted); }
.price-featured > div span { color: #6b3417; }
.price-cards h3 { font-size: 30px; color: var(--teal-900); margin: 12px 0 14px; display: flex; align-items: baseline; gap: 8px; }
.price-featured h3 { color: #4a2410; }
.price-cards h3 small { font-size: 12px; font-weight: 600; color: var(--muted); }
.price-cards ul { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; flex: 1; }
.price-cards li { font-size: 13px; color: var(--ink-soft); padding-left: 20px; position: relative; }
.price-cards li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 700; }
.price-featured li { color: #4a2410; }
.price-featured li::before { color: #4a2410; }
.price-cards article a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 14px; padding: 12px; border-radius: var(--pill); background: var(--teal-900); color: #fff; }
.price-featured a { background: #4a2410; }

/* ================================================================ PROCESS */
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.process-copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); color: var(--teal-900); margin-bottom: 24px; }
.process-list { display: flex; flex-direction: column; gap: 10px; }
.process-list article { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: #fff; transition: border-color 0.2s; }
.process-list article.active { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.process-list button {
  width: 100%; display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: none;
  background: none; cursor: pointer; font-family: inherit; text-align: left;
}
.process-list button span {
  width: 34px; height: 34px; border-radius: 50%; background: var(--cream-2); color: var(--teal-900);
  display: grid; place-items: center; font-weight: 800; font-size: 13px; flex: none;
}
.process-list article.active button span { background: var(--accent); color: #fff; }
.process-list button strong { color: var(--teal-900); font-size: 15.5px; }
.process-list p { max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.3s; padding: 0 18px; color: var(--muted); font-size: 13.5px; }
.process-list article.active p { max-height: 140px; padding: 0 18px 16px 66px; }
.process-visual { position: relative; }
.process-visual img { width: 100%; border-radius: var(--r-card); object-fit: cover; min-height: 340px; }
.process-card { position: absolute; left: 18px; bottom: 46px; right: 18px; background: rgba(18, 50, 48, 0.94); backdrop-filter: blur(4px); color: #fff; border-radius: var(--r-sm); padding: 18px 20px; }
.process-card small { font-size: 11px; letter-spacing: 0.14em; color: var(--accent-soft); font-weight: 700; }
.process-card strong { display: block; font-size: 17px; margin: 4px 0 6px; }
.process-card p { font-size: 13px; color: rgba(255, 255, 255, 0.78); }
.process-meter { position: absolute; left: 18px; right: 18px; bottom: 22px; height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.25); overflow: hidden; }
.process-meter span { display: block; height: 100%; background: var(--accent); border-radius: 999px; transition: width 0.35s; }

/* =============================================================== PROBLEMS */
.problems-section { padding: 78px 0; }
.problems-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: center;
  background: linear-gradient(155deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-panel);
  padding: 54px; color: #fff;
}
.problems-intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.problems-intro p { color: rgba(255, 255, 255, 0.7); margin-bottom: 24px; }
.problem-list { display: flex; flex-direction: column; gap: 14px; }
.problem-list article { display: flex; align-items: flex-start; gap: 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: var(--r-sm); padding: 18px 20px; }
.problem-list article > span { font-size: 13px; font-weight: 800; color: var(--accent); flex: none; }
.problem-list h3 { font-size: 15.5px; color: #fff; margin-bottom: 4px; }
.problem-list p { color: rgba(255, 255, 255, 0.7); font-size: 13.5px; }
.problem-list b { margin-left: auto; color: var(--accent-soft); font-size: 16px; }

/* ========================================================== REVIEWS / TESTIMONIALS */
.review-heading, .local-review-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.review-heading h2, .local-review-heading h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); }
.rating-summary, .local-review-heading > div:last-child { display: flex; align-items: center; gap: 12px; }
.rating-summary strong, .local-review-heading strong { font-size: 34px; color: var(--teal-900); font-weight: 800; }
.rating-summary span, .local-review-heading > div:last-child span { display: flex; flex-direction: column; color: var(--accent); font-size: 14px; }
.rating-summary small, .local-review-heading small { color: var(--muted); font-size: 12px; }
.review-grid, .local-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.review-grid article, .local-review-grid article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 26px;
  box-shadow: var(--shadow-sm); position: relative;
}
.review-featured { background: linear-gradient(155deg, var(--teal-800), var(--teal-900)) !important; color: #fff; border: none !important; }
.quote-mark { font-size: 60px; line-height: 1; color: var(--accent-soft); font-family: Georgia, serif; font-weight: 800; margin-bottom: -10px; }
.stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.review-grid blockquote, .local-review-grid blockquote { font-size: 15px; color: var(--teal-900); line-height: 1.6; font-weight: 500; margin-bottom: 20px; }
.review-featured blockquote { color: #fff; }
.review-grid article > div:last-child, .local-review-grid article > div:last-child { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-featured > div:last-child { border-top-color: rgba(255, 255, 255, 0.15); }
.avatar, .local-review-grid article > div:last-child > span:first-child {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark);
  display: grid; place-items: center; font-weight: 800; font-size: 14px; flex: none;
}
.review-featured .avatar { background: rgba(255, 255, 255, 0.15); color: #fff; }
.review-grid p strong, .local-review-grid p strong { color: var(--teal-900); font-size: 14px; display: block; }
.review-featured p strong { color: #fff; }
.review-grid p small, .local-review-grid p small { color: var(--muted); font-size: 12px; }
.review-featured p small { color: rgba(255, 255, 255, 0.6); }
.verified, .local-review-grid b { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--accent-dark); }
.review-featured .verified { color: var(--accent-soft); }

/* ========================================================= EMERGENCY BANNER */
.emergency-banner { position: relative; overflow: hidden; border-radius: var(--r-panel); max-width: 1240px; margin: 0 auto; }
.emergency-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.emergency-inner { position: relative; z-index: 2; padding: 70px 0; }
.emergency-banner::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(11, 34, 32, 0.94) 40%, rgba(18, 50, 48, 0.3) 100%); }
.emergency-card { max-width: 520px; color: #fff; padding-left: 44px; }
.emergency-card h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.emergency-card p { color: rgba(255, 255, 255, 0.78); margin-bottom: 24px; }
.emergency-card > div { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.emergency-card small { color: rgba(255, 255, 255, 0.6); font-size: 12.5px; }

/* ============================================================ SERVICE AREA */
.area-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); margin-bottom: 14px; }
.area-copy > p { color: var(--muted); margin-bottom: 22px; }
.area-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.area-columns li { padding: 7px 0; border-bottom: 1px dashed var(--line); }
.area-columns a { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.area-columns a:hover { color: var(--accent-dark); }
.zip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.zip-grid span { font-size: 12.5px; font-weight: 700; color: var(--teal-900); background: #fff; border: 1px solid var(--line); border-radius: var(--pill); padding: 6px 14px; }
.zip-check { margin-top: 18px; color: var(--muted); font-size: 13.5px; }
.zip-check strong { color: var(--teal-900); }
/* Real embedded Google map in a soft rounded frame (replaces the old
   illustrated fake map — a distinctly different, honest treatment). */
.area-map { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); min-height: 400px; background: var(--cream-2); }
.area-map iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; filter: saturate(0.9); }
.area-map-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; background: linear-gradient(160deg, var(--teal-700), var(--teal-900)); color: #fff; }
.area-map-pin { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 22px; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); }
.area-map-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--teal-900); background: rgba(255, 255, 255, 0.94); padding: 8px 15px; border-radius: var(--pill); box-shadow: var(--shadow-sm); }

/* ================================================================== FAQ */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 44px; align-items: start; }
.faq-intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); margin-bottom: 14px; }
.faq-intro p { color: var(--muted); margin-bottom: 16px; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion article { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.accordion article.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.accordion button { width: 100%; display: flex; align-items: center; gap: 14px; padding: 18px 22px; border: none; background: none; cursor: pointer; font-family: inherit; text-align: left; }
.accordion button span { font-size: 12px; font-weight: 800; color: var(--accent); }
.accordion button strong { color: var(--teal-900); font-size: 15.5px; flex: 1; }
.accordion button b { font-size: 20px; color: var(--accent-dark); font-weight: 400; }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.accordion article.open .accordion-panel { max-height: 320px; }
.accordion-panel p { padding: 0 22px 20px 50px; color: var(--muted); font-size: 14px; }

/* ================================================================ CTA BAND */
.cta-band { padding: 0; }
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center;
  background: linear-gradient(155deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-panel);
  padding: 52px 54px; color: #fff;
}
.cta-inner h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-top: 8px; }
.cta-inner p { color: rgba(255, 255, 255, 0.72); font-size: 15px; }

/* =============================================================== CONTACT */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); margin-bottom: 14px; }
.contact-copy > p { color: var(--muted); margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-details a, .contact-details > div { display: flex; flex-direction: column; padding: 16px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); box-shadow: var(--shadow-sm); }
.contact-details small { font-size: 12px; color: var(--muted); }
.contact-details strong { font-size: 17px; color: var(--teal-900); }
.contact-details a:hover strong { color: var(--accent-dark); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow-sm); }
.contact-form button { grid-column: 1 / -1; }

/* ============================================================= NEWSLETTER */
.newsletter-section { padding: 20px 0 40px; }
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  background: var(--accent-tint); border-radius: var(--r-panel); padding: 44px 52px;
}
.newsletter-inner > div { display: flex; align-items: center; gap: 16px; }
.newsletter-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 20px; flex: none; }
.newsletter-inner strong { display: block; color: var(--teal-900); font-size: 19px; }
.newsletter-inner small { color: #8a6b57; font-size: 13.5px; }
#newsletter-form { display: flex; gap: 12px; flex: 1; min-width: 280px; max-width: 460px; }
#newsletter-form input { flex: 1; border: 1px solid #eccdb8; border-radius: var(--pill); padding: 14px 22px; font-family: inherit; font-size: 14px; background: #fff; outline: none; }
#newsletter-form button { border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 14px; border-radius: var(--pill); padding: 14px 24px; background: var(--accent); color: #5a2c12; white-space: nowrap; }
#newsletter-form button:hover { background: var(--accent-dark); color: #fff; }

/* ================================================================= FOOTER */
.site-footer { background: linear-gradient(180deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-panel); color: #fff; margin: 40px auto 8px; max-width: 1240px; overflow: hidden; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 36px; padding: 52px var(--gutter) 34px; }
.footer-brand > p { color: rgba(255, 255, 255, 0.62); font-size: 14px; max-width: 250px; margin: 16px 0 18px; }
.footer-phone { display: inline-block; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.footer-phone:hover { color: var(--accent-soft); }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
/* higher specificity than `.footer-main > div a` so the icons stay circular */
.footer-main .social-links a { width: 38px; height: 38px; padding: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: background 0.2s; }
.footer-main .social-links a:hover { background: var(--accent); }
.footer-main .social-links a svg { width: 16px; height: 16px; }
.footer-main h3 { font-size: 15px; margin-bottom: 18px; }
.footer-main > div a { display: block; color: rgba(255, 255, 255, 0.62); font-size: 14px; padding: 6px 0; }
.footer-main > div a:hover { color: #fff; }
.footer-address { display: flex !important; align-items: flex-start; gap: 8px; }
.footer-main p { color: rgba(255, 255, 255, 0.62); font-size: 14px; padding: 6px 0; }
.footer-map-wrap { padding: 0 var(--gutter) 24px; }
.footer-map { border-radius: var(--r-sm); display: block; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px var(--gutter); border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); font-size: 13px; flex-wrap: wrap; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: #fff; }

/* =========================================================== STICKY CALL */
/* Always-on floating call button (theme-9 concept: teal pill, peach icon). */
.sticky-call { position: fixed; right: 20px; bottom: 20px; z-index: 60; display: inline-flex; align-items: center; gap: 12px; background: var(--teal-900); color: #fff; padding: 9px 22px 9px 10px; border-radius: var(--pill); box-shadow: var(--shadow-dark); transition: transform 0.2s, box-shadow 0.2s; }
.sticky-call:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34); }
.sticky-call span { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.sticky-call div { display: flex; flex-direction: column; line-height: 1.15; }
.sticky-call small { font-size: 10.5px; font-weight: 600; color: rgba(255, 255, 255, 0.7); }
.sticky-call strong { font-size: 15px; }

/* ================================================= INNER-PAGE HERO / BANNER */
.location-hero { position: relative; overflow: hidden; border-radius: var(--r-panel); max-width: 1240px; margin: 22px auto 0; min-height: 440px; display: flex; align-items: center; background: var(--teal-900); }
.location-hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.location-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, #0e2a28 0%, rgba(18, 50, 48, 0.9) 42%, rgba(18, 50, 48, 0.4) 78%, rgba(18, 50, 48, 0.15) 100%); }
.location-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 30px; align-items: center; width: 100%; padding: 56px 0; }
.location-hero-copy { color: #fff; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: rgba(255, 255, 255, 0.6); margin-bottom: 16px; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs strong { color: var(--accent-soft); }
.location-hero-copy h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 14px; }
.location-hero-copy > p { color: rgba(255, 255, 255, 0.72); font-size: 16px; max-width: 540px; }
.location-hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 26px; flex-wrap: wrap; }
.location-call-link { display: flex; flex-direction: column; color: #fff; }
.location-call-link small { font-size: 11px; opacity: 0.7; }
.location-call-link strong { font-size: 18px; }
.location-call-link:hover strong { color: var(--accent-soft); }
.local-snapshot { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: blur(6px); border-radius: var(--r-card); padding: 24px; color: #fff; }
.snapshot-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.snapshot-pin { width: 42px; height: 42px; border-radius: 12px; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.snapshot-top small { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.6); }
.snapshot-top strong { font-size: 16px; }
.local-snapshot dl { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.local-snapshot dl > div { display: flex; align-items: center; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.local-snapshot dt { font-size: 13px; color: rgba(255, 255, 255, 0.65); }
.local-snapshot dd { font-weight: 700; font-size: 14px; }
.local-snapshot > p { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255, 255, 255, 0.75); margin-bottom: 12px; }
.local-snapshot > a { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent-soft); }

/* ============================================== LOCATION-DETAIL SECTIONS */
.location-trust { padding: 40px 0 0; }
.location-trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 40px; box-shadow: var(--shadow-sm); }
.location-trust-inner > div { text-align: center; }
.location-trust-inner strong { display: block; font-size: 28px; color: var(--teal-900); font-weight: 800; }
.location-trust-inner span { font-size: 12.5px; color: var(--muted); }
.location-trust-inner p { flex: 1; min-width: 220px; text-align: right; color: var(--muted); font-size: 13px; }

.city-authority-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 50px; }
.city-intro { grid-column: 1 / -1; }
.city-intro h2 { font-size: clamp(1.9rem, 4vw, 2.5rem); color: var(--teal-900); max-width: 720px; }
.city-story { color: var(--ink-soft); }
.city-story p { margin-bottom: 14px; font-size: 15px; }
.city-story .drop-cap::first-letter { font-size: 3.4rem; font-weight: 800; float: left; line-height: 0.8; padding: 6px 12px 0 0; color: var(--accent-dark); }
.city-note { background: var(--teal-900); color: #fff; border-radius: var(--r-card); padding: 30px; align-self: start; }
.city-note p { font-size: 17px; font-style: italic; line-height: 1.5; margin-bottom: 16px; }
.city-note strong { color: var(--accent-soft); font-size: 14px; }

.location-services { }
.location-section-heading { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 30px; align-items: end; margin-bottom: 40px; }
.location-section-heading h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); }
.location-section-heading p { color: var(--muted); font-size: 14.5px; }
.location-service-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.location-service-index a { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform 0.2s, border-color 0.2s; }
.location-service-index a:hover { transform: translateY(-4px); border-color: var(--accent); }
.location-service-index a > span { font-size: 12px; font-weight: 800; color: var(--accent); }
.location-service-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--teal-900); color: #fff; display: grid; place-items: center; font-size: 22px; margin: 12px 0 14px; }
.location-service-icon svg { width: 22px; height: 22px; }
.location-service-index a:nth-child(4n+1) .location-service-icon { background: var(--accent); }
.location-service-index a:nth-child(4n+2) .location-service-icon { background: var(--cat-blue); }
.location-service-index a:nth-child(4n+3) .location-service-icon { background: var(--cat-orange); }
.location-service-index a:nth-child(4n+4) .location-service-icon { background: var(--deepgreen); }
.location-service-index h3 { font-size: 17px; color: var(--teal-900); margin-bottom: 8px; }
.location-service-index p { color: var(--muted); font-size: 13.5px; flex: 1; margin-bottom: 14px; }
.location-service-index b { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--accent-dark); }

.city-service-details .section-heading { margin-bottom: 40px; }
.city-service-details .section-heading h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); }
.city-service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-bottom: 34px; }
.city-service-row-reverse .city-service-media { order: 2; }
.city-service-media img { width: 100%; border-radius: var(--r-card); object-fit: cover; min-height: 300px; }
.city-service-row h3 { font-size: 22px; color: var(--teal-900); margin-bottom: 12px; }
.city-service-row p { color: var(--muted); margin-bottom: 12px; }
.city-service-row .text-link { margin-top: 6px; }

.service-signs { position: relative; overflow: hidden; border-radius: var(--r-panel); max-width: 1240px; margin: 0 auto; }
.service-signs-image { position: absolute; inset: 0; }
.service-signs-image img { width: 100%; height: 100%; object-fit: cover; }
.service-signs::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(11, 34, 32, 0.5), rgba(18, 50, 48, 0.85) 60%); }
.service-signs-inner { position: relative; z-index: 2; padding: 60px 0; display: flex; justify-content: flex-end; }
.signs-card { background: rgba(18, 50, 48, 0.9); backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--r-card); padding: 34px; color: #fff; max-width: 480px; }
.signs-card h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 20px; }
.signs-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.signs-list p { display: flex; align-items: center; gap: 14px; font-size: 14.5px; color: rgba(255, 255, 255, 0.85); }
.signs-list p span { width: 30px; height: 30px; border-radius: 50%; background: rgba(var(--accent-rgb), 0.2); color: var(--accent-soft); display: grid; place-items: center; font-weight: 800; font-size: 12px; flex: none; }

.local-pricing-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center; }
.local-pricing-layout h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); margin-bottom: 14px; }
.local-pricing-layout > div:first-child p { color: var(--muted); margin-bottom: 12px; }
.local-price-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.local-price-cards article { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow-sm); }
.local-price-featured { background: var(--teal-900); color: #fff; border: none; }
.local-price-cards article > span { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-dark); }
.local-price-featured > span { color: var(--accent-soft); }
.local-price-cards h3 { font-size: 24px; color: var(--teal-900); margin: 10px 0; display: flex; align-items: baseline; gap: 6px; }
.local-price-featured h3 { color: #fff; }
.local-price-cards h3 small { font-size: 11px; font-weight: 600; color: var(--muted); }
.local-price-cards p { color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.local-price-featured p { color: rgba(255, 255, 255, 0.75); }
.local-price-cards a { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--accent-dark); }
.local-price-featured a { color: var(--accent-soft); }

.landmark-layout .landmark-heading { max-width: 640px; margin-bottom: 40px; }
.landmark-heading h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); margin-bottom: 12px; }
.landmark-heading p { color: var(--muted); }
.landmark-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.landmark-line article { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow-sm); }
.landmark-dot { width: 42px; height: 42px; border-radius: 50% 50% 50% 0; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; transform: rotate(-45deg); margin-bottom: 16px; }
.landmark-dot { }
.landmark-line small { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 4px; }
.landmark-line h3 { font-size: 16px; color: var(--teal-900); margin-bottom: 8px; }
.landmark-line p { color: var(--muted); font-size: 13px; }

.local-coverage { }
.coverage-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.coverage-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); margin-bottom: 14px; }
.coverage-copy > p { color: var(--muted); margin-bottom: 20px; }
.coverage-neighborhoods { margin: 18px 0; }
.coverage-neighborhoods strong { display: block; color: var(--teal-900); font-size: 14px; margin-bottom: 6px; }
.coverage-neighborhoods p { color: var(--muted); font-size: 13.5px; }

.nearby-section { padding: 78px 0; }
.nearby-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 40px; align-items: center; background: linear-gradient(155deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-panel); padding: 48px 54px; color: #fff; }
.nearby-layout h2 { font-size: clamp(1.7rem, 3vw, 2.1rem); }
.nearby-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.nearby-links a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; row-gap: 2px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--r-sm); padding: 16px 20px; }
.nearby-links a:hover { background: rgba(255, 255, 255, 0.1); }
.nearby-links a span { font-size: 12px; font-weight: 800; color: var(--accent); grid-row: span 2; }
.nearby-links a strong { color: #fff; font-size: 15px; }
.nearby-links a small { grid-column: 2; color: rgba(255, 255, 255, 0.6); font-size: 12.5px; }
.nearby-links a b { grid-row: span 2; color: var(--accent-soft); }

.location-cta { position: relative; overflow: hidden; border-radius: var(--r-panel); max-width: 1240px; margin: 0 auto; }
.location-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.location-cta-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(100deg, rgba(11, 34, 32, 0.94) 45%, rgba(18, 50, 48, 0.4)); }
.location-cta-inner { position: relative; z-index: 2; color: #fff; padding: 70px 54px; max-width: 620px; }
.location-cta-inner h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 14px; }
.location-cta-inner p { color: rgba(255, 255, 255, 0.78); margin-bottom: 24px; }
.location-cta-inner > div { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.location-cta-inner > div a:last-child { color: #fff; font-weight: 700; }

.location-contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.location-contact-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.3rem); color: var(--teal-900); margin-bottom: 14px; }
.location-contact-copy > p { color: var(--muted); margin-bottom: 22px; }
.location-contact-card { background: var(--teal-900); color: #fff; border-radius: var(--r-card); padding: 26px; display: flex; flex-direction: column; gap: 6px; }
.location-contact-card small { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255, 255, 255, 0.55); }
.location-contact-card strong { font-size: 17px; }
.location-contact-card a { font-size: 18px; font-weight: 800; color: var(--accent-soft); }
.location-contact-card span { color: rgba(255, 255, 255, 0.7); font-size: 13px; }

/* ==========================================================================
   REUSABLE SAMPLE-LANGUAGE COMPONENTS (shared across detail pages)
   White icon-cards, numbered step cards, comparison cards, factor cards,
   certification chips, a dark oval stat pill — all in the community concept.
   ========================================================================== */

/* --- feature icon-cards (no photo): includes / tools / benefits / landmarks --- */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform 0.2s; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card .fc-ic { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 20px; margin-bottom: 16px; }
.feature-card .fc-ic svg { width: 22px; height: 22px; }
.feature-cards .feature-card:nth-child(4n+1) .fc-ic { background: var(--accent); }
.feature-cards .feature-card:nth-child(4n+2) .fc-ic { background: var(--cat-blue); }
.feature-cards .feature-card:nth-child(4n+3) .fc-ic { background: var(--cat-orange); }
.feature-cards .feature-card:nth-child(4n+4) .fc-ic { background: var(--deepgreen); }
.feature-card h3 { font-size: 17px; color: var(--teal-900); margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 13.5px; }
.feature-card p + p { margin-top: 8px; }

/* --- numbered step cards (process) --- */
.step-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 24px; box-shadow: var(--shadow-sm); position: relative; }
.step-card .step-num { width: 54px; height: 54px; border-radius: 50%; background: var(--teal-900); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 20px; margin-bottom: 16px; }
.step-card:nth-child(odd) .step-num { background: var(--accent); color: #fff; }
.step-card h3 { font-size: 16px; color: var(--teal-900); margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 13.5px; }

/* --- comparison cards (before / after, use-cases) --- */
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.compare-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-card > h3 { font-size: 16px; color: var(--teal-900); padding: 22px 24px 0; }
.compare-card .cc-row { padding: 16px 24px; }
.compare-card .cc-row + .cc-row { border-top: 1px solid var(--line); }
.compare-card .cc-row small { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.compare-card .cc-before small { color: var(--muted); }
.compare-card .cc-after { background: rgba(var(--accent-rgb), 0.08); }
.compare-card .cc-after small { color: var(--accent-dark); }
.compare-card .cc-row p { color: var(--ink-soft); font-size: 13.5px; }

/* --- factor cards (pricing drivers) on a dark panel --- */
.factor-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.factor-card { background: #fff; border-radius: var(--r-card); padding: 22px 24px; }
.factor-card.is-featured { background: var(--accent); color: #4a2410; }
.factor-card h3 { font-size: 16px; color: var(--teal-900); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.factor-card.is-featured h3 { color: #4a2410; }
.factor-card .fc-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; font-size: 12px; font-weight: 800; flex: none; }
.factor-card.is-featured .fc-dot { background: rgba(74, 36, 16, 0.15); color: #4a2410; }
.factor-card p { color: var(--muted); font-size: 13px; }
.factor-card.is-featured p { color: #6b3417; }

/* --- certification chips --- */
.cert-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-chip { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--pill); padding: 12px 20px; box-shadow: var(--shadow-sm); }
.cert-chip .cc-badge { width: 30px; height: 30px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.cert-chip strong { color: var(--teal-900); font-size: 14px; }
.cert-chip small { color: var(--muted); font-size: 12px; }

/* --- dark oval stat pill (sample "Your Support" treatment) --- */
.stat-panel { background: linear-gradient(155deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-panel); padding: 40px; color: #fff; }
.stat-pill { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 70px; padding: 34px 30px; }
.stat-pill > div strong { display: block; font-size: 34px; font-weight: 800; letter-spacing: -0.02em; }
.stat-pill > div span { color: rgba(255, 255, 255, 0.58); font-size: 12.5px; }

/* --- dark teal list panel (signs, "what we do most") --- */
.list-panel { background: linear-gradient(155deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-panel); padding: 52px 54px; color: #fff; }
.list-panel h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-bottom: 10px; }
.list-panel > p { color: rgba(255, 255, 255, 0.7); margin-bottom: 26px; max-width: 620px; }
.panel-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.panel-list > div { display: flex; align-items: flex-start; gap: 14px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.09); border-radius: var(--r-sm); padding: 16px 18px; }
.panel-list .pl-num { width: 30px; height: 30px; border-radius: 50%; background: rgba(var(--accent-rgb), 0.2); color: var(--accent-soft); display: grid; place-items: center; font-weight: 800; font-size: 12px; flex: none; }
.panel-list p { color: rgba(255, 255, 255, 0.85); font-size: 14px; }

/* --- simple link cards (related services / nearby fallback) --- */
.link-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.link-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px; box-shadow: var(--shadow-sm); transition: transform 0.2s, border-color 0.2s; }
.link-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.link-card .lc-num { font-size: 12px; font-weight: 800; color: var(--accent); }
.link-card strong { font-size: 16px; color: var(--teal-900); margin: 8px 0; }
.link-card p { color: var(--muted); font-size: 13px; flex: 1; margin-bottom: 12px; }
.link-card .lc-go { font-weight: 700; font-size: 13px; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 7px; }

/* --- dark checklist panel (service "what's included") --- */
.check-panel { background: linear-gradient(155deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-panel); padding: 52px 54px; color: #fff; }
.check-panel .cp-head { max-width: 640px; margin-bottom: 8px; }
.check-panel .cp-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); margin-top: 6px; }
.check-panel .cp-head p { color: rgba(255, 255, 255, 0.7); margin-top: 10px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 44px; margin-top: 24px; }
.check-grid > div { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.check-grid .ck { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; font-size: 14px; font-weight: 700; }
.check-grid h3 { font-size: 15.5px; color: #fff; margin-bottom: 4px; }
.check-grid p { color: rgba(255, 255, 255, 0.68); font-size: 13px; }

/* --- split list (service tools & methods): sticky heading + icon rows --- */
.split-list { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: start; }
.split-list .sl-head { position: sticky; top: 30px; }
.split-list .sl-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.2rem); color: var(--teal-900); }
.split-list-rows > div { display: flex; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.split-list-rows > div:first-child { border-top: none; padding-top: 0; }
.split-list .sl-ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-tint); color: var(--accent-dark); display: grid; place-items: center; flex: none; font-size: 18px; }
.split-list .sl-ic svg { width: 20px; height: 20px; }
.split-list h3 { font-size: 15.5px; color: var(--teal-900); margin-bottom: 4px; }
.split-list p { color: var(--muted); font-size: 13.5px; }

/* --- connected numbered timeline (service process) --- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 24px; }
.timeline .tl-step { position: relative; text-align: center; }
.timeline .tl-num { width: 62px; height: 62px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 22px; margin: 0 auto 18px; position: relative; z-index: 1; border: 5px solid var(--cream); box-shadow: var(--shadow-sm); }
.timeline .tl-step:nth-child(even) .tl-num { background: var(--teal-900); }
.timeline .tl-step::before { content: ""; position: absolute; top: 31px; right: 50%; width: 100%; height: 3px; background: var(--line); z-index: 0; }
.timeline .tl-step:first-child::before { display: none; }
.timeline h3 { font-size: 16px; color: var(--teal-900); margin-bottom: 8px; }
.timeline p { color: var(--muted); font-size: 13.5px; padding: 0 6px; }

@media (max-width: 1024px) {
  .feature-cards, .compare-grid, .link-cards { grid-template-columns: repeat(2, 1fr); }
  .step-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-cards, .compare-grid, .link-cards, .step-flow, .factor-cards, .panel-list, .stat-pill { grid-template-columns: 1fr; }
  .list-panel, .stat-panel { padding: 30px 24px; }
  .stat-pill { border-radius: 28px; }
}

/* ======================================================= BLOG (editorial) */
.blog-hero { padding: 40px 0 0; }
.blog-hero-inner { max-width: 820px; }
.blog-cat { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark); background: rgba(var(--accent-rgb), 0.14); padding: 6px 14px; border-radius: var(--pill); margin: 14px 0 18px; }
.blog-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); color: var(--teal-900); line-height: 1.1; }
.blog-excerpt { font-size: 18px; color: var(--ink-soft); margin: 18px 0 24px; line-height: 1.6; }
.blog-meta { display: flex; align-items: center; gap: 12px; }
.blog-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--teal-900); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 17px; }
.blog-meta strong { display: block; color: var(--teal-900); font-size: 14px; }
.blog-meta small { color: var(--muted); font-size: 12.5px; }
.blog-hero-media { margin: 34px auto 0; }
.blog-hero-media img { width: 100%; max-height: 460px; object-fit: cover; border-radius: var(--r-panel); }
.blog-body { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; padding-top: 48px; padding-bottom: 20px; }
.blog-body .blog-article { max-width: 720px; }
.blog-aside { position: sticky; top: 30px; }
.blog-cta-card { background: linear-gradient(155deg, var(--teal-800), var(--teal-900)); border-radius: var(--r-card); padding: 30px 28px; color: #fff; }
.blog-cta-card .request-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(var(--accent-rgb), 0.18); color: var(--accent-soft); display: grid; place-items: center; font-size: 18px; margin-bottom: 16px; }
.blog-cta-card h3 { font-size: 19px; margin-bottom: 10px; }
.blog-cta-card p { color: rgba(255, 255, 255, 0.72); font-size: 14px; margin-bottom: 20px; }
.blog-cta-mail { display: block; text-align: center; margin-top: 14px; color: var(--accent-soft); font-size: 13px; font-weight: 600; }

/* article body accents in the community palette */
.blog-article { font-size: 16.5px; color: var(--ink-soft); }
.blog-article > *:first-child { margin-top: 0; }
.blog-article blockquote { border-left: 4px solid var(--accent); background: var(--accent-tint); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 18px 22px; margin: 26px 0; font-size: 17px; color: var(--teal-900); font-style: italic; }
.blog-article h2 { position: relative; padding-left: 18px; margin-top: 34px; }
.blog-article h2::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 5px; border-radius: 3px; background: var(--accent); }

/* responsive: detail + blog composite layouts */
@media (max-width: 900px) {
  .check-panel, .list-panel { padding: 40px; }
  .check-grid { grid-template-columns: 1fr; }
  .split-list { grid-template-columns: 1fr; gap: 26px; }
  .split-list .sl-head { position: static; }
  .timeline .tl-step::before { display: none; }
  .blog-body { grid-template-columns: 1fr; gap: 32px; }
  .blog-body .blog-article { max-width: none; }
  .blog-aside { position: static; max-width: 520px; }
}
@media (max-width: 560px) {
  .check-panel, .list-panel, .blog-cta-card { padding: 28px 22px; }
  .blog-excerpt { font-size: 16px; }
  .blog-hero-media img { border-radius: var(--r-card); }
}

/* ============================================================ ANIMATIONS
   Lightweight scroll-reveal driven by an inline IntersectionObserver in
   main.js (no external sal.js). Elements start offset/faded and get
   `.sal-animate` when they enter the viewport. Motion is disabled for users
   who prefer reduced motion, and if JS is off the `.no-js` fallback shows all. */
@media (prefers-reduced-motion: no-preference) {
  [data-sal] { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; will-change: opacity, transform; }
  [data-sal="slide-up"] { transform: translateY(28px); }
  [data-sal="slide-left"] { transform: translateX(40px); }
  [data-sal="slide-right"] { transform: translateX(-40px); }
  [data-sal="fade"] { transform: none; }
  [data-sal].sal-animate { opacity: 1; transform: none; }
}

/* ================================================= CLS — reserve image space */
.image-stack img { aspect-ratio: 4 / 3; height: auto; }
.blog-hero-media img { aspect-ratio: 16 / 9; height: auto; }
.ev-img img, .city-service-media img { aspect-ratio: 4 / 3; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .section { padding: 62px 0; }
  .hero-copy h1 { font-size: 2.6rem; }
  .svc-cards, .service-grid, .benefit-grid, .review-grid, .local-review-grid, .location-service-index, .landmark-line { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .utility-inner { display: none; }
  .nav-toggle { display: flex; }
  .nav-close { display: block; }
  .brand small { display: none; }          /* no niche subtitle → business name once */
  .nav-call { display: none; }             /* header keeps only the menu icon */
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 84vw); background: #fff; z-index: 70;
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 84px 24px 26px;
    transform: translateX(100%); transition: transform 0.3s; box-shadow: var(--shadow-dark); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  /* `.nav-dd` is a <span> (inline by default). On mobile the submenu panel goes
     position:static, so an inline parent would break its layout (narrow,
     offset, clipped). Blockify it so width:100% applies and the panel becomes
     a normal full-width block child. */
  .nav-links > a { width: 100%; }
  .nav-dd { width: 100%; display: block; }
  .nav-links > a, .nav-dd > a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-size: 15.5px; }
  /* Services / Areas start COLLAPSED; tapping the item expands its submenu. */
  .nav-dd > a { display: flex; align-items: center; justify-content: space-between; }
  .nav-dd-caret { transition: transform 0.25s; }
  .nav-dd.open > a .nav-dd-caret { transform: rotate(180deg); }
  .nav-dd-panel {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; min-width: 0; background: transparent;
    max-height: 0; overflow: hidden; padding: 0 0 0 12px; transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .nav-dd.open .nav-dd-panel { max-height: 70vh; overflow-y: auto; padding: 4px 0 10px 12px; }
  .nav-dd-panel a { border-bottom: 1px solid var(--line); border-radius: 0; }
  body.menu-open { overflow: hidden; }

  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; padding: 34px 0 70px; min-height: auto; }
  .hero-shade { background: linear-gradient(180deg, rgba(14, 42, 40, 0.9), rgba(18, 50, 48, 0.82)); }
  .request-card { max-width: none; margin-left: 0; }

  .split-layout, .process-layout, .area-layout, .contact-layout, .coverage-layout,
  .city-authority-layout, .location-contact-layout, .faq-layout, .location-hero-inner,
  .location-section-heading, .section-heading.heading-split,
  .local-pricing-layout { grid-template-columns: 1fr; }
  .experience-stamp { right: 12px; bottom: 12px; }

  .special-inner, .cta-inner, .pricing-layout, .problems-grid, .nearby-layout { grid-template-columns: 1fr; gap: 30px; padding: 40px; }
  .emergency-card { padding-left: 0; }
  .city-service-row, .city-service-row-reverse { grid-template-columns: 1fr; }
  .city-service-row-reverse .city-service-media { order: 0; }
  .location-trust-inner p { text-align: center; }
  .service-signs-inner { justify-content: center; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --r-panel: 26px; }
  .section { padding: 48px 0; }
  .trust-grid, .svc-cards, .service-grid, .benefit-grid, .review-grid, .local-review-grid,
  .location-service-index, .landmark-line, .contact-form, .form-grid, .nearby-links,
  .area-columns, .local-price-cards, .price-cards { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 2.1rem; }
  .special-inner, .cta-inner, .pricing-layout, .problems-grid, .nearby-layout,
  .newsletter-inner, .special-inner { padding: 30px 24px; }
  .cta-inner { grid-template-columns: 1fr; text-align: left; }
  .review-heading, .local-review-heading { flex-direction: column; align-items: flex-start; }
  #newsletter-form { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-brand > p { margin-left: auto; margin-right: auto; }
  .social-links { justify-content: center; }
  .footer-address { justify-content: center; }
  /* keep the sticky call visible on phones; just tuck it in a little */
  .sticky-call { right: 14px; bottom: 14px; padding: 8px 18px 8px 8px; }
}

/* ==================================================================
   STATE-LEVEL CITY PAGE  (t9s-*) â€” theme-9 "Warm Community"
   Rendered only when siteScope === "state". Uses theme-9's teal
   panels, peach accent, big radii and pill vocabulary.
   ================================================================== */

/* --- Per-service sections --------------------------------------- */

.t9s-svc-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 auto 44px;
  max-width: 900px;
}
.t9s-svc-jump a {
  padding: 9px 18px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.t9s-svc-jump a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #5a2c12;
  transform: translateY(-2px);
}

.t9s-svc-list {
  display: grid;
  gap: 34px;
}
.t9s-svc {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.t9s-svc-alt {
  grid-template-columns: 1.05fr 0.95fr;
}
.t9s-svc-alt .t9s-svc-media {
  order: 2;
}
.t9s-svc-media {
  position: relative;
}
.t9s-svc-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-card);
  display: block;
}
.t9s-svc-badge {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #5a2c12;
  font-weight: 800;
  font-size: 1.1rem;
  border: 5px solid #fff;
  box-shadow: var(--shadow-sm);
}
.t9s-svc-body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--teal-900);
  margin-bottom: 12px;
}
.t9s-svc-lead {
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.t9s-sub-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.t9s-sub-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 16px 18px;
}
.t9s-sub-card h4 {
  font-size: 0.98rem;
  color: var(--teal-900);
  margin-bottom: 6px;
}
.t9s-sub-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}
.t9s-check {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.t9s-check li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.t9s-check-ic {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--accent-dark);
}
.t9s-check-ic svg {
  width: 100%;
  height: 100%;
}

/* --- Residential / Commercial ----------------------------------- */

.t9s-aud-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.t9s-aud-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.t9s-aud-panel-dark {
  background: linear-gradient(155deg, var(--teal-800), var(--teal-900));
  border-color: transparent;
  color: #eaf3f1;
}
.t9s-aud-panel h3 {
  font-size: 1.5rem;
  color: var(--teal-900);
  margin-bottom: 12px;
}
.t9s-aud-panel-dark h3 {
  color: #fff;
}
.t9s-aud-panel > p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.t9s-aud-panel-dark > p {
  color: #b9d0cc;
}
.t9s-aud-list {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}
.t9s-aud-list > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.t9s-aud-ic {
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--accent-dark);
  margin-top: 2px;
}
.t9s-aud-panel-dark .t9s-aud-ic {
  color: var(--accent);
}
.t9s-aud-ic svg {
  width: 100%;
  height: 100%;
}
.t9s-aud-list strong {
  display: block;
  color: var(--teal-900);
  margin-bottom: 3px;
}
.t9s-aud-panel-dark .t9s-aud-list strong {
  color: #fff;
}
.t9s-aud-list p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}
.t9s-aud-list-light p {
  color: #a9c2bd;
}
.t9s-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
}
.t9s-pills li {
  padding: 7px 14px;
  border-radius: var(--pill);
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 600;
}
.t9s-pills-light li {
  background: rgba(255, 255, 255, 0.1);
  color: #dcebe8;
}
.t9s-aud-panel .text-link {
  margin-top: auto;
}

/* --- Case studies ----------------------------------------------- */

.t9s-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t9s-case-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}
.t9s-case-card:hover {
  transform: translateY(-4px);
}
.t9s-case-num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-soft);
}
.t9s-case-loc {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: var(--pill);
  background: var(--cream-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.t9s-case-card h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 5px;
}
.t9s-case-card p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.t9s-case-card > div:last-child p {
  margin-bottom: 0;
}
.t9s-case-result h4 {
  color: var(--accent-dark);
}
.t9s-case-result p {
  font-weight: 600;
  color: var(--teal-900);
}

/* --- Common problems (teal panel) ------------------------------- */

.t9s-problem-panel {
  background: linear-gradient(155deg, var(--teal-800), var(--teal-900));
  border-radius: var(--r-panel);
  padding: 48px 44px;
  color: #eaf3f1;
}
.t9s-problem-head {
  max-width: 620px;
  margin-bottom: 34px;
}
.t9s-problem-head h2 {
  color: #fff;
}
.t9s-problem-head p {
  color: #b9d0cc;
}
.t9s-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.t9s-problem-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-card);
  padding: 24px 24px 24px 62px;
  position: relative;
}
.t9s-problem-num {
  position: absolute;
  left: 22px;
  top: 24px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}
.t9s-problem-item h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.t9s-problem-item p {
  font-size: 0.87rem;
  color: #c8ddd9;
  margin-bottom: 10px;
}
.t9s-problem-item p:last-child {
  margin-bottom: 0;
}
.t9s-problem-item strong {
  color: var(--accent-bright);
}

/* --- Seasonal (feature cards reused) ---------------------------- */

.t9s-season-cards {
  grid-template-columns: repeat(4, 1fr);
}
.t9s-season-tip {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}
.t9s-season-tip strong {
  color: var(--accent-dark);
}

/* --- Compliance (teal panel) ------------------------------------ */

.t9s-comp-panel {
  background: linear-gradient(155deg, var(--teal-800), var(--teal-900));
  border-radius: var(--r-panel);
  padding: 48px 44px;
  color: #eaf3f1;
}
.t9s-comp-head {
  max-width: 620px;
  margin-bottom: 34px;
}
.t9s-comp-head h2 {
  color: #fff;
}
.t9s-comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.t9s-comp-col h4 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 18px;
}
.t9s-comp-col dl {
  margin: 0;
}
.t9s-comp-col dl > div {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.t9s-comp-col dl > div:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.t9s-comp-col dt {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.t9s-comp-col dd {
  margin: 0;
  font-size: 0.82rem;
  color: #a9c2bd;
}
.t9s-comp-affil {
  list-style: none;
  margin: 0;
  padding: 0;
}
.t9s-comp-affil li {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.t9s-comp-affil li:last-child {
  border-bottom: 0;
}
.t9s-comp-affil strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.t9s-comp-affil small {
  color: #a9c2bd;
  font-size: 0.78rem;
}

/* --- Cities we serve (service pages) ---------------------------- */

.t9s-city-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t9s-city-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 0 26px 26px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s;
}
.t9s-city-card:hover {
  transform: translateY(-4px);
}
.t9s-city-card .svc-ic {
  margin-top: 26px;
}
.t9s-city-card strong {
  font-size: 1.15rem;
  color: var(--teal-900);
  margin-bottom: 6px;
}
.t9s-city-blurb {
  font-size: 0.87rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.t9s-city-card .svc-more {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

/* --- Locations directory ---------------------------------------- */

.t9s-dir-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.t9s-dir-count {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.t9s-dir-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 30px;
}
.t9s-dir-jump a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: var(--pill);
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.t9s-dir-jump a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #5a2c12;
}
.t9s-dir-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-panel);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.t9s-dir-group {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.t9s-dir-group:first-child {
  border-top: 0;
  padding-top: 0;
}
.t9s-dir-letter {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--accent-dark);
}
.t9s-dir-letter::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.t9s-dir-list {
  columns: 4;
  column-gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.t9s-dir-list li {
  break-inside: avoid;
  margin-bottom: 3px;
}
.t9s-dir-list a {
  display: block;
  padding: 6px 0;
  color: var(--ink);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
}
.t9s-dir-list a:hover {
  color: var(--accent-dark);
  padding-left: 5px;
}

/* --- Responsive ------------------------------------------------- */

@media (max-width: 1024px) {
  .t9s-case-grid,
  .t9s-city-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .t9s-comp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .t9s-season-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .t9s-dir-list {
    columns: 3;
  }
}

@media (max-width: 860px) {
  .t9s-svc,
  .t9s-svc-alt {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .t9s-svc-alt .t9s-svc-media {
    order: 0;
  }
  .t9s-aud-grid,
  .t9s-problem-grid,
  .t9s-case-grid,
  .t9s-city-cards {
    grid-template-columns: 1fr;
  }
  .t9s-dir-list {
    columns: 2;
  }
}

@media (max-width: 560px) {
  .t9s-problem-panel,
  .t9s-comp-panel {
    padding: 34px 24px;
  }
  .t9s-comp-grid,
  .t9s-season-cards,
  .t9s-dir-list {
    grid-template-columns: 1fr;
    columns: 1;
  }
  .t9s-dir-panel {
    padding: 26px 22px;
  }
}

