/* ============================================
   Rushplumb — Brockton Emergency Plumber
   Design adapted from waterdamagemissouricity.org
   ============================================ */

:root {
  --navy: #0a1f3a;
  --navy-deep: #050f1f;
  --navy-soft: #15294a;
  --accent: #f5b400;
  --accent-deep: #d4a000;
  --accent-soft: #fef3c7;
  --accent-glow: rgba(245, 180, 0, 0.32);
  --water: #2563eb;
  --water-soft: #dbeafe;
  --emergency: #f5b400;
  --emergency-deep: #d4a000;
  --emergency-soft: #fef3c7;
  --emergency-glow: rgba(245, 180, 0, 0.32);
  --cream: #fdfaf6;
  --warm: #f5f1ea;
  --text: #0d1828;
  --text-muted: #4a5668;
  --text-light: #8693a3;
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --border: #e4e8ee;
  --border-soft: #eef1f5;
  --success: #f5b400;
  --success-soft: #fef3c7;
  --gold: #f5b400;

  --shadow-sm: 0 1px 3px rgba(10, 31, 58, 0.06);
  --shadow-md: 0 6px 20px rgba(10, 31, 58, 0.08);
  --shadow-lg: 0 18px 50px rgba(10, 31, 58, 0.16);
  --shadow-xl: 0 28px 80px rgba(10, 31, 58, 0.24);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1200px;

  --font-display: 'Bricolage Grotesque', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--emergency); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--emergency-deep); }
p { margin-bottom: 1em; color: var(--text); }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4em; margin-bottom: 1em; }
li { margin-bottom: 0.4em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); margin-bottom: 0.5em; font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 0.55em; font-weight: 600; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.18rem, 2vw, 1.4rem); margin-bottom: 0.4em; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
h4 { font-size: 1.05rem; margin-bottom: 0.3em; font-weight: 600; }

.ico { width: 18px; height: 18px; display: inline-block; flex-shrink: 0; vertical-align: middle; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--tight { padding: 60px 0; }
.section--soft { background: var(--bg-soft); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); color: #d9e2ec; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

/* ============== Alert ============== */
.alert-strip, .alert-bar {
  background: var(--navy);
  color: #fff; text-align: center; padding: 11px 16px; font-size: 14px; font-weight: 600;
}
.alert-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; align-items: center; }
.alert-strip strong, .alert-bar strong { color: var(--gold); }
.alert-strip a, .alert-bar a { color: var(--gold); text-decoration: underline; font-weight: 700; }
.alert-strip a:hover, .alert-bar a:hover { color: #fff; }

/* ============== Header ============== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px; background: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
}
.brand-mark svg { width: 22px; height: 22px; color: var(--gold); }
.brand-text, .brand > span:last-child {
  font-family: var(--font-display); font-weight: 700; font-size: 1.32rem;
  color: var(--navy); letter-spacing: -0.035em; line-height: 1;
  display: flex; flex-direction: column;
}
.brand-sub {
  font-family: var(--font-body); font-size: 0.62rem; color: var(--accent);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600;
  margin-top: 4px;
}

.nav-menu { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-menu > li { position: relative; margin: 0; }
.nav-menu a {
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  padding: 6px 0; position: relative;
}
.nav-menu a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--emergency); transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-menu a:hover { color: var(--emergency); }
.nav-menu a:hover::after { transform: scaleX(1); }
.dropdown-toggle::after { content: " ▾"; opacity: 0.6; font-size: 0.7rem; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px;
  background: #fff; border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 10px; box-shadow: var(--shadow-md); list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: 160ms ease;
}
.nav-menu li:hover > .dropdown, .nav-menu li:focus-within > .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { display: block; padding: 9px 12px; font-size: 0.92rem; border-radius: 6px; }
.dropdown a:hover { background: var(--emergency-soft); color: var(--emergency); }
.dropdown a::after { display: none; }
.dropdown-head { display: block; padding: 8px 12px 4px; font-size: 0.72rem; font-weight: 700; color: var(--text-light); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-cta { display: inline-flex; align-items: center; gap: 16px; }
.tel-link {
  font-weight: 700; color: var(--navy); font-size: 1rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.tel-link svg { color: var(--emergency); width: 18px; height: 18px; }
.tel-link:hover { color: var(--emergency); }
.menu-toggle, .nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle span, .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; border-radius: 2px; }

/* ============== Buttons ============== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  letter-spacing: -0.005em; text-decoration: none; border: 0;
  cursor: pointer; transition: all 0.2s ease; white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn--primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 6px 22px var(--emergency-glow);
}
.btn--primary:hover {
  background: var(--accent-deep); color: var(--navy);
  box-shadow: 0 12px 30px rgba(245, 180, 0, 0.45);
}
.btn--navy {
  background: var(--navy); color: #fff;
  box-shadow: 0 6px 22px rgba(10, 31, 58, 0.32);
}
.btn--navy:hover { background: var(--navy-deep); color: #fff; }
.btn--secondary {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--secondary:hover { background: var(--navy); color: #fff; }
.btn--ghost-light {
  background: rgba(255,255,255,0.08); color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--ghost-light:hover { background: #fff; color: var(--navy); }
.btn--accent {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 6px 22px rgba(245, 180, 0, 0.32);
}
.btn--accent:hover { background: #ddb000; color: var(--navy); }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* Phone pill in header */
.phone-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  letter-spacing: -0.005em;
  box-shadow: 0 6px 22px var(--emergency-glow);
}
.phone-pill:hover { background: var(--accent-deep); color: var(--navy); transform: translateY(-2px); }
.phone-pill svg { width: 16px; height: 16px; color: var(--navy); }

