/* Sandhills Water Experts — brand design system (fresh build, replaces legacy theme). */
:root {
  --navy: #082e55;
  --navy-deep: #051d38;
  --aqua: #0c7297;
  --aqua-soft: #e3f3fa;
  --sand: #d3af70;
  --sand-soft: #f8f0e2;
  --pine: #4f6d56;
  --pine-soft: #e9efe9;
  --ink: #16232e;
  --body: #4c5c67;
  --muted: #74838c;
  --line: #dee6e9;
  --paper: #ffffff;
  --mist: #f3f7f8;
  --shadow: 0 22px 55px rgba(8, 46, 85, 0.14);
  --shadow-soft: 0 12px 30px rgba(8, 46, 85, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --max: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font: 16px/1.7 var(--sans);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--navy);
}

h1, h2, h3 {
  margin: 0 0 0.6em;
  color: var(--navy);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.005em;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin: 0 0 1em;
}

.shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

/* Top utility bar */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--sans);
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.topbar strong {
  color: #fff;
}

/* Header + nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(8, 46, 85, 0.08);
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: block;
  width: min(250px, 32vw);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--sans);
}

.nav-links a {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--aqua);
}

.menu-toggle {
  display: none;
}

/* Buttons */
.button, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--aqua);
  color: #fff;
  font-family: "Poppins", var(--sans);
  font-weight: 700;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(21, 155, 199, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover, .btn:hover {
  transform: translateY(-2px);
  background: #1289ac;
  box-shadow: 0 18px 36px rgba(21, 155, 199, 0.36);
}

.button-sand {
  background: var(--sand);
  color: var(--navy-deep);
  box-shadow: 0 14px 28px rgba(211, 175, 112, 0.32);
}

.button-sand:hover {
  background: #dfc08c;
}

.btn.secondary, .button-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn.secondary:hover, .button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: none;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
  color: var(--aqua);
}

/* Hero (homepage) */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(5, 29, 56, 0.94) 0%, rgba(8, 46, 85, 0.88) 46%, rgba(8, 46, 85, 0.58) 100%),
    url("assets/photo-hero-installation.jpg") center 42% / cover;
}

.subpage .hero,
.page-hero {
  background:
    linear-gradient(115deg, rgba(5, 29, 56, 0.94) 0%, rgba(8, 46, 85, 0.86) 55%, rgba(21, 155, 199, 0.42) 100%),
    var(--hero-photo, url("../assets/stock-plumber-utility-room.jpg")) center 40% / cover;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
  padding: 58px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #8fd9f0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
}

.hero-lede {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 28px 0 0;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #dff2f8;
  font-weight: 600;
  font-size: 0.94rem;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  flex: 0 0 auto;
}

.hero-form {
  padding: 26px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-form h2 {
  font-size: 1.5rem;
}

.hero-form p {
  color: var(--body);
  font-size: 0.94rem;
  margin-bottom: 16px;
}

.hero-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
}

.hero-form textarea {
  min-height: 64px;
}

.hero-form .btn,
.hero-form .button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Ridge divider */
.ridge {
  position: relative;
  display: block;
  width: 100%;
  height: 64px;
  margin-top: -64px;
  pointer-events: none;
}

.ridge path {
  fill: var(--paper);
}

.hero + .ridge path,
.page-hero + .ridge path {
  fill: var(--paper);
}

.band.mist ~ .ridge path,
.section-soft + .ridge path {
  fill: var(--mist);
}

/* Sections */
.section {
  position: relative;
  padding: 90px 0;
}

.section.compact {
  padding: 60px 0;
}

