/* ============================================================
   Maki Sewer and Drain — shared stylesheet
   Palette: deep navy primary, warm off-white bg, safety-orange accent
   Type: DM Sans (display) + Inter (body)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.3rem + 2.4vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.4rem + 3.4vw, 4.25rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem;  --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem;  --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;    --space-24: 6rem;
  --space-32: 8rem;

  /* Color — Maki palette */
  --navy-900: #0b1a2e;
  --navy-800: #10233d;
  --navy-700: #163050;
  --navy-600: #1e3f68;
  --navy-500: #2b5488;
  --navy-100: #dfe7f1;

  --bg: #f6f4ef;            /* warm off-white */
  --surface: #ffffff;
  --surface-2: #f1eee7;
  --surface-offset: #eae6dd;
  --border: #ddd7cb;
  --divider: #e6e1d6;

  --text: #131c26;
  --text-muted: #4b5763;
  --text-faint: #8a94a0;
  --text-inverse: #f6f4ef;

  --accent: #f26a1b;        /* safety orange */
  --accent-hover: #d9560c;
  --accent-active: #b8480a;
  --accent-soft: #fce6d6;

  --red: #d92d20;           /* emergency */
  --red-hover: #b42318;
  --red-soft: #fde4e2;
  --green: #2e7d32;

  --primary: var(--navy-800);
  --primary-hover: var(--navy-700);

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(11,26,46,0.08);
  --shadow-md: 0 6px 20px rgba(11,26,46,0.10);
  --shadow-lg: 0 20px 48px rgba(11,26,46,0.16);

  --content-narrow: 680px;
  --content: 1120px;
  --content-wide: 1280px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'DM Sans', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --header-h: 88px;
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  overflow-x: hidden;
}
body {
  min-height: 100dvh;
  overflow-x: hidden;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.12; text-wrap: balance; letter-spacing: -0.02em; }
p, li { text-wrap: pretty; }
a { color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--accent-soft); color: var(--navy-900); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: var(--radius-sm); }

.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;
}

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition), background var(--transition),
    border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--content); margin-inline: auto; padding-inline: var(--space-5); }
.wrap-wide { max-width: var(--content-wide); }
.wrap-narrow { max-width: var(--content-narrow); }
.section { padding-block: clamp(var(--space-12), 7vw, var(--space-24)); }
.section-tight { padding-block: clamp(var(--space-10), 5vw, var(--space-16)); }
.bg-surface { background: var(--surface); }
.bg-navy { background: var(--navy-900); color: var(--text-inverse); }
.bg-offset { background: var(--surface-offset); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before {
  content: ''; width: 26px; height: 2px; background: var(--accent); border-radius: 2px;
}
.bg-navy .eyebrow { color: #ffb787; }
.bg-navy .eyebrow::before { background: #ffb787; }

.lead { font-size: var(--text-lg); color: var(--text-muted); max-width: 62ch; }
.bg-navy .lead { color: #c6d2e0; }
.muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: 700; font-size: var(--text-sm);
  padding: 0.9rem 1.5rem; border-radius: var(--radius-md); border: 2px solid transparent;
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.bg-navy .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.bg-navy .btn-outline:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn-ghost-call {
  background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.28);
}
.btn-ghost-call:hover { background: rgba(255,255,255,0.16); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: var(--text-base); }
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,26,46,0.96);
  backdrop-filter: blur(10px);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  display: flex; align-items: center; gap: var(--space-6);
  height: var(--header-h);
  max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--space-5);
}
.brand { display: flex; align-items: center; gap: var(--space-3); text-decoration: none; color: #fff; flex-shrink: 0; }
.brand--image { width: clamp(210px, 22vw, 300px); min-width: 0; padding: 4px 0 6px; }
.brand-logo { display: block; height: auto; object-fit: contain; max-height: 78px; }
.brand-logo--full { width: 100%; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18)); }
.brand-logo--shield { display: none; width: 44px; height: 44px; }
.brand svg { width: 40px; height: 40px; color: var(--accent); }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--font-display); font-size: 1.06rem; font-weight: 700; letter-spacing: -0.01em; }
.brand-name span { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: #9fb2c9; font-weight: 600; }

.nav { margin-left: auto; }
.nav-list { list-style: none; display: flex; align-items: center; gap: var(--space-1); }
.nav-list > li { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 0.6rem 0.85rem; border-radius: var(--radius-sm);
  font-size: var(--text-sm); font-weight: 600; color: #dbe4ef; text-decoration: none;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: #fff; background: rgba(255,255,255,0.08); }
.nav-link.emergency { color: #ff9d8a; }
.nav-link.emergency:hover { color: #fff; background: var(--red); }
.caret { width: 14px; height: 14px; transition: transform var(--transition); }

/* Dropdown */
.has-dropdown .dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 260px; background: #fff; color: var(--text);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: var(--space-2); opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover .caret { transform: rotate(180deg); }
.dropdown a {
  display: block; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm);
  font-size: var(--text-sm); font-weight: 600; text-decoration: none; color: var(--navy-800);
}
.dropdown a small { display: block; font-weight: 400; color: var(--text-muted); font-size: 0.78rem; margin-top: 1px; }
.dropdown a:hover { background: var(--surface-2); color: var(--accent-hover); }

/* Header phone + CTA */
.header-cta { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: var(--space-2);
  text-decoration: none; color: #fff; font-weight: 700; font-size: var(--text-sm);
}
.header-phone svg { width: 20px; height: 20px; color: var(--accent); }
.header-phone small { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9fb2c9; }
.header-phone .ph-text { line-height: 1.1; }

.menu-toggle { display: none; color: #fff; padding: 8px; border-radius: var(--radius-sm); }
.menu-toggle svg { width: 28px; height: 28px; }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: var(--header-h); right: 0; left: 0; bottom: 0;
  height: calc(100vh - var(--header-h)); z-index: 99;
  background: var(--navy-900); color: #fff; padding: var(--space-6) var(--space-5) var(--space-24);
  transform: translateX(100%); transition: transform 300ms cubic-bezier(0.16,1,0.3,1);
  overflow-y: auto; display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; text-decoration: none; color: #fff; }
.mobile-nav .m-link { padding: 0.85rem 0; font-size: var(--text-lg); font-weight: 700; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav .m-link.emergency { color: #ff9d8a; }
.mobile-nav .m-group-label { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: #9fb2c9; margin: var(--space-5) 0 var(--space-2); font-weight: 700; }
.mobile-nav .m-sub { padding: 0.55rem 0; font-size: var(--text-base); font-weight: 600; color: #dbe4ef; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav .m-cta { margin-top: var(--space-8); display: grid; gap: var(--space-3); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; background: var(--navy-900); color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  /* Lighter, warmer scrim: readable behind text on the left, photo shows through warmly on the right */
  background: linear-gradient(100deg, rgba(28,22,16,0.82) 0%, rgba(38,30,20,0.55) 40%, rgba(60,45,28,0.14) 72%, rgba(90,66,38,0.02) 100%);
}
.hero-media::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  /* Soft warm cream wash to unify the photo with the cream body and lift overall brightness */
  background: linear-gradient(180deg, rgba(246,244,239,0.0) 60%, rgba(246,244,239,0.10) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--content-wide); margin-inline: auto; padding: clamp(var(--space-16), 9vw, var(--space-32)) var(--space-5);
}
.hero-content { max-width: 620px; }

/* Hero-embedded city-search card (homepage) */
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 960px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 380px);
    gap: var(--space-10);
    align-items: start;
  }
  .hero .hero-content { max-width: none; }
  /* Nudge card up so it doesn't sit on top of hero photo focal point */
  .hero .hero-search-card { margin-top: calc(-1 * var(--space-20)); }
}
.hero .hero-search-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  border-radius: var(--radius-lg, 14px);
  padding: var(--space-6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero .hero-search-card .hero-search-eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  margin: 0 0 var(--space-2);
}
.hero .hero-search-card .hero-search-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 var(--space-4);
}
.hero .hero-search-card .hero-search-sub {
  font-size: 0.9rem;
  color: var(--text-muted, #5b6b80);
  margin: var(--space-3) 0 0;
  line-height: 1.4;
}
/* Reset .city-search default centering when embedded in hero card */
.hero .hero-search-card .city-search {
  max-width: none;
  margin: 0;
}
.hero .hero-search-card .city-search-label {
  display: none; /* We use hero-search-title instead */
}

/* --- "Yes, we service X" callout on city pages --- */
.hero--city .hero-inner { display: block; }
@media (min-width: 900px) {
  .hero--city .hero-inner.has-city-callout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 360px);
    gap: var(--space-10);
    align-items: start;
  }
}
.hero--city .city-callout {
  background: var(--accent, #ee6c2c);
  color: #fff;
  border-radius: var(--radius-lg, 14px);
  padding: var(--space-6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  margin-top: var(--space-6);
}
@media (min-width: 900px) {
  .hero--city .city-callout { margin-top: 0; }
}
.hero--city .city-callout-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  margin-bottom: var(--space-3);
}
.hero--city .city-callout-check svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.hero--city .city-callout-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 var(--space-2);
}
.hero--city .city-callout-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 var(--space-3);
}
.hero--city .city-callout-heading em {
  font-style: normal;
  display: block;
  font-size: 1.8rem;
  margin-top: 4px;
}
.hero--city .city-callout-surrounding {
  display: block;
  font-family: var(--font-body, inherit);
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}