/* ============== Section heads ============== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--emergency); font-family: var(--font-body);
  font-weight: 600; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1.5px; background: var(--emergency); display: inline-block;
}
.section-head { text-align: center; max-width: 740px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-muted); font-size: 1.1rem; }
.section-head.is-left { text-align: left; margin-left: 0; }

/* Live dot */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  animation: pulse-green 2s infinite; display: inline-block;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(245, 180, 0, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(245, 180, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 180, 0, 0); }
}

/* ============== Hero ============== */
.hero {
  padding: 70px 0 90px; position: relative; overflow: hidden;
  background: var(--cream);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(10, 31, 58, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 31, 58, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(225, 29, 72, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(8, 145, 178, 0.05) 0%, transparent 50%);
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy);
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
  padding: 10px 18px; border-radius: 999px;
  margin-bottom: 24px; letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.hero h1 { margin-bottom: 22px; color: var(--navy); }
.hero h1 .accent { color: var(--emergency); font-style: italic; font-weight: 500; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
  content: ""; position: absolute; bottom: 0.05em; left: -2%; right: -2%;
  height: 0.18em; background: var(--emergency); opacity: 0.85;
  border-radius: 2px; z-index: -1;
}
.hero .lead {
  font-size: 1.2rem; color: var(--text-muted); margin-bottom: 32px;
  line-height: 1.55; max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  font-size: 0.92rem; color: var(--text-muted);
  padding-top: 26px; border-top: 1px solid var(--border);
}
.hero-trust div { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }
.hero-trust svg { color: var(--success); width: 16px; height: 16px; }

/* Hero visual */
.hero-visual {
  position: relative; width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  overflow: visible;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
}
.hero-visual > img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl); position: relative; z-index: 0;
}
.hero-visual::before {
  content: ""; position: absolute; top: -30%; right: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.25) 0%, transparent 65%);
  pointer-events: none; z-index: 1; border-radius: 50%;
}
.hero-floating-card {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; z-index: 2;
  font-size: 14px; color: var(--navy); font-weight: 600;
}
.hero-card-1 { top: 28px; left: -28px; animation: float 4s ease-in-out infinite; }
.hero-card-2 { bottom: 40px; right: -20px; animation: float 4s ease-in-out infinite 1s; }
.hero-card-3 { top: 50%; right: -36px; transform: translateY(-50%); animation: float-center 4s ease-in-out infinite 2s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-center { 0%, 100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 8px)); } }
.hero-card-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--emergency-soft); color: var(--emergency);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-icon.water { background: var(--water-soft); color: var(--water); }
.hero-card-icon.success { background: var(--success-soft); color: var(--success); }
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-text strong {
  display: block; color: var(--navy); font-family: var(--font-display);
  font-weight: 600; font-size: 0.92rem; line-height: 1.15;
}
.hero-card-text small { display: block; color: var(--text-muted); font-size: 0.76rem; margin-top: 2px; }

/* ============== Stats bar ============== */
.stats-bar {
  background: var(--navy); color: #fff; padding: 36px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-grid .stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 2.4rem; color: #fff; line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.035em;
}
.stats-grid .stat-num em { color: var(--gold); font-style: normal; }
.stats-grid .stat-lbl {
  font-size: 0.86rem; color: #94a3b8; letter-spacing: 0.04em;
}