.section-soft {
  background: var(--mist);
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.left {
  margin: 0 0 40px;
  text-align: left;
}

.section-kicker {
  display: block;
  margin: 0 0 10px;
  color: var(--aqua);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-lead {
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 50px;
  align-items: start;
}

.section-visual {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

.section-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.section-visual figcaption {
  padding: 16px 18px 18px;
  color: var(--body);
  font-weight: 600;
  font-size: 0.94rem;
}

/* Water-source tag chips */
.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.source-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-tag.city {
  background: var(--aqua-soft);
  color: #0d5c78;
}

.source-tag.well {
  background: var(--pine-soft);
  color: var(--pine);
}

.source-tag.both {
  background: var(--sand-soft);
  color: #7a5a24;
}

/* Service cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 155, 199, 0.4);
  box-shadow: var(--shadow);
}

.service-card h3 a {
  text-decoration: none;
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 14px;
  background: var(--aqua-soft);
  color: var(--aqua);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card p {
  color: var(--body);
  font-size: 0.96rem;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 6px;
}

/* Process steps */
.steps {
  position: relative;
  display: grid;
  gap: 22px;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 4px 0 26px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  left: 26px;
  width: 2px;
  height: calc(100% - 40px);
  background: var(--line);
}

.step-num {
  position: relative;
  z-index: 1;
  counter-increment: step;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
}

.step-num::before {
  content: counter(step);
}

.step h3 {
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.step p {
  color: var(--body);
}

/* Proof / stat strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.proof-item {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--sand);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.faq p {
  color: var(--body);
  margin: 0;
}

/* Service-area / county grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.city-grid a, .city-link {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.city-grid a:hover, .city-link:hover {
  transform: translateY(-2px);
  border-color: var(--aqua);
  background: var(--aqua-soft);
}

.entity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.entity-list li {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--body);
  font-weight: 600;
}

/* Interior page hero */
.page-hero {
  padding: 86px 0;
  color: #eaf5fa;
}

.page-hero .shell {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
}

.page-hero p {
  max-width: 720px;
  font-size: 1.1rem;
}

.breadcrumbs {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Content layout with sticky CTA */
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 64px;
  align-items: start;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 1.6em;
  font-size: 1.85rem;
}

.prose h3 {
  margin-top: 1.4em;
}

.prose p, .prose li {
  font-size: 1.03rem;
}

.prose ul {
  padding-left: 22px;
}

.prose a {
  font-weight: 700;
}

.side-card {
  position: sticky;
  top: 116px;
  padding: 30px;
  border-top: 5px solid var(--aqua);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.side-card .eyebrow {
  color: var(--aqua);
}

.side-card h2 {
  font-size: 1.7rem;
}

.side-card p {
  color: var(--body);
}

.side-card .button {
  width: 100%;
  margin: 8px 0 16px;
}

.side-phone {
  display: block;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
}

/* Legal content */
.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 1.6em;
  font-size: 1.5rem;
}

.legal-content p, .legal-content li {
  color: var(--body);
}

/* Contact page */
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}

.contact-card h2 {
  color: #fff;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.85);
}

.contact-card .contact-line {
  display: block;
  margin: 14px 0;
  font-weight: 700;
}

.contact-card a {
  color: #fff;
}

.form-panel, .lead-form {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  color: var(--navy);
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #c3d3da;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(21, 155, 199, 0.22);
  border-color: var(--aqua);
}

.consent {
  font-size: 0.86rem;
  color: var(--muted);
}

.form-status {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--sand-soft);
  color: #664e18;
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 64px 0 22px;
  background: var(--navy-deep);
  color: #b9ccd7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 56px;
}

.footer-logo {
  width: 250px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h2 {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: #dcebf1;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer address {
  font-style: normal;
  color: #dcebf1;
}

.site-footer small {
  display: block;
  margin-top: 8px;
  color: #8fa4b0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.footer-bottom a {
  display: inline;
  color: #9fb6c2;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-inner {
    min-height: 76px;
  }

  .brand {
    width: 210px;
    max-width: 56vw;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 46px;
    height: 42px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    background: var(--navy);
  }

  .menu-toggle span:nth-child(1) { top: 12px; }
  .menu-toggle span:nth-child(2) { top: 19px; }
  .menu-toggle span:nth-child(3) { top: 26px; }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 4px;
  }

  .nav-links a {
    padding: 10px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-wrap,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .side-card {
    position: static;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   Homepage v2 — mirrors reference structure: full-bleed hero,
   dark alternating bands, photo-led service cards, checklist
   band, FAQ accordion, two-card contact band.
   ============================================================ */

.display-font, .hero-full h1, .band-heading, .service-photo-card h3,
.about-band h2, .contact-band h2, .nav-pill, .btn-pill, .btn-pill-outline {
  font-family: "Poppins", var(--sans);
}

/* full-bleed hero */
.hero-full {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(5, 22, 40, 0.92) 0%, rgba(5, 22, 40, 0.62) 48%, rgba(5, 22, 40, 0.18) 100%),
    var(--hero-photo, url("assets/photo-hero-installation.jpg")) center 38% / cover;
}

.hero-full .shell {
  padding: 70px 0;
}

.hero-full .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Poppins", var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-full .hero-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.hero-full h1 {
  max-width: 800px;
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.hero-full .lede {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero-full .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-full.with-form .shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-form-card {
  padding: 30px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-form-card h2 {
  font-family: "Poppins", var(--sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.hero-form-card > p {
  color: var(--body);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.btn-pill-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  transition: background 160ms ease, border-color 160ms ease;
}

.btn-pill-outline-light svg {
  width: 18px;
  height: 18px;
}

.btn-pill-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

/* two-column source panel (city water / private well) */
.source-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.source-panel {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--aqua);
}

.source-panel.well {
  border-top-color: var(--pine);
}

.source-panel .panel-tag {
  display: inline-flex;
  margin-bottom: 14px;
}

.source-panel h3 {
  font-family: "Poppins", var(--sans);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.source-panel p {
  color: var(--body);
  font-size: 0.96rem;
}

.source-panel p:last-child {
  margin-bottom: 0;
}

/* pre-install checklist (light, numbered) */
.checklist-plain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 40px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  max-width: 900px;
}

.checklist-plain li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--body);
  font-size: 0.98rem;
}

.checklist-plain li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--aqua);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  background: var(--aqua);
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  box-shadow: 0 16px 34px rgba(21, 155, 199, 0.32);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.btn-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(21, 155, 199, 0.4);
}

.btn-pill-ghost {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 8px;
  color: #fff;
  font-weight: 700;
  font-size: 0.96rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--aqua);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 10px 22px rgba(21, 155, 199, 0.3);
}

.nav-pill:hover {
  background: #1289ac;
}

/* dark band shared base */
.band-dark {
  background: var(--navy);
  color: #fff;
  padding: 100px 0;
}

.band-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.band-head.left {
  margin: 0 0 40px;
  text-align: left;
  max-width: 640px;
}

.band-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--aqua);
  color: var(--aqua);
  font-family: "Poppins", var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.band-dark .band-pill {
  border-color: rgba(255, 255, 255, 0.4);
  color: #bfe4f0;
}

