/* Rapid Water Pros — shared styles */
:root {
  --navy: #0B1F33;
  --navy-light: #143049;
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --cta: #EA580C;
  --cta-hover: #C2410C;
  --white: #ffffff;
  --off: #F8FAFC;
  --muted: #64748B;
  --border: #E2E8F0;
  --shadow: 0 10px 30px rgba(11, 31, 51, 0.12);
  --radius: 12px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; }
a:hover { color: var(--teal); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--cta); color: #fff; padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Header */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .85rem 0; flex-wrap: wrap;
}
.logo {
  display: flex; align-items: center; gap: .65rem;
  color: var(--white); text-decoration: none; font-weight: 700; font-size: 1.15rem;
}
.logo img { width: 42px; height: 42px; }
.logo span { line-height: 1.2; }
.logo small { display: block; font-weight: 500; font-size: .72rem; color: #94A3B8; }
.header-phone {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.header-phone .phone-btn {
  background: var(--cta); color: #fff; padding: .7rem 1.15rem;
  border-radius: 999px; font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: .4rem;
  box-shadow: 0 4px 14px rgba(234,88,12,.4);
  transition: background .2s, transform .15s;
}
.header-phone .phone-btn:hover { background: var(--cta-hover); color: #fff; transform: translateY(-1px); }
.nav-toggle {
  display: none; background: transparent; border: 1px solid #334155;
  color: #fff; padding: .45rem .7rem; border-radius: 8px; cursor: pointer; font-size: 1.1rem;
}
.main-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center;
}
.main-nav a {
  color: #E2E8F0; text-decoration: none; font-size: .95rem; font-weight: 500;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #5EEAD4; }

/* Hero */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy) center/cover no-repeat;
  min-height: 420px;
  display: flex; align-items: center;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,31,51,.92) 0%, rgba(11,31,51,.75) 55%, rgba(13,148,136,.55) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 3.5rem 0 3rem; display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.2fr .8fr; align-items: center; }
}
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem); line-height: 1.15; margin: 0 0 1rem;
}
.hero .lead { font-size: 1.1rem; color: #CBD5E1; margin: 0 0 1.5rem; max-width: 36rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .85rem 1.35rem; border-radius: 999px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer; font-size: 1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-cta { background: var(--cta); color: #fff; box-shadow: 0 6px 20px rgba(234,88,12,.35); }
.btn-cta:hover { background: var(--cta-hover); color: #fff; transform: translateY(-1px); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-outline {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55);
}
.btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Lead form card */
.lead-card {
  background: #fff; color: var(--navy); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.lead-card h2 { margin: 0 0 .35rem; font-size: 1.25rem; }
.lead-card p { margin: 0 0 1rem; color: var(--muted); font-size: .9rem; }
.form-row { margin-bottom: .85rem; }
.form-row label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .3rem; }
.form-row input, .form-row select {
  width: 100%; padding: .7rem .85rem; border: 1px solid var(--border);
  border-radius: 8px; font: inherit; background: var(--off);
}
.form-row input:focus, .form-row select:focus {
  outline: 2px solid var(--teal); border-color: var(--teal); background: #fff;
}
.form-error { color: #DC2626; font-size: .8rem; margin-top: .25rem; display: none; }
.form-error.show { display: block; }
.thank-you {
  display: none; text-align: center; padding: 1.5rem .5rem;
}
.thank-you.show { display: block; }
.thank-you h3 { color: var(--teal-dark); margin-top: 0; }

/* Trust badges */
.trust-bar {
  background: var(--off); border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem; text-align: center;
}
.trust-item { font-size: .9rem; font-weight: 600; color: var(--navy-light); }
.trust-item strong { display: block; color: var(--teal); font-size: 1.05rem; }

/* Sections */
section { padding: 3.25rem 0; }
.section-alt { background: var(--off); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.25rem; }
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 .65rem; }
.section-head p { color: var(--muted); margin: 0; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.35rem; transition: box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column; gap: .65rem;
}
.service-card:hover { box-shadow: var(--shadow); border-color: #99F6E4; }
.service-card img { width: 56px; height: 56px; border-radius: 12px; }
.service-card h3 { margin: 0; font-size: 1.1rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.service-card a.more { font-weight: 700; color: var(--teal-dark); text-decoration: none; }
.service-card a.more:hover { text-decoration: underline; }

.process-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem;
  counter-reset: step;
}
.step {
  background: #fff; border-radius: var(--radius); padding: 1.35rem 1.25rem 1.35rem 1.25rem;
  border: 1px solid var(--border); position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  background: var(--teal); color: #fff; border-radius: 50%; font-weight: 800; margin-bottom: .75rem;
}
.step h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

.content-split {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 860px) {
  .content-split { grid-template-columns: 1fr 1fr; }
  .content-split.reverse { direction: rtl; }
  .content-split.reverse > * { direction: ltr; }
}
.content-split .prose h2 { margin-top: 0; }
.content-split .prose p { color: #334155; }
.media-frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--navy);
}
.media-frame img { width: 100%; object-fit: cover; min-height: 240px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .75rem; background: #fff; overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.15rem; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal); font-size: 1.25rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-a { padding: 0 1.15rem 1.1rem; color: #334155; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy), var(--navy-light) 60%, var(--teal-dark));
  color: #fff; text-align: center; padding: 3rem 0;
}
.cta-band h2 { margin: 0 0 .75rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band p { margin: 0 0 1.25rem; color: #CBD5E1; }
.cta-band .btn-cta { font-size: 1.1rem; padding: 1rem 1.75rem; }

/* Footer */
.site-footer {
  background: #071522; color: #94A3B8; padding: 3rem 0 2rem; font-size: .92rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; margin-bottom: 2rem;
}
.site-footer h3 { color: #fff; font-size: 1rem; margin: 0 0 .85rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .45rem; }
.site-footer a { color: #94A3B8; text-decoration: none; }
.site-footer a:hover { color: #5EEAD4; }
.footer-brand .logo { margin-bottom: .75rem; }
.footer-bottom {
  border-top: 1px solid #1E293B; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .85rem;
}

/* Sticky mobile call bar */
.sticky-call {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--cta); padding: .7rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
}
.sticky-call a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  color: #fff; font-weight: 800; font-size: 1.1rem; text-decoration: none;
}
@media (max-width: 768px) {
  .sticky-call { display: block; }
  .nav-toggle { display: inline-block; }
  .main-nav {
    display: none; width: 100%;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; padding: .5rem 0 1rem; gap: .75rem; }
  .header-phone .phone-btn { padding: .55rem .9rem; font-size: .9rem; }
}

/* Breadcrumb */
.breadcrumb {
  padding: .85rem 0; font-size: .85rem; color: var(--muted); background: var(--off);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--teal-dark); text-decoration: none; }
.breadcrumb span { margin: 0 .35rem; color: #CBD5E1; }

/* Cities chips */
.city-chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.city-chips a {
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: .45rem 1rem; text-decoration: none; color: var(--navy); font-weight: 600; font-size: .9rem;
}
.city-chips a:hover { border-color: var(--teal); color: var(--teal-dark); }

.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.badge {
  background: #CCFBF1; color: var(--teal-dark); font-size: .78rem; font-weight: 700;
  padding: .3rem .65rem; border-radius: 999px;
}

/* finalize polish */
.btn-cta {
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.45);
  letter-spacing: 0.01em;
}
.btn-cta:hover { filter: brightness(1.05); }
.call-only-card {
  border: 2px solid rgba(234, 88, 12, 0.35);
}
.cta-band { padding: 2.75rem 0; }
.section-head { margin-bottom: 1.75rem; }
.services-grid { gap: 1.35rem; }
.prose p { margin-bottom: 1rem; }
.neighborhood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}
.neighborhood-grid a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}
.neighborhood-grid a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

/* Responsive generated photography */
.hero-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
.hero::before{z-index:1;pointer-events:none}
.hero-inner{z-index:2}
.media-frame .service-photo{display:block;width:100%;height:auto;aspect-ratio:3/2;min-height:0;object-fit:cover}
.process-photo-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem;margin-bottom:1.5rem}
.process-photo{overflow:hidden;border-radius:12px}
.process-photo img{display:block;width:100%;height:auto;aspect-ratio:3/2;object-fit:cover}
.process-banner{max-width:640px;margin:0 auto 1.5rem;overflow:hidden;border-radius:12px}
.process-banner img{display:block;width:100%;height:auto}
@media(max-width:700px){.process-photo-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}