/* ============== Service grid ============== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 26px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all 0.22s ease; position: relative;
}
.svc-card:hover {
  border-color: var(--emergency); transform: translateY(-4px);
  box-shadow: var(--shadow-lg); text-decoration: none;
}
.svc-card.feat {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff; border: 0;
}
.svc-card.feat .svc-title { color: #fff; }
.svc-card.feat .svc-desc { color: #94a3b8; }
.svc-card.feat .svc-more { color: var(--gold); }
.svc-card.feat .icon-tile { background: var(--gold); color: var(--navy); }
.svc-card.feat .icon-tile svg { stroke: var(--navy); }
.svc-card.feat:hover { transform: translateY(-4px); }
.svc-card.feat::after {
  content: "FEATURED";
  position: absolute; top: 20px; right: 22px;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--gold);
}
.icon-tile {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--emergency-soft); color: var(--emergency);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 18px;
}
.icon-tile svg { width: 26px; height: 26px; }
.svc-card .svc-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.2rem; color: var(--navy);
  margin: 0 0 10px; letter-spacing: -0.02em;
}
.svc-card .svc-desc {
  font-size: 0.94rem; color: var(--text-muted);
  margin: 0 0 22px; line-height: 1.6;
}
.svc-card .svc-more {
  margin-top: auto; font-weight: 600; color: var(--emergency); font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 6px;
}
.svc-card:hover .svc-more::after { transform: translateX(4px); }
.svc-card .svc-more::after { content: "→"; transition: transform 0.2s ease; }

/* ============== Timeline (why speed matters) ============== */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.timeline-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; position: relative;
}
.timeline-card .clock {
  font-family: var(--font-display); font-weight: 700; color: var(--emergency);
  font-size: 0.86rem; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 12px; display: inline-block;
}
.timeline-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.timeline-card p { color: var(--text-muted); font-size: 0.93rem; margin: 0; line-height: 1.6; }
.timeline-card.is-urgent { border-color: var(--emergency); background: linear-gradient(180deg, #fff 0%, var(--emergency-soft) 100%); }
.timeline-card.is-urgent .clock { color: var(--emergency); }

/* ============== Process steps ============== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { text-align: center; }
.process-step .num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--emergency); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  margin-bottom: 18px;
}
.process-step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ============== Area cards / pills ============== */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 24px; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 6px;
  transition: all 0.2s ease;
}
.area-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.area-card .area-name {
  font-family: var(--font-display); font-weight: 600;
  color: var(--navy); font-size: 1.1rem; letter-spacing: -0.02em;
}
.area-card .area-meta { color: var(--text-muted); font-size: 0.86rem; }
.area-card .area-go { margin-top: 10px; color: var(--emergency); font-size: 0.86rem; font-weight: 600; }
.area-card.is-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.area-card.is-primary .area-name { color: #fff; }
.area-card.is-primary .area-meta { color: #94a3b8; }
.area-card.is-primary .area-go { color: var(--gold); }
.area-card.is-primary:hover { background: var(--navy-deep); }

.area-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.area-pills a, .area-pills span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; background: #fff; border: 1px solid var(--border);
  border-radius: 999px; font-size: 0.9rem; font-weight: 500;
  color: var(--navy); transition: all 0.2s ease;
}
.area-pills a:hover { background: var(--navy); color: #fff; border-color: var(--navy); text-decoration: none; }
.area-pills .is-all { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }
.area-pills .is-all:hover { background: var(--accent-deep); color: var(--navy); border-color: var(--accent-deep); }

/* ============== Cost cards ============== */
.cost-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cost-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px;
}
.cost-card .cost-tier {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.cost-card .cost-range {
  font-family: var(--font-display); font-weight: 700;
  color: var(--navy); font-size: 2.1rem; letter-spacing: -0.035em;
  margin-bottom: 6px;
}
.cost-card .cost-desc {
  color: var(--text-muted); font-size: 0.94rem;
  margin-bottom: 16px;
}
.cost-card ul { margin: 0; padding-left: 18px; }
.cost-card li { color: var(--text); font-size: 0.92rem; margin-bottom: 5px; }
.cost-card li::marker { color: var(--emergency); }

/* ============== Testimonials ============== */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px;
}
.test-card .stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 12px; }
.test-card blockquote {
  font-size: 1rem; color: var(--text); line-height: 1.65;
  margin: 0 0 18px;
}
.test-card .who {
  font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 0.96rem;
}
.test-card .where { color: var(--text-muted); font-size: 0.82rem; margin-top: 2px; }

/* ============== FAQ ============== */
.faq { max-width: 880px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; margin-bottom: 14px;
}
.faq summary {
  cursor: default; pointer-events: none; user-select: text;
  font-family: var(--font-display); font-weight: 600;
  color: var(--navy); font-size: 1.08rem; line-height: 1.35;
  list-style: none; margin-bottom: 14px; letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: none; }
.faq .answer {
  color: var(--text); font-size: 0.97rem; line-height: 1.7;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.faq .answer p:last-child { margin: 0; }

/* ============== Final CTA ============== */
.cta-massive {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; padding: 90px 0; position: relative; overflow: hidden;
}
.cta-massive::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 60%);
  opacity: 0.22;
}
.cta-massive .container { position: relative; z-index: 1; text-align: center; max-width: 880px; }
.cta-massive h2 { color: #fff; margin-bottom: 14px; }
.cta-massive p { color: #cbd5e1; font-size: 1.15rem; max-width: 680px; margin: 0 auto 28px; }
.cta-massive .big-phone {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 4rem); color: var(--gold); line-height: 1;
  margin: 12px 0 24px; letter-spacing: -0.035em;
}
.cta-massive .big-phone:hover { color: #fff; }
.cta-massive .eyebrow { color: var(--gold); }
.cta-massive .eyebrow::before { background: var(--gold); }
.section--navy .eyebrow { color: var(--gold); }
.section--navy .eyebrow::before { background: var(--gold); }
.cta-massive .actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ============== Footer ============== */
.site-footer { background: var(--navy-deep); color: #94a3b8; padding: 70px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 44px; }
.foot-brand .brand { color: #fff; margin-bottom: 14px; }
.foot-brand .brand-text, .foot-brand .brand > span:last-child { color: #fff; }
.foot-brand p { color: #94a3b8; font-size: 0.94rem; max-width: 320px; }
.foot-col h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 10px; }
.foot-col a { color: #94a3b8; font-weight: 500; font-size: 0.94rem; }
.foot-col a:hover { color: var(--gold); }
.foot-nap { font-size: 0.92rem; color: #cbd5e1; }
.foot-nap a { color: #fff; font-weight: 700; }
.foot-nap .label { color: #94a3b8; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 12px; display: block; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 0.82rem; color: #64748b;
}
.foot-bottom a { color: #94a3b8; }
.foot-bottom a:hover { color: var(--gold); }

/* ============== Page hero (sub-pages) ============== */
.page-hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
  padding: 70px 0 60px; position: relative;
}
.page-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.page-hero h1 { color: var(--navy); margin-bottom: 18px; font-size: clamp(2rem, 5vw, 3.4rem); }
.page-hero h1 .accent { color: var(--emergency); }
.page-hero p { color: var(--text-muted); font-size: 1.12rem; line-height: 1.6; }
.page-hero .photo { aspect-ratio: 4/3; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.page-hero .photo img { width: 100%; height: 100%; object-fit: cover; }

/* Form */
.form-card { background:#fff; border:1px solid var(--border); padding:34px; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.form-field { display:block; margin-bottom:18px; }
.form-field label, .form-field > span {
  display:block; font-family: var(--font-body); font-weight:600; font-size:0.9rem;
  color:var(--navy); margin-bottom:8px;
}
.form-field input, .form-field select, .form-field textarea {
  width:100%; padding:14px 16px; border:1px solid var(--border);
  font-family:inherit; font-size:1rem; color:var(--text); background:#fff;
  border-radius: 10px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline:none; border-color:var(--emergency);
  box-shadow:0 0 0 4px rgba(225,29,72,0.12);
}
.form-field textarea { min-height:130px; resize:vertical; }
.form-row { display:grid; grid-template-columns: 1fr 1fr; gap:18px; }

/* Prose (about, legal) */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 1.04rem; line-height: 1.75; margin-bottom: 1.2em; }
.prose h2 { margin-top: 1.6em; }
.prose .lead { font-size: 1.2rem; color: var(--navy); padding-left: 22px; border-left: 3px solid var(--emergency); font-style: italic; margin-bottom: 1.4em; }

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.zip-pill {
  display: inline-block; padding: 6px 14px; background: var(--accent-soft);
  color: var(--navy); border-radius: 999px; font-size: 0.86rem; font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid, .area-grid, .test-grid, .cost-grid, .timeline, .process { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav-menu { display: none; }
  .nav-menu.is-open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: #fff; padding: 16px 24px; border-bottom: 1px solid var(--border-soft); }
  .menu-toggle, .nav-toggle { display: block; }
  .phone-pill { padding: 9px 16px; font-size: 0.88rem; }
  .svc-grid, .area-grid, .test-grid, .cost-grid, .timeline, .process, .foot-grid, .stats-grid, .form-row { grid-template-columns: 1fr; }
  .hero-floating-card { display: none; }
  .cta-massive { padding: 64px 0; }
}