.band-heading {
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.band-dark .band-heading {
  color: #fff;
}

.band-lead {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--body);
}

.band-dark .band-lead {
  color: rgba(255, 255, 255, 0.78);
}

/* process band: stacked outline cards + photo */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.step-outline-list {
  display: grid;
  gap: 18px;
}

.step-outline-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.step-outline-card .icon-circle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--sand);
}

.step-outline-card .icon-circle svg {
  width: 24px;
  height: 24px;
}

.step-outline-card h3 {
  margin-bottom: 6px;
  color: #fff;
  font-family: "Poppins", var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
}

.step-outline-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.process-photo {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* services: photo-topped cards */
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-photo-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--aqua);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-photo-card .thumb {
  height: 190px;
  overflow: hidden;
}

.service-photo-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-photo-card .body {
  padding: 24px;
}

.service-photo-card .source-tags {
  margin-bottom: 12px;
}

.service-photo-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-photo-card p {
  color: var(--body);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.btn-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.86rem;
}

.service-photo-card:hover .btn-pill-outline {
  background: var(--navy);
  color: #fff;
}

/* about / why-us band with checklist */
.about-band .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-band h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-band > .shell > div:first-child > p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  margin-bottom: 30px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-list .check-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua);
  color: #fff;
  margin-top: 2px;
}

.check-list .check-icon svg {
  width: 13px;
  height: 13px;
}

.check-list strong {
  color: #fff;
}

.check-list span {
  color: rgba(255, 255, 255, 0.78);
}

.framed-photo {
  position: relative;
  padding: 16px;
  border: 1.5px solid var(--aqua);
  border-radius: var(--radius);
}

.framed-photo img {
  border-radius: 6px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* FAQ accordion */
.faq-accordion {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-row {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: none;
  background: var(--navy);
  color: #fff;
  font-family: "Poppins", var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-row.open .faq-q {
  background: var(--aqua);
}

.faq-q .plus {
  flex: 0 0 auto;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
}

.faq-a {
  display: none;
  padding: 20px 24px;
  background: var(--mist);
  color: var(--body);
}

.faq-row.open .faq-a {
  display: block;
}

/* contact band: two cards */
.contact-band {
  background: var(--navy);
  padding: 100px 0;
}

.contact-band .shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-info-card, .contact-form-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-info-card h3, .contact-form-card h3 {
  font-family: "Poppins", var(--sans);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.contact-info-card p {
  color: var(--body);
  margin-bottom: 26px;
}

.contact-line-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-line-item .icon-circle {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-soft);
  color: var(--aqua);
}

.contact-line-item .icon-circle svg {
  width: 19px;
  height: 19px;
}

.contact-line-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.94rem;
}

.contact-line-item span, .contact-line-item a {
  color: var(--body);
  font-size: 0.95rem;
  text-decoration: none;
}

.pill-field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pill-field input, .pill-field select, .pill-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
}

.pill-field textarea {
  border-radius: var(--radius-sm);
  min-height: 110px;
  resize: vertical;
}

.pill-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.pill-field {
  margin-bottom: 16px;
}

.btn-pill-submit {
  width: 100%;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: var(--aqua);
  color: #fff;
  font-family: "Poppins", var(--sans);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

/* footer v2 */
.footer-v2 {
  background: var(--mist);
  padding: 70px 0 0;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-v2-grid .brand-col p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 16px 0;
}

.footer-v2-grid h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-family: "Poppins", var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-v2-grid a {
  display: block;
  margin-bottom: 10px;
  color: var(--body);
  font-size: 0.92rem;
  text-decoration: none;
}

.footer-v2-grid a:hover {
  color: var(--aqua);
}

.footer-v2-bottom {
  padding: 20px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 980px) {
  .process-grid, .about-band .shell, .contact-band .shell, .hero-full.with-form .shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
  }

  .source-panels, .checklist-plain {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-full {
    min-height: 72vh;
  }

  .band-dark, .contact-band {
    padding: 70px 0;
  }

  .service-photo-grid {
    grid-template-columns: 1fr;
  }

  .pill-form-row {
    grid-template-columns: 1fr;
  }

  .footer-v2-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .topbar span {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .hero-grid {
    padding: 46px 0 50px;
  }

  .hero-form .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading {
    text-align: left;
  }

  .service-grid,
  .city-grid,
  .form-grid,
  .proof-strip,
  .entity-list {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .page-hero {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.skip-link{position:absolute;left:-9999px;top:0;z-index:100;padding:10px 16px;background:var(--navy);color:#fff;font-weight:700;text-decoration:none;border-radius:0 0 8px 0}.skip-link:focus{left:0}