/* ===== Mentor polish: premium extraction UI (v=extract26) ===== */
.hero {
  min-height: 480px;
}
.hero::before {
  background:
    linear-gradient(115deg, rgba(7,21,34,.94) 0%, rgba(11,31,51,.88) 42%, rgba(13,148,136,.50) 100%),
    rgba(7,21,34,.35);
}
.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero .lead {
  font-size: 1.12rem;
  color: #E2E8F0;
  max-width: 38rem;
}
.hero-ctas .btn-cta {
  font-size: 1.12rem;
  padding: 1.05rem 1.85rem;
  box-shadow: 0 8px 28px rgba(234,88,12,.5);
}
.btn-cta {
  font-size: 1.05rem;
  padding: .95rem 1.55rem;
}
.call-only-card {
  border: 2px solid rgba(234,88,12,.45);
  box-shadow: 0 16px 40px rgba(11,31,51,.18);
  border-radius: 16px;
}
.call-only-card .btn-cta {
  font-size: 1.15rem;
  padding: 1.1rem 1.25rem;
}
.service-card {
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 1px 0 rgba(15,23,42,.03);
}
.service-card:hover {
  box-shadow: 0 14px 36px rgba(11,31,51,.14);
  transform: translateY(-2px);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.trust-bar {
  padding: 1.5rem 0;
  background: linear-gradient(180deg, #F8FAFC, #F1F5F9);
}
section {
  padding: 3.75rem 0;
}
.section-alt {
  background: #F1F5F9;
}
.section-head {
  margin-bottom: 2.5rem;
}
.sticky-call {
  padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(90deg, #C2410C, #EA580C 40%, #F97316);
}
.sticky-call a {
  font-size: 1.15rem;
  letter-spacing: .01em;
}
.logo small {
  color: #5EEAD4;
  font-weight: 600;
}
.badge {
  background: rgba(94,234,212,.18);
  color: #99F6E4;
  border: 1px solid rgba(94,234,212,.35);
}
.hero .badge {
  background: rgba(94,234,212,.16);
  color: #CCFBF1;
}
.media-frame {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(11,31,51,.16);
}
.city-chips a {
  border-radius: 999px;
  padding: .55rem 1.1rem;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.cta-band .btn-cta {
  font-size: 1.2rem;
  padding: 1.1rem 2rem;
}
@media (max-width: 768px) {
  body { padding-bottom: 84px; }
  .hero { min-height: 400px; }
  .hero-inner { padding: 2.5rem 0 2.25rem; }
}