.hero--city .city-callout-sub {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0 0 var(--space-4);
}
.hero--city .city-callout-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #fff;
  color: var(--accent, #ee6c2c);
  font-weight: 800;
  padding: var(--space-3) var(--space-5);
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero--city .city-callout-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* --- Site-wide compact city-search band (below header on every page) --- */
.site-search-band {
  background: var(--surface, #fff);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) var(--space-4);
  position: sticky;
  top: 0;
  z-index: 40;
  display: none; /* hidden by default; enabled where needed */
}
.hero h1 { font-size: var(--text-3xl); font-weight: 800; margin: var(--space-4) 0; }
.hero .lead { color: #cdd9e7; margin-bottom: var(--space-8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-6); margin-top: var(--space-10); padding-top: var(--space-8); border-top: 1px solid rgba(255,255,255,0.14); }
.hero-trust .ht { display: flex; align-items: center; gap: var(--space-3); }
.hero-trust svg { width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.hero-trust b { display: block; font-family: var(--font-display); font-size: var(--text-base); }
.hero-trust small { color: #9fb2c9; font-size: 0.8rem; }

/* Page hero (interior) */
.page-hero { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.page-hero .hero-media::after {
  background: linear-gradient(100deg, rgba(28,22,16,0.82) 0%, rgba(38,30,20,0.6) 48%, rgba(60,45,28,0.22) 82%, rgba(90,66,38,0.04) 100%);
}
.page-hero-inner {
  position: relative; z-index: 1; max-width: var(--content-wide); margin-inline: auto;
  padding: clamp(var(--space-12), 7vw, var(--space-24)) var(--space-5);
}
.page-hero h1 { font-size: var(--text-2xl); font-weight: 800; margin: var(--space-4) 0; max-width: 20ch; }
.page-hero .lead { color: #cdd9e7; }
.breadcrumb { font-size: var(--text-xs); color: #9fb2c9; letter-spacing: 0.04em; }
.breadcrumb a { color: #9fb2c9; text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }

/* ============================================================
   Section headers
   ============================================================ */
.section-head { max-width: 60ch; margin-bottom: var(--space-10); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--text-2xl); font-weight: 800; margin: var(--space-3) 0; }
.section-head p { color: var(--text-muted); font-size: var(--text-lg); }
.bg-navy .section-head p { color: #c6d2e0; }

/* ============================================================
   Services grid
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-5); }
.svc-card {
  position: relative; display: flex; flex-direction: column; gap: var(--space-3);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-6); text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent);
  transform: scaleY(0); transform-origin: top; transition: transform var(--transition);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy-100); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-icon {
  width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--navy-800);
  display: grid; place-items: center; color: var(--accent); flex-shrink: 0;
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: var(--text-lg); font-weight: 700; }
.svc-card p { color: var(--text-muted); font-size: var(--text-sm); flex-grow: 1; }
.svc-card .more { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: var(--text-sm); color: var(--accent-hover); }
.svc-card .more svg { width: 16px; height: 16px; transition: transform var(--transition); }
.svc-card:hover .more svg { transform: translateX(4px); }
.svc-card.featured { background: var(--navy-800); color: #fff; border-color: var(--navy-700); }
.svc-card.featured p { color: #c6d2e0; }
.svc-card.featured .svc-icon { background: var(--accent); color: #fff; }
.svc-card.featured .more { color: #ffb787; }
.svc-card .badge {
  position: absolute; top: var(--space-4); right: var(--space-4);
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 3px 9px; border-radius: var(--radius-full);
}

/* ============================================================
   Why / trust
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-8); }
.feature { display: flex; flex-direction: column; gap: var(--space-3); }
.feature-ic { width: 54px; height: 54px; border-radius: var(--radius-md); background: var(--accent-soft); color: var(--accent-hover); display: grid; place-items: center; }
.feature-ic svg { width: 28px; height: 28px; }
.bg-navy .feature-ic { background: rgba(242,106,27,0.16); color: #ffb787; }
.feature h3 { font-size: var(--text-lg); font-weight: 700; }
.feature p { color: var(--text-muted); font-size: var(--text-base); }
.bg-navy .feature p { color: #c6d2e0; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split-body h2 { font-size: var(--text-2xl); font-weight: 800; margin: var(--space-3) 0 var(--space-5); }

/* Checklist */
.check-list { list-style: none; display: grid; gap: var(--space-3); margin: var(--space-5) 0; }
.check-list li { display: flex; gap: var(--space-3); align-items: flex-start; }
.check-list svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.bg-navy .check-list svg { color: #ffb787; }

/* ============================================================
   Service page body (prose)
   ============================================================ */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--text-xl); font-weight: 800; margin-top: var(--space-12); margin-bottom: var(--space-4); }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: var(--space-4); color: var(--text); }
.prose a { color: var(--accent-hover); font-weight: 600; text-underline-offset: 3px; }
.prose ul { list-style: none; display: grid; gap: var(--space-3); margin: var(--space-4) 0 var(--space-6); }
.prose ul li { display: flex; gap: var(--space-3); align-items: flex-start; }
.prose ul li::before {
  content: ''; width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px;
  background: var(--accent); border-radius: 5px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat;
}
.prose ul li strong { color: var(--text); }

.page-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(var(--space-8), 4vw, var(--space-16)); align-items: start; }

/* Sidebar */
.svc-aside { position: sticky; top: calc(var(--header-h) + var(--space-6)); display: grid; gap: var(--space-5); }
.aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.aside-card.navy { background: var(--navy-800); color: #fff; border-color: var(--navy-700); }
.aside-card h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-3); }
.aside-card p { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-4); }
.aside-card.navy p { color: #c6d2e0; }
.aside-card .btn { width: 100%; margin-bottom: var(--space-2); }
.aside-phone { display: block; text-align: center; font-family: var(--font-display); font-size: var(--text-xl); font-weight: 800; color: #fff; text-decoration: none; margin: var(--space-2) 0; }
.aside-hours { font-size: var(--text-sm); }
.aside-hours dt { font-weight: 700; color: var(--text); margin-top: var(--space-2); }
.aside-hours dd { color: var(--text-muted); }

/* Callout box (crosslink) */
.callout {
  background: var(--surface-2); border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius-md); padding: var(--space-5) var(--space-6); margin: var(--space-8) 0;
}
.callout h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.callout p { margin-bottom: 0; }

/* Related services */
.related { border-top: 1px solid var(--divider); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--space-4); }
.related-card {
  display: flex; align-items: center; gap: var(--space-3);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-4); text-decoration: none; color: var(--text); box-shadow: var(--shadow-sm);
}
.related-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.related-card .ri { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--navy-800); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.related-card .ri svg { width: 22px; height: 22px; }
.related-card b { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; }
.related-card small { color: var(--text-muted); font-size: 0.78rem; }

/* Photo placeholder */
.photo-ph {
  border: 2px dashed var(--border); border-radius: var(--radius-lg); background: var(--surface-2);
  display: grid; place-items: center; text-align: center; padding: var(--space-10) var(--space-6);
  color: var(--text-faint); min-height: 200px;
}
.photo-ph svg { width: 40px; height: 40px; margin-bottom: var(--space-3); }
.photo-ph b { display: block; color: var(--text-muted); font-family: var(--font-display); font-size: var(--text-sm); }
.photo-ph small { font-size: var(--text-xs); }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--space-4); }

/* ============================================================
   Service area
   ============================================================ */
.area-list { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.area-chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  color: #dbe4ef; padding: 0.55rem 1rem; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: 600;
}
.area-chip svg { width: 15px; height: 15px; color: var(--accent); }
.area-chip.primary { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================================
   Testimonials
   ============================================================ */
.tst-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-5); }
.tst-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: var(--space-4); }
.stars { display: flex; gap: 2px; color: var(--accent); }
.stars svg { width: 18px; height: 18px; }
.tst-card blockquote { font-size: var(--text-base); color: var(--text); line-height: 1.6; }
.tst-meta { display: flex; align-items: center; gap: var(--space-3); margin-top: auto; }
.tst-avatar { width: 42px; height: 42px; border-radius: var(--radius-full); background: var(--navy-100); color: var(--navy-800); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.tst-meta b { font-size: var(--text-sm); }
.tst-meta small { display: block; color: var(--text-muted); font-size: var(--text-xs); }
.tst-note { text-align: center; margin-top: var(--space-8); font-size: var(--text-sm); color: var(--text-muted); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--accent); color: #fff; }
.cta-band .cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-6); }
.cta-band h2 { font-size: var(--text-2xl); font-weight: 800; max-width: 22ch; }
.cta-band p { color: rgba(255,255,255,0.9); margin-top: var(--space-2); }
.cta-band .btn-primary { background: #fff; color: var(--accent-hover); }
.cta-band .btn-primary:hover { background: var(--navy-900); color: #fff; }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-band .btn-outline:hover { background: #fff; color: var(--accent-hover); border-color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ============================================================
   Contact / form
   ============================================================ */
.form-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(var(--space-6), 4vw, var(--space-10)); box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field.full { grid-column: 1 / -1; }
.field label { font-size: var(--text-sm); font-weight: 700; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  padding: 0.8rem 0.95rem; border: 1.5px solid var(--border); border-radius: var(--radius-md);
  background: var(--bg); font-size: var(--text-base); color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.radio-row { display: flex; gap: var(--space-5); }
.radio-row label { display: inline-flex; align-items: center; gap: var(--space-2); font-weight: 600; cursor: pointer; }
.radio-row input { width: 18px; height: 18px; accent-color: var(--accent); }
.form-note {
  grid-column: 1/-1; display: flex; gap: var(--space-3); align-items: flex-start;
  background: var(--navy-100); border-radius: var(--radius-md); padding: var(--space-4);
  font-size: var(--text-sm); color: var(--navy-700);
}
.form-note svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--navy-700); }
.contact-info { display: grid; gap: var(--space-6); }
.ci-item { display: flex; gap: var(--space-4); }
.ci-item .ci-ic { width: 46px; height: 46px; border-radius: var(--radius-md); background: var(--navy-800); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.ci-item .ci-ic svg { width: 24px; height: 24px; }
.ci-item h3 { font-size: var(--text-base); font-weight: 700; }
.ci-item a { color: var(--accent-hover); font-weight: 600; text-decoration: none; }
.ci-item p, .ci-item address { color: var(--text-muted); font-style: normal; font-size: var(--text-sm); }

/* ============================================================
   Emergency page
   ============================================================ */
.emergency-page .site-header { background: rgba(30,10,8,0.97); }
.em-hero { background: #2a0d0a; }
.em-hero .hero-media::after { background: linear-gradient(100deg, rgba(42,13,10,0.96) 0%, rgba(42,13,10,0.82) 45%, rgba(42,13,10,0.4) 100%); }
.em-hero .eyebrow { color: #ff9d8a; }
.em-hero .eyebrow::before { background: var(--red); }
.em-badge { display: inline-flex; align-items: center; gap: var(--space-2); background: var(--red); color: #fff; font-weight: 800; font-size: var(--text-sm); padding: 0.5rem 1rem; border-radius: var(--radius-full); letter-spacing: 0.02em; }
.em-badge .pulse { width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6);} 70%{box-shadow:0 0 0 12px rgba(255,255,255,0);} 100%{box-shadow:0 0 0 0 rgba(255,255,255,0);} }
.em-callbtn {
  display: inline-flex; align-items: center; gap: var(--space-3); background: var(--red); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: var(--text-xl); text-decoration: none;
  padding: 1rem 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
}
.em-callbtn:hover { background: var(--red-hover); transform: translateY(-2px); }
.em-callbtn svg { width: 30px; height: 30px; }
.do-dont { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.dd-card { border-radius: var(--radius-lg); padding: var(--space-6); border: 1px solid var(--border); background: var(--surface); }
.dd-card.do { border-top: 4px solid var(--green); }
.dd-card.dont { border-top: 4px solid var(--red); }
.dd-card h3 { font-size: var(--text-lg); display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-4); }
.dd-card h3 svg { width: 26px; height: 26px; flex-shrink: 0; }
.dd-card.do h3 svg { color: var(--green); }
.dd-card.dont h3 svg { color: var(--red); }
.dd-card ul { list-style: none; display: grid; gap: var(--space-3); }
.dd-card li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: var(--text-base); }
.dd-card.do li svg { color: var(--green); }
.dd-card.dont li svg { color: var(--red); }
.dd-card li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.em-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: var(--space-6); counter-reset: step; }
.em-step { position: relative; padding-top: var(--space-8); }
.em-step::before { counter-increment: step; content: counter(step); position: absolute; top:0; left:0; width: 44px; height: 44px; border-radius: 50%; background: var(--red); color:#fff; display:grid; place-items:center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; }
.em-step h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.em-step p { color: var(--text-muted); font-size: var(--text-sm); }

/* ============================================================
   About
   ============================================================ */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: var(--space-6); }
.stat b { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; color: var(--accent); }
.stat span { color: var(--text-muted); font-size: var(--text-sm); }
.bg-navy .stat b { color: #ffb787; }
.bg-navy .stat span { color: #c6d2e0; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: var(--space-6); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-900); color: #b6c4d6; padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-8); }
.footer-grid.footer-grid--5 { grid-template-columns: 1.15fr 1fr 1fr 1fr 1fr; }
.footer-brand svg { width: 44px; height: 44px; color: var(--accent); margin-bottom: var(--space-4); }
.footer-logo { width: 58px; height: 58px; object-fit: contain; margin-bottom: var(--space-4); filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18)); }
.footer-brand b { font-family: var(--font-display); color: #fff; font-size: var(--text-lg); display: block; }
.footer-brand p { font-size: var(--text-sm); margin-top: var(--space-3); max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-4); }
.footer-col ul { list-style: none; display: grid; gap: var(--space-2); }
.footer-col a { color: #b6c4d6; text-decoration: none; font-size: var(--text-sm); }
.footer-col a:hover { color: var(--accent); }
.footer-nap { font-style: normal; font-size: var(--text-sm); display: grid; gap: var(--space-3); }
.footer-nap a { color: #fff; font-weight: 700; text-decoration: none; }
.footer-nap .fn-line { display: flex; gap: var(--space-2); align-items: flex-start; }
.footer-nap svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social span { width: 40px; height: 40px; border-radius: var(--radius-md); background: rgba(255,255,255,0.08); display: grid; place-items: center; color: #fff; opacity: .65; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--space-12); padding-top: var(--space-6); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; font-size: var(--text-xs); color: #8095ab; }

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none;
  gap: 1px; background: var(--border);
  box-shadow: 0 -4px 20px rgba(11,26,46,0.15);
}
.mobile-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0.95rem; font-weight: 700; font-size: var(--text-sm); text-decoration: none; }
.mobile-cta .mc-call { background: var(--navy-800); color: #fff; }
.mobile-cta .mc-req { background: var(--accent); color: #fff; }
.mobile-cta svg { width: 18px; height: 18px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .page-layout { grid-template-columns: 1fr; }
  .svc-aside { position: static; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
  .form-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav, .header-phone .ph-text, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-phone { display: inline-flex; }
  .brand--image { width: auto; }
  .brand-logo--full { display: none; }
  .brand-logo--shield { display: block; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .do-dont { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid.footer-grid--5 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1200px) and (min-width: 901px) {
  .footer-grid.footer-grid--5 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  :root {
    --navy-900: #132844;
    --navy-800: #18355a;
    --navy-700: #21456f;
  }
  .brand-logo--shield { width: 54px; height: 54px; }
  .mobile-nav .m-link { font-size: clamp(1.22rem, 5.4vw, 1.45rem); padding: 1rem 0; }
  .mobile-nav .m-sub { font-size: clamp(1.02rem, 4.5vw, 1.16rem); padding: 0.72rem 0; }
  .mobile-nav .m-group-label { font-size: 0.82rem; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 58px; }
  .mobile-nav { padding-bottom: calc(var(--space-24) + 58px); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .page-hero-actions .btn { flex: 1; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .site-header { background: rgba(19,40,68,0.97); }
  .mobile-nav { background: #132844; }
  .hero, .page-hero { background: #3a2c1c; }
  .hero-media::after {
    background: linear-gradient(180deg, rgba(28,22,16,0.62) 0%, rgba(34,26,18,0.72) 45%, rgba(30,24,17,0.86) 100%);
  }
  .page-hero .hero-media::after {
    background: linear-gradient(180deg, rgba(28,22,16,0.66) 0%, rgba(34,26,18,0.76) 48%, rgba(30,24,17,0.88) 100%);
  }
}

/* ============================================================
   Orange SEO Project — additions
   Interior service pages, prose, FAQ, forms, mobile polish
   ============================================================ */

/* Mobile logo/menu: user asked for more generous, readable sizing */
@media (max-width: 900px) {
  .brand--image { width: auto; }
  .brand-logo--full { display: none; }
  .brand-logo--shield { display: block; width: 52px; height: 52px; }
}
@media (max-width: 640px) {
  .header-inner { gap: var(--space-3); }
  .brand-logo--shield { width: 56px; height: 56px; }
  .menu-toggle svg { width: 32px; height: 32px; }
  .mobile-nav { padding-top: var(--space-8); }
  .mobile-nav .m-link { font-size: clamp(1.3rem, 5.8vw, 1.55rem); padding: 1.05rem 0; }
  .mobile-nav .m-sub { font-size: clamp(1.08rem, 4.8vw, 1.22rem); padding: 0.8rem 0; }
  .mobile-nav .m-group-label { font-size: 0.9rem; }
}

/* Ordered service steps */
.service-steps { list-style: none; counter-reset: step; display: grid; gap: var(--space-3); margin: var(--space-4) 0 var(--space-6); }
.service-steps li { position: relative; padding-left: 3.1rem; min-height: 2.1rem; display: flex; align-items: center; }
.service-steps li::before {
  counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0;
  width: 34px; height: 34px; border-radius: 50%; background: var(--navy-800); color: #fff;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
}

/* Quick-facts hero card (interior pages) */
.svc-facts {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg); padding: var(--space-6); backdrop-filter: blur(4px);
}
.svc-facts h2 { font-size: var(--text-lg); color: #fff; margin-bottom: var(--space-4); }
.svc-facts ul { list-style: none; display: grid; gap: var(--space-3); }
.svc-facts li { display: flex; gap: var(--space-3); align-items: flex-start; color: #dbe4ef; font-size: var(--text-sm); }
.svc-facts li svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.page-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: center; }
@media (max-width: 900px) { .page-hero-grid { grid-template-columns: 1fr; } }

/* FAQ details */
.faq { display: grid; gap: var(--space-3); max-width: 760px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5); box-shadow: var(--shadow-sm);
}
.faq-item summary {
  cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: var(--text-base);
  list-style: none; display: flex; justify-content: space-between; gap: var(--space-4); align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 22px; height: 22px; flex-shrink: 0;
  background: var(--accent); border-radius: 6px; transition: transform var(--transition);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/72% no-repeat;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { margin-top: var(--space-3); color: var(--text-muted); font-size: var(--text-base); }

/* Card grid (types of drains, etc.) */
.cards { display: grid; gap: var(--space-4); }
.cards--3 { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-5); text-decoration: none; color: var(--text); box-shadow: var(--shadow-sm);
  display: block;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--navy-100); }
.card h3 { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--space-2); }
.card p { color: var(--text-muted); font-size: var(--text-sm); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-5); }
.card-link {
  display: block; padding: var(--space-6); background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); text-decoration: none; color: var(--text); box-shadow: var(--shadow-sm);
}
.card-link:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-link h3 { font-size: var(--text-lg); margin-bottom: var(--space-3); }
.card-link p { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: var(--space-4); }
.card-link span { color: var(--accent-hover); font-weight: 800; display: inline-flex; gap: var(--space-2); align-items: center; }
.card-link svg { width: 18px; height: 18px; }

/* Service two-column layout */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: clamp(var(--space-8), 4vw, var(--space-16)); align-items: start; }
@media (max-width: 1040px) { .service-layout { grid-template-columns: 1fr; } }
.service-aside { position: sticky; top: calc(var(--header-h) + var(--space-6)); display: grid; gap: var(--space-5); }
@media (max-width: 1040px) { .service-aside { position: static; } }
.related-links { display: grid; gap: var(--space-2); margin-bottom: var(--space-6); }
.related-links a {
  display: block; padding: var(--space-3) var(--space-4); background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); text-decoration: none; color: var(--navy-800); font-weight: 600; font-size: var(--text-sm);
  box-shadow: var(--shadow-sm);
}
.related-links a:hover { border-color: var(--accent); color: var(--accent-hover); transform: translateX(3px); }
.service-callout {
  background: var(--navy-800); color: #fff; border-radius: var(--radius-lg); padding: var(--space-6);
}
.service-callout strong { display: block; font-family: var(--font-display); font-size: var(--text-lg); margin-bottom: var(--space-2); }
.service-callout p { color: #c6d2e0; font-size: var(--text-sm); margin-bottom: var(--space-4); }
.seo-support {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
.seo-support h2 { margin-top: 0; }

/* Section variants */
.section--alt { background: var(--surface-offset); }
.section--tight { padding-block: clamp(var(--space-10), 5vw, var(--space-16)); }
.section-head--center { text-align: center; margin-inline: auto; }

/* Back link */
.back-link { display: inline-flex; align-items: center; gap: 4px; color: #9fb2c9; font-weight: 600; font-size: var(--text-sm); padding: 4px 0; margin-bottom: var(--space-3); }
.back-link:hover { color: #fff; }

/* Prose ordered list fallback + service-list inherits prose ul */
.prose ol:not(.service-steps) { margin: var(--space-4) 0 var(--space-6); padding-left: 1.4rem; display: grid; gap: var(--space-2); }
.prose ol:not(.service-steps) li { display: list-item; }
.prose .btn { margin: var(--space-2) 0 var(--space-4); }
.prose h2 + p, .prose h2 + ul { margin-top: 0; }

/* Ensure the hidden attribute always wins over display rules */
[hidden] { display: none !important; }

/* Service-area city hub cards (added for Vercel launch) */
.area-card { transition: box-shadow .18s ease, transform .18s ease; }
.area-card:hover { box-shadow: 0 8px 24px rgba(11,26,46,0.12); transform: translateY(-2px); border-color: var(--accent); }

/* ============================================================ */
/* CITY PAGE TEMPLATE — added for Vercel launch (25+ city pages) */
/* ============================================================ */

/* City hero variant — smaller than home hero, still navy */
.hero--city { background: var(--navy-900, #0b1a2e); color: #fff; padding-block: clamp(var(--space-12), 8vw, var(--space-20)); position: relative; }
.hero--city .hero-inner { max-width: 1200px; margin-inline: auto; padding-inline: var(--space-6); position: relative; z-index: 1; }
.hero--city .eyebrow { color: var(--accent, #f97316); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; margin-bottom: var(--space-3); }
.hero--city h1 { font-family: var(--font-display, "DM Sans"); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; margin: 0 0 var(--space-4); }
.hero--city .hero-sub { color: #cdd9e7; font-size: clamp(1.05rem, 1.3vw, 1.15rem); line-height: 1.6; margin: 0 0 var(--space-8); max-width: 700px; }
.hero--city .hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero--city .hero-trust { display: flex; flex-wrap: wrap; gap: var(--space-6); margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.9rem; color: #9fb2c9; }

/* City hero background photo with warm, lighter overlay (matches home hero treatment) */
.hero--city.has-photo { overflow: hidden; }
.hero--city .hero-media { position: absolute; inset: 0; z-index: 0; }
.hero--city .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero--city .hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(28,22,16,0.84) 0%, rgba(38,30,20,0.62) 44%, rgba(60,45,28,0.24) 80%, rgba(90,66,38,0.05) 100%);
}
.hero--city .hero-caption {
  position: relative; z-index: 1; max-width: 1200px; margin: var(--space-4) auto 0; padding-inline: var(--space-6);
  font-size: 0.85rem; color: #e7d9c4; font-style: italic;
}
@media (max-width: 900px) {
  .hero--city .hero-media::after {
    background: linear-gradient(180deg, rgba(28,22,16,0.66) 0%, rgba(34,26,18,0.78) 48%, rgba(30,24,17,0.9) 100%);
  }
}

/* Two-column grid: main content + sidebar */
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--space-10); align-items: start; }
@media (max-width: 900px) { .grid-2-1 { grid-template-columns: 1fr; gap: var(--space-8); } }
.grid-2-1 .lede { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-4); }

/* Side card (Quick facts sidebar) */
.side-card { background: var(--surface-offset, #f7f9fc); border: 1px solid var(--border, #e5e9f0); border-radius: 14px; padding: var(--space-6); position: sticky; top: var(--space-6); }
.side-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 0 0 var(--space-4); color: var(--navy-800, #0b1a2e); }
.fact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.fact-list li { font-size: 0.95rem; line-height: 1.5; color: var(--text, #1a2332); border-bottom: 1px solid var(--border, #e5e9f0); padding-bottom: var(--space-3); }
.fact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.fact-list b { color: var(--navy-800, #0b1a2e); font-weight: 600; display: inline-block; min-width: 100px; }

/* Sewer Authority section */
.bg-offset { background: var(--surface-offset, #f7f9fc); }
.section-head { max-width: 820px; margin-bottom: var(--space-10); }
.section-head .eyebrow { color: var(--accent, #f97316); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; margin-bottom: var(--space-3); display: block; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.15; margin: 0 0 var(--space-4); color: var(--navy-800, #0b1a2e); }
.section-head p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.65; max-width: 700px; }

.authority-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-6); }
.authority-card { background: #fff; border: 1px solid var(--border, #e5e9f0); border-radius: 14px; padding: var(--space-6); box-shadow: 0 2px 8px rgba(11,26,46,0.04); transition: box-shadow .18s ease, transform .18s ease; }
.authority-card:hover { box-shadow: 0 8px 24px rgba(11,26,46,0.08); transform: translateY(-2px); }
.authority-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin: 0 0 var(--space-4); color: var(--navy-800, #0b1a2e); }
.authority-card p { color: var(--text, #1a2332); font-size: 0.95rem; line-height: 1.6; margin: 0 0 var(--space-3); }
.authority-card p:last-child { margin-bottom: 0; }
.authority-card p.micro { color: var(--text-muted); font-size: 0.85rem; font-style: italic; padding-top: var(--space-3); border-top: 1px solid var(--border, #e5e9f0); }
.authority-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.authority-list li { font-size: 0.95rem; line-height: 1.55; color: var(--text, #1a2332); padding: var(--space-2) 0; border-bottom: 1px solid var(--border, #e5e9f0); }
.authority-list li:last-child { border-bottom: none; }
.authority-list b { color: var(--navy-800, #0b1a2e); font-weight: 600; }
.authority-list a { color: var(--accent, #f97316); font-weight: 600; word-break: break-word; }
.authority-list a:hover { color: var(--accent-hover, #c2410c); text-decoration: underline; }

/* Services grid on city pages */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-6); }

/* Why-Maki cards on city pages */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-6); }
.why-card { background: #fff; border: 1px solid var(--border, #e5e9f0); border-radius: 14px; padding: var(--space-6); box-shadow: 0 2px 8px rgba(11,26,46,0.04); }
.why-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin: 0 0 var(--space-3); color: var(--navy-800, #0b1a2e); }
.why-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* CTA band at bottom of city pages */
.cta-band { background: var(--navy-800, #0b1a2e); color: #fff; padding: var(--space-16) 0; }
.cta-band .cta-inner { max-width: 1200px; margin-inline: auto; padding-inline: var(--space-6); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-6); }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin: 0 0 var(--space-3); }
.cta-band p { color: #cdd9e7; margin: 0; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.cta-band .btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.cta-band .btn-outline:hover { background: #fff; color: var(--navy-800, #0b1a2e); }

/* ============================================================ */
/* SERVICE AREAS HUB — new featured card grid + city dropdown    */
/* ============================================================ */
.featured-cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-5); margin-block: var(--space-8); }
.featured-city-card { background: #fff; border: 1px solid var(--border, #e5e9f0); border-radius: 14px; padding: var(--space-5); text-decoration: none; color: var(--text, #1a2332); box-shadow: 0 2px 8px rgba(11,26,46,0.04); transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease; display: flex; flex-direction: column; gap: var(--space-3); }
.featured-city-card:hover { box-shadow: 0 10px 28px rgba(11,26,46,0.12); transform: translateY(-3px); border-color: var(--accent, #f97316); }
.featured-city-card .city-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--navy-800, #0b1a2e); margin: 0; display: flex; align-items: center; gap: var(--space-2); }
.featured-city-card .city-name svg { width: 20px; height: 20px; color: var(--accent, #f97316); flex-shrink: 0; }
.featured-city-card .city-meta { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.featured-city-card .city-blurb { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin: 0; }
.featured-city-card .city-cta { font-size: 0.85rem; font-weight: 700; color: var(--accent, #f97316); margin-top: auto; padding-top: var(--space-2); border-top: 1px solid var(--border, #e5e9f0); }

/* Full city list — collapsible by county, alphabetized within */
.city-list-full { margin-block: var(--space-10); }
.county-block { margin-bottom: var(--space-8); }
.county-block h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy-800, #0b1a2e); border-bottom: 2px solid var(--accent, #f97316); padding-bottom: var(--space-2); margin: 0 0 var(--space-4); display: inline-block; }
.county-block .county-cities { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--space-2); list-style: none; padding: 0; margin: 0; }
.county-block .county-cities li a { display: block; padding: var(--space-2) var(--space-3); font-size: 0.95rem; font-weight: 500; color: var(--text, #1a2332); text-decoration: none; border-radius: 6px; transition: background .15s ease; }
.county-block .county-cities li a:hover { background: var(--surface-offset, #f7f9fc); color: var(--accent, #f97316); }

/* Hero btn-outline override for navy hero background */
.hero--city .btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.hero--city .btn-outline:hover { background: #fff; color: var(--navy-800, #0b1a2e); }

/* City-page hero-trust chip styling */
.hero--city .hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* City list link styling — make it obvious these are tappable links */
.city-list-full .county-cities a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s ease;
}
.city-list-full .county-cities a:hover,
.city-list-full .county-cities a:focus {
  color: var(--accent-hover);
  text-decoration: underline;
}
.city-list-full .county-cities a::after {
  content: " →";
  opacity: 0.6;
  font-weight: 400;
}

/* ================================================================
   City / ZIP Search Widget
   ================================================================ */
.city-search {
  max-width: 720px;
  margin: 0 auto var(--space-8);
  position: relative;
}
.city-search-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-3);
  text-align: center;
}
.city-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  padding: 0;
  transition: border-color .2s, box-shadow .2s;
}
.city-search-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(238, 108, 44, 0.12);
}
.city-search-icon {
  width: 22px;
  height: 22px;
  color: var(--text-muted, #5b6b80);
  margin-left: var(--space-4);
  flex-shrink: 0;
}
.city-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: var(--space-4) var(--space-3);
  font-size: var(--text-md);
  font-family: inherit;
  color: var(--text);
  outline: none;
  width: 100%;
  min-width: 0;
}
.city-search-input::placeholder {
  color: var(--text-muted, #7b8ba0);
}
.city-search-clear {
  background: none;
  border: 0;
  color: var(--text-muted, #5b6b80);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0 var(--space-4);
  cursor: pointer;
  align-self: stretch;
}
.city-search-clear:hover {
  color: var(--text);
}
.city-search-results {
  list-style: none;
  padding: 0;
  margin: var(--space-2) 0 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 32px rgba(6, 15, 33, 0.10);
  max-height: 320px;
  overflow-y: auto;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 20;
}
.city-search-results li {
  border-bottom: 1px solid var(--border);
}
.city-search-results li:last-child {
  border-bottom: 0;
}
.city-search-results a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: var(--text);
  transition: background .15s;
}
.city-search-results a:hover,
.city-search-results a:focus,
.city-search-results a.is-active {
  background: rgba(238, 108, 44, 0.08);
  color: var(--accent);
  outline: none;
}
.city-search-results .result-city {
  font-weight: 700;
  font-family: var(--font-display);
}
.city-search-results .result-meta {
  color: var(--text-muted, #5b6b80);
  font-size: var(--text-sm);
}
.city-search-nomatch {
  margin-top: var(--space-3);
  padding: var(--space-4);
  background: rgba(238, 108, 44, 0.06);
  border: 1px solid rgba(238, 108, 44, 0.24);
  border-radius: var(--radius-lg, 12px);
  color: var(--text);
  text-align: center;
  font-size: var(--text-sm);
}
.city-search-nomatch a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
.city-search-nomatch a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .city-search-input { padding: var(--space-3) var(--space-2); font-size: var(--text-base); }
  .city-search-icon { margin-left: var(--space-3); }
}

/* ================================================================
   Footer City / ZIP Search
   ================================================================ */
.footer-search {
  background: linear-gradient(180deg, rgba(238, 108, 44, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-6) 0;
  margin-bottom: var(--space-8);
}
.footer-search .city-search {
  max-width: 720px;
  margin: 0 auto;
}
.footer-search-heading {
  text-align: center;
  margin-bottom: var(--space-4);
  color: #e4ecf5;
}
.footer-search-heading strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #ffffff;
  margin-bottom: var(--space-1);
}
.footer-search-heading span {
  display: block;
  color: #9fb2c9;
  font-size: var(--text-sm);
}
/* Input in footer needs dark-mode styling */
.city-search--footer .city-search-wrap {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.14);
}
.city-search--footer .city-search-wrap:focus-within {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(238, 108, 44, 0.18);
}
.city-search--footer .city-search-icon {
  color: #9fb2c9;
}
.city-search--footer .city-search-input {
  color: #ffffff;
}
.city-search--footer .city-search-input::placeholder {
  color: #8095ab;
}
.city-search--footer .city-search-clear {
  color: #9fb2c9;
}
.city-search--footer .city-search-clear:hover {
  color: #ffffff;
}
/* Results dropdown stays white-on-white for readability */
.city-search--footer .city-search-results {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}
.city-search--footer .city-search-nomatch {
  background: rgba(238, 108, 44, 0.14);
  border-color: rgba(238, 108, 44, 0.42);
  color: #ffe4d0;
}
.city-search--footer .city-search-nomatch strong {
  color: #ffffff;
}
.city-search--footer .city-search-nomatch a {
  color: #ffb787;
}
@media (max-width: 640px) {
  .footer-search { padding: var(--space-5) 0; margin-bottom: var(--space-6); }
  .footer-search-heading strong { font-size: var(--text-md); }
}

/* ================================================================
   City Photo Strip — Optional local photography per city
   Hides gracefully when no photos are set (empty .photo-strip-grid).
   Supports 1-4 photos with captions.
   ================================================================ */
.city-photo-strip {
  padding: var(--space-10) 0;
  background: linear-gradient(180deg, transparent 0%, rgba(238, 108, 44, 0.03) 100%);
}
/* Auto-hide when there are no images inside */
.city-photo-strip:not(:has(img)) {
  display: none;
}
.city-photo-strip .section-head {
  text-align: center;
  margin-bottom: var(--space-6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.city-photo-strip .eyebrow {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.city-photo-strip h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--ink);
  margin: 0 0 var(--space-2);
}
.city-photo-strip .strip-note {
  color: var(--muted);
  font-size: var(--text-sm);
  margin: 0;
}

.photo-strip-grid {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}
/* When there's only 1 photo, cap width so it doesn't fill the page */
.photo-strip-grid:has(> figure:only-child) {
  grid-template-columns: minmax(280px, 640px);
  justify-content: center;
}
/* 2 photos → 2 columns on desktop */
.photo-strip-grid:has(> figure:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 900px;
}

.photo-strip-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(11, 26, 46, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}
.photo-strip-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(11, 26, 46, 0.14);
}
.photo-strip-item .photo-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #eef4fb 0%, #e2ecf7 100%);
  overflow: hidden;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-strip-item figcaption {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--ink);
  line-height: 1.5;
  border-top: 3px solid var(--accent);
}
.photo-strip-item figcaption b {
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.photo-strip-item figcaption span {
  color: var(--muted);
  font-size: var(--text-xs);
}

@media (max-width: 640px) {
  .city-photo-strip { padding: var(--space-8) 0; }
  .city-photo-strip h2 { font-size: var(--text-xl); }
  .photo-strip-grid { grid-template-columns: 1fr; gap: var(--space-3); }
  .photo-strip-grid:has(> figure:only-child),
  .photo-strip-grid:has(> figure:nth-child(2):last-child) {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Footer service-areas mega-block (county-organized)
   ========================================= */
.footer-service-areas {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  padding-bottom: var(--space-4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-sa-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.footer-sa-header h4 {
  color: #e6ecf3;
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.footer-sa-hub {
  color: #ffb787;
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  white-space: nowrap;
}
.footer-sa-hub:hover {
  text-decoration: underline;
}
.footer-sa-counties {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-6) var(--space-5);
}
.footer-sa-county-name {
  color: #b6c4d6;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-2);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-sa-city-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-sa-city-list li {
  margin: 0;
}
.footer-sa-city-list a {
  color: #8095ab;
  font-size: var(--text-sm);
  text-decoration: none;
  padding: 2px 0;
  display: block;
  transition: color 0.15s;
}
.footer-sa-city-list a:hover {
  color: #ffb787;
}
@media (max-width: 640px) {
  .footer-sa-counties {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5) var(--space-4);
  }
  .footer-sa-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   Service Areas — counties-first grid
   ========================================= */
.section-tight {
  padding-block: var(--space-10) var(--space-6);
}
.counties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-8);
}
.county-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(11, 26, 46, 0.08);
  border-radius: 12px;
  padding: var(--space-5);
  transition: border-color 0.15s, background 0.15s;
}
.county-card:hover {
  border-color: rgba(255, 140, 66, 0.35);
  background: rgba(255, 140, 66, 0.03);
}
.county-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(11, 26, 46, 0.08);
}
.county-card-head h3 {
  color: var(--color-ink);
  font-size: var(--text-lg);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.county-card-count {
  color: var(--color-orange);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.county-card-cities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px var(--space-3);
}
.county-card-cities li { margin: 0; }
.county-card-cities a {
  color: var(--color-ink-2, #3a4a5c);
  font-size: var(--text-sm);
  text-decoration: none;
  padding: 2px 0;
  display: block;
}
.county-card-cities a:hover {
  color: var(--color-orange);
}
@media (max-width: 640px) {
  .county-card-cities {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Verify Service Band — compact search below hero on interior pages
   ============================================================ */
.verify-service-band {
  background: #fff7f0;
  border-top: 1px solid #f5d9c5;
  border-bottom: 1px solid #f5d9c5;
  padding: 22px 0;
}
.verify-service-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: 28px;
  align-items: center;
}
@media (max-width: 780px) {
  .verify-service-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.verify-service-text {
  color: #4a2b17;
}
.verify-service-text strong {
  display: block;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #b04a17;
  line-height: 1.2;
  margin-bottom: 4px;
}
.verify-service-text span {
  font-size: 0.95rem;
  color: #6a4a35;
}
.city-search--inline .city-search-wrap {
  background: #fff;
  border: 2px solid #ee6c2c;
  box-shadow: 0 4px 14px rgba(238, 108, 44, 0.15);
}
.city-search--inline .city-search-wrap:focus-within {
  border-color: #d95a1a;
  box-shadow: 0 4px 20px rgba(238, 108, 44, 0.28);
}
.city-search--inline .city-search-input {
  padding: 12px 12px 12px 6px;
  font-size: 1rem;
}
.city-search--inline .city-search-icon {
  color: #ee6c2c;
}
