/* ============================================================
   Living Water Pool Services — Editorial Heritage
   Warm limestone + deep navy. Fraunces editorial display +
   Hanken Grotesk body. Photography-forward, magazine layout.
   ============================================================ */

:root {
  /* Palette — navy ink, wave blue, warm travertine neutrals */
  --ink:       #112437;   /* deep navy (logo) */
  --navy:      #15324e;
  --blue:      #2f6f9e;   /* wave blue accent */
  --blue-deep: #1d4f74;
  --blue-soft: #6fa6c8;
  --sand:      #e7ddcb;   /* travertine */
  --cream:     #f4ece0;
  --paper:     #faf6ee;   /* warm off-white page */
  --white:     #ffffff;
  --text:      #2a3744;
  --muted:     #6b7682;
  --line:      #e0d8c9;
  --line-ink:  rgba(17,36,55,.12);

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --r:    4px;        /* editorial — sharp, not pill */
  --r-lg: 8px;
  --shadow: 0 24px 60px -28px rgba(17,36,55,.42);
  --shadow-soft: 0 14px 40px -22px rgba(17,36,55,.34);

  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: .003em;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(22px, 5vw, 56px); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--display); font-weight: 500; letter-spacing: -.015em; color: var(--ink); }
em { font-style: italic; }

/* ---------- Editorial section label ---------- */
.sec-label {
  font-family: var(--body);
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.sec-label span {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blue);
}
.sec-label.center { justify-content: center; }
.sec-label.light { color: var(--blue-soft); }
.sec-label.light span { color: var(--blue-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--body); font-weight: 600; font-size: .98rem;
  border: 0; border-radius: var(--r); cursor: pointer;
  padding: .92em 1.7em; line-height: 1;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap; letter-spacing: .01em;
}
.btn-sm { padding: .7em 1.25em; font-size: .9rem; }
.btn-lg { padding: 1.05em 2em; font-size: 1.02rem; }

.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(29,79,116,.7); }

.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-outline-light { display:inline-flex; align-items:center; gap:.5em; font-family:var(--body); font-weight:600; font-size:.98rem;
  border:1.5px solid rgba(255,255,255,.55); color:#fff; background:transparent; border-radius:var(--r);
  padding:.92em 1.7em; line-height:1; cursor:pointer; transition:.2s; }
.btn-outline-light:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 238, .9);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 78px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; }

.main-nav { display: flex; gap: 2rem; margin-left: auto; }
.main-nav a { font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; padding: 6px 0; }
.main-nav a::after { content:""; position:absolute; left:0; bottom:0; height:1.5px; width:0; background: var(--blue); transition: width .25s ease; }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 1.2rem; margin-left: 2rem; }
.phone-link { display: flex; align-items: center; gap: .4rem; font-weight: 600; font-size: .94rem; color: var(--blue-deep); }
.phone-link:hover { color: var(--ink); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; padding: 0 clamp(22px,5vw,40px); max-height: 0; overflow: hidden; transition: max-height .3s ease; background: var(--paper); border-bottom: 1px solid var(--line); }
.mobile-nav.open { max-height: 420px; }
.mobile-nav a { padding: .95rem 0; border-top: 1px solid var(--line); font-weight: 500; }

/* ============================================================
   HERO — full-bleed photo, editorial
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px,7vh,96px) 0 clamp(80px,12vh,130px);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('assets/IMG_4094.webp') center 55% / cover no-repeat;
}
.hero::after {
  content:""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(10,22,35,.9) 0%, rgba(13,32,49,.72) 45%, rgba(17,36,55,.35) 100%),
    linear-gradient(0deg, rgba(10,22,35,.55) 0%, transparent 38%);
}
.hero-inner { position: relative; max-width: 760px; }

.hero-eyebrow {
  font-weight: 600; font-size: .8rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue-soft); display: inline-flex; align-items: center; gap: .8rem;
  padding-bottom: 1.3rem; position: relative;
}
.hero-eyebrow::before { content:""; width: 34px; height: 1.5px; background: var(--blue-soft); display: inline-block; }

.hero h1 {
  font-weight: 400;
  font-size: clamp(2.7rem, 6.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(8,18,28,.4);
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--blue-soft); }

.hero-sub {
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,.9);
  max-width: 46ch; margin: 1.6rem 0 0; line-height: 1.55;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2.3rem 0 0; }

.hero-price {
  display: flex; align-items: center; gap: 1rem; margin: 2.6rem 0 0;
  flex-wrap: wrap;
}
.hpr-rule { width: 46px; height: 1.5px; background: rgba(255,255,255,.5); flex: none; }
.hpr-text { font-size: .92rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.78); font-weight: 600; }
.hpr-amount { font-family: var(--display); font-weight: 600; font-size: 2.1rem; color: #fff; line-height: 1; }
.hpr-amount span { font-size: .42em; color: var(--blue-soft); font-family: var(--body); font-weight: 600; }

.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75);
  font-weight: 600;
}
.hero-scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(6px);} }

/* staggered reveal */
.reveal { opacity: 0; transform: translateY(20px); animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards; animation-delay: calc(var(--d) * .12s + .15s); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: clamp(26px,3.5vw,40px) clamp(18px,2.5vw,36px); border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--display); font-weight: 500; font-size: 1.15rem; color: #fff; line-height: 1.2; margin-bottom: .25rem; }
.trust-item small { color: rgba(255,255,255,.62); font-size: .86rem; }

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.intro { padding: clamp(64px,9vw,120px) 0; background: var(--paper); }
.intro-inner { max-width: 920px; }
.intro-head {
  font-weight: 400; font-size: clamp(1.75rem,3.6vw,2.9rem); line-height: 1.22;
  letter-spacing: -.018em; margin: 1.4rem 0 1.6rem; color: var(--ink);
}
.intro-head em { color: var(--blue-deep); }
.intro-body { font-size: 1.12rem; line-height: 1.7; color: var(--muted); max-width: 62ch; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: clamp(56px,8vw,96px) 0; background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-it-works .sec-label { margin-bottom: 2.6rem; }
.hiw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px,4vw,56px); }
.hiw-step { border-top: 2px solid var(--ink); padding-top: 1.4rem; }
.hiw-num { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 2.2rem; color: var(--blue); line-height: 1; margin-bottom: 1rem; }
.hiw-step strong { display: block; font-family: var(--display); font-weight: 600; font-size: 1.35rem; color: var(--ink); margin-bottom: .5rem; }
.hiw-step p { color: var(--muted); font-size: .98rem; line-height: 1.6; margin: 0; }

/* ============================================================
   POOL SERVICE BUILDER
   ============================================================ */
.builder-section { padding: clamp(64px,9vw,110px) 0; background: var(--paper); }
.builder-head { text-align: center; max-width: 660px; margin: 0 auto clamp(32px,4vw,48px); }
.builder-head .sec-label { margin-bottom: 1.2rem; }
.builder-head h2 { font-weight: 400; font-size: clamp(2.1rem,4.5vw,3.2rem); line-height: 1.06; margin: 0 0 .6rem; }
.builder-sub { color: var(--muted); font-size: 1.06rem; }

.builder-card { max-width: 780px; margin: 0 auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: hidden; }

.bp { padding: 26px clamp(22px,4vw,38px) 0; }
.bp-track { height: 4px; border-radius: 99px; background: var(--cream); overflow: hidden; }
.bp-fill { display: block; height: 100%; width: 16.66%; border-radius: 99px; background: var(--blue); transition: width .45s cubic-bezier(.4,0,.2,1); }
.bp-labels { list-style: none; display: flex; justify-content: space-between; margin-top: 12px; padding: 0; font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.bp-labels li { flex: 1; text-align: center; transition: color .3s; }
.bp-labels li.done { color: var(--blue); }
.bp-labels li.current { color: var(--ink); }

.builder-stage { position: relative; padding: clamp(26px,4vw,42px) clamp(22px,4vw,38px); }
.step { display: none; animation: stepIn .4s cubic-bezier(.2,.7,.2,1); }
.step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.step-q { font-family: var(--display); font-weight: 600; font-size: clamp(1.45rem,3vw,2rem); line-height: 1.12; color: var(--ink); }
.step-help { color: var(--muted); margin: .4rem 0 1.5rem; font-size: .98rem; }
.step-reassure { font-size: .9rem; font-weight: 600; color: var(--blue-deep); background: rgba(47,111,158,.08); border-radius: var(--r); padding: .6rem 1rem; margin: 0 0 1.3rem; border-left: 3px solid var(--blue); }

.tile-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tile { display: flex; flex-direction: column; align-items: stretch; padding: 0; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r); cursor: pointer; overflow: hidden; text-align: left; transition: border-color .2s, transform .15s, box-shadow .2s; }
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--blue-soft); }
.tile-swatch { height: 92px; width: 100%; }
.sw-clear { background: linear-gradient(160deg, #8fdfe6, #2f9ec4 55%, #1f6f9e); }
.sw-light { background: linear-gradient(160deg, #bfe6b0, #6fc28a 55%, #3f9f86); }
.sw-green { background: linear-gradient(160deg, #8fb24a, #4f8a3a 50%, #2f6d35); }
.tile-label { font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); padding: .7rem .85rem 0; }
.tile-desc { font-size: .8rem; color: var(--muted); padding: .15rem .85rem .85rem; }
.tile[aria-pressed="true"] { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(47,111,158,.3), var(--shadow-soft); }

.card-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.card-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.ocard { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; text-align: left; padding: 1.05rem 1.15rem; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--r); cursor: pointer; transition: border-color .2s, transform .15s, box-shadow .2s, background .2s; }
.ocard:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); border-color: var(--blue-soft); }
.ocard strong { font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.ocard small { color: var(--muted); font-size: .82rem; }
.ocard.tall { align-items: center; text-align: center; padding: 1.5rem 1rem; gap: 6px; justify-content: center; }
.ocard[aria-pressed="true"] { border-color: var(--blue); background: #f3f9fc; box-shadow: 0 0 0 2px rgba(47,111,158,.26); }

.newbuild-line { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: .92rem; color: var(--muted); text-align: center; }
.newbuild-line a { color: var(--blue-deep); font-weight: 600; }
.newbuild-line a:hover { color: var(--ink); }

.review-list { list-style: none; padding: 0; margin: 0 0 1.3rem; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.review-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 1.15rem; font-size: .98rem; }
.review-list li:not(:last-child) { border-bottom: 1px solid var(--line); }
.review-list .rl-k { color: var(--muted); }
.review-list .rl-v { font-weight: 600; color: var(--ink); text-align: right; }
.disclaimer { font-size: .82rem; color: var(--muted); line-height: 1.55; background: var(--cream); border-radius: var(--r); padding: .85rem 1.05rem; margin-bottom: 1.4rem; }

.step-cta { width: 100%; }

.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .field { display: flex; flex-direction: column; gap: .35rem; }
.lead-form .field.full { grid-column: 1 / -1; }
.lead-form label { font-size: .8rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.lead-form input, .lead-form select, .lead-form textarea { font-family: var(--body); font-size: 1rem; padding: .78rem .9rem; border: 1.5px solid var(--line); border-radius: var(--r); background: var(--paper); color: var(--text); transition: border-color .18s, box-shadow .18s; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,158,.16); }
.lead-form input.invalid { border-color: #d9534f; box-shadow: 0 0 0 3px rgba(217,83,79,.14); }
.lead-form .step-cta { grid-column: 1 / -1; margin-top: 4px; }
.form-error { grid-column: 1/-1; color: #c0392b; font-size: .88rem; font-weight: 600; margin: 0; }
.form-fineprint { grid-column: 1/-1; font-size: .76rem; color: var(--muted); text-align: center; margin: 0; }

.result { text-align: center; padding: .5rem 0; }
.result-badge { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; padding: .5em 1.1em; border-radius: 99px; }
.result-badge.ok { background: rgba(47,111,158,.14); color: var(--blue-deep); }
.result-badge.call { background: rgba(29,79,116,.12); color: var(--blue-deep); }
.result-price { font-family: var(--display); font-weight: 600; font-size: clamp(2.6rem,7vw,3.8rem); color: var(--ink); line-height: 1; margin: 1rem 0 .3rem; }
.result-price span { font-size: .4em; color: var(--muted); font-family: var(--body); font-weight: 600; }
.result-startat { font-size: .9rem; color: var(--muted); letter-spacing: .03em; }
.result-headline { font-family: var(--display); font-weight: 600; font-size: clamp(1.6rem,4vw,2.2rem); color: var(--ink); margin: .6rem 0; line-height: 1.12; }
.result-body { color: var(--muted); max-width: 46ch; margin: .6rem auto 1.4rem; line-height: 1.6; }
.result-incl { display: inline-block; text-align: left; background: var(--cream); border-radius: var(--r); padding: 1rem 1.35rem; margin: 0 auto 1.4rem; font-size: .92rem; color: var(--text); }
.result-incl li { margin: .3rem 0; list-style: none; padding-left: 1.4rem; position: relative; }
.result-incl li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 800; }
.result-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.btn-outline-ink { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--blue-deep); }
.btn-outline-ink:hover { background: rgba(29,79,116,.08); }
.result-google { display: inline-block; margin-top: 1.1rem; font-size: .88rem; font-weight: 600; color: var(--muted); }
.result-google:hover { color: var(--blue); }
.result-next { margin-top: 1.3rem; font-size: .9rem; color: var(--muted); }
.result-restart { background: none; border: 0; color: var(--blue-deep); font-weight: 600; cursor: pointer; text-decoration: underline; font-size: .9rem; margin-top: 1rem; }

.builder-nav { display: flex; align-items: center; padding: 0 clamp(22px,4vw,38px) clamp(22px,4vw,32px); }
.builder-nav .nav-spacer { flex: 1; }
.btn-back { background: none; border: 1.5px solid var(--line); color: var(--muted); font-family: var(--body); font-weight: 600; font-size: .92rem; padding: .62em 1.25em; border-radius: var(--r); cursor: pointer; transition: .18s; }
.btn-back:hover { border-color: var(--blue); color: var(--blue-deep); }
.btn-back[hidden] { display: none; }

/* ============================================================
   THE PROBLEM (dark band)
   ============================================================ */
.problem { background: var(--ink); color: #fff; position: relative; overflow: hidden; padding: clamp(64px,9vw,112px) 0; }
.problem-inner { position: relative; max-width: 880px; }
.problem .sec-label { margin-bottom: 1.4rem; }
.problem h2 { font-weight: 400; color: #fff; font-size: clamp(1.9rem,4.4vw,3.1rem); line-height: 1.12; margin: 0; max-width: 18ch; }
.problem-pains { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin: 2.6rem 0; }
.pain { padding: 1.4rem clamp(16px,2vw,30px) 1.4rem 0; border-left: 1px solid rgba(255,255,255,.16); padding-left: clamp(16px,2vw,28px); }
.pain:first-child { border-left: 0; padding-left: 0; }
.pain-n { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--blue-soft); display: block; margin-bottom: .6rem; }
.pain p { color: rgba(255,255,255,.82); font-size: .98rem; line-height: 1.55; margin: 0; }
.problem-turn { font-size: clamp(1.15rem,2vw,1.45rem); line-height: 1.5; color: rgba(255,255,255,.94); max-width: 56ch; font-family: var(--display); font-weight: 400; }
.problem-turn strong { color: var(--blue-soft); font-weight: 500; }

/* ============================================================
   SHARED SECTION HEADER
   ============================================================ */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto clamp(34px,5vw,56px); }
.sec-head .sec-label { margin-bottom: 1.1rem; }
.sec-head h2 { font-weight: 400; font-size: clamp(2.1rem,4.6vw,3.2rem); line-height: 1.06; margin: 0 0 .5rem; }
.sec-sub { color: var(--muted); font-size: 1.06rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: clamp(64px,9vw,112px) 0; background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid var(--line); }
.svc-card { background: transparent; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.4rem clamp(1.5rem,2.5vw,2.4rem); display: flex; flex-direction: column; transition: background .25s; }
.svc-card:last-child { border-right: 0; }
.svc-card:hover { background: var(--white); }
.svc-n { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.4rem; color: var(--blue); margin-bottom: .8rem; }
.svc-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.7rem; color: var(--ink); margin: 0 0 1rem; }
.svc-card ul { list-style: none; padding: 0; margin: 0 0 1.6rem; flex: 1; }
.svc-card li { position: relative; padding-left: 1.4rem; margin: .55rem 0; color: var(--text); font-size: .98rem; }
.svc-card li::before { content:""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border: 1.5px solid var(--blue); border-radius: 50%; }
.svc-link { font-weight: 600; color: var(--blue-deep); font-size: .96rem; align-self: flex-start; border-bottom: 1.5px solid transparent; transition: border-color .2s; padding-bottom: 2px; }
.svc-link:hover { border-color: var(--blue); }

/* ============================================================
   PROMOTIONS
   ============================================================ */
.promos { padding: clamp(56px,8vw,96px) 0; background: var(--navy); }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.5vw,28px); }
.promo-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: clamp(28px,4vw,46px); display: flex; flex-direction: column; gap: 1rem; color: #fff; }
.promo-card--alt { background: rgba(255,255,255,.02); }
.promo-badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: .42em 1.05em; border-radius: 99px; width: fit-content; background: rgba(111,166,200,.2); color: var(--blue-soft); border: 1px solid rgba(111,166,200,.3); }
.promo-card h3 { font-family: var(--display); font-weight: 500; font-size: clamp(1.6rem,3.2vw,2.3rem); line-height: 1.08; color: #fff; margin: 0; }
.promo-card p { color: rgba(255,255,255,.8); font-size: 1.02rem; line-height: 1.6; margin: 0; flex: 1; }
.promo-card .btn-primary { background: #fff; color: var(--ink); align-self: flex-start; }
.promo-card .btn-primary:hover { background: var(--blue-soft); color: var(--ink); }
.promo-card .btn-outline-light { align-self: flex-start; }

/* ============================================================
   WHY LIVING WATER
   ============================================================ */
.why { padding: clamp(64px,9vw,112px) 0; background: var(--cream); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.why-photo { position: relative; }
.why-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 30%; border-radius: var(--r-lg); box-shadow: var(--shadow); display: block; }
.why-badge { position: absolute; bottom: -22px; right: -16px; background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: 1.1rem 1.4rem; box-shadow: var(--shadow); text-align: left; display: flex; align-items: center; gap: .8rem; }
.why-badge strong { font-family: var(--display); font-weight: 600; font-size: 2.6rem; color: var(--blue-soft); line-height: .9; }
.why-badge span { font-size: .76rem; color: rgba(255,255,255,.8); line-height: 1.3; }
.why-copy .sec-label { margin-bottom: 1.1rem; }
.why-copy h2 { font-weight: 400; font-size: clamp(2rem,4.2vw,3rem); line-height: 1.08; color: var(--ink); margin: 0 0 1.4rem; }
.why-copy h2 em { color: var(--blue-deep); }
.why-list { list-style: none; padding: 0; margin: 0 0 1.9rem; }
.why-list li { position: relative; padding-left: 1.7rem; margin: .9rem 0; color: var(--text); font-size: 1.02rem; line-height: 1.5; border-bottom: 1px solid var(--line); padding-bottom: .9rem; }
.why-list li:last-child { border-bottom: 0; }
.why-list li::before { content:""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }
.why-list strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   OUR WORK (magazine gallery)
   ============================================================ */
.work { padding: clamp(64px,9vw,112px) 0; background: var(--paper); }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gal { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-soft); aspect-ratio: 1/1; }
.gal img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gal:hover img { transform: scale(1.06); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: clamp(64px,9vw,104px) 0; background: var(--cream); border-top: 1px solid var(--line); }
.reviews-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.reviews-inner .sec-label { margin-bottom: 1.1rem; }
.reviews-inner h2 { font-weight: 400; font-size: clamp(2rem,4.2vw,2.9rem); line-height: 1.08; color: var(--ink); margin: 0 0 2rem; }
.review-invite { display: flex; flex-direction: column; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(30px,5vw,48px) clamp(26px,4vw,44px); box-shadow: var(--shadow-soft); max-width: 540px; margin: 0 auto; text-align: center; }
.ri-icon { margin-bottom: 1.1rem; }
.ri-heading { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem,3vw,1.9rem); color: var(--ink); line-height: 1.15; margin-bottom: .7rem; }
.ri-body { color: var(--muted); font-size: 1rem; line-height: 1.6; max-width: 42ch; margin: 0 auto 1.7rem; }
.ri-profile-link { margin-top: 1rem; font-size: .92rem; font-weight: 600; color: var(--muted); }
.ri-profile-link:hover { color: var(--blue); }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { padding: clamp(64px,9vw,104px) 0; background: var(--paper); }
.area-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip { font-weight: 600; font-size: .98rem; padding: .72em 1.5em; border-radius: 99px; }
.chip.active { background: var(--ink); color: #fff; }
.chip.soon { background: transparent; color: var(--muted); border: 1.5px solid var(--line); }
.areas-note { text-align: center; color: var(--muted); max-width: 52ch; margin: 1.7rem auto 0; font-size: .98rem; }

/* ============================================================
   NEW-BUILD HANDOFF
   ============================================================ */
.newbuild { padding: clamp(54px,7vw,84px) 0; background: var(--blue-deep); color: #fff; }
.newbuild-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newbuild .sec-label { margin-bottom: 1rem; }
.newbuild h2 { font-weight: 400; color: #fff; font-size: clamp(1.7rem,3.6vw,2.5rem); line-height: 1.1; margin: 0 0 .5rem; }
.newbuild p { color: rgba(255,255,255,.82); max-width: 52ch; margin: 0; }
.newbuild p strong { color: #fff; }
.newbuild .btn-ghost { flex: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: clamp(64px,9vw,112px) 0; background: var(--cream); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); background: transparent; overflow: hidden; }
.qa:first-of-type { border-top: 1px solid var(--line); }
.qa summary { cursor: pointer; list-style: none; padding: 1.3rem .4rem; font-family: var(--display); font-weight: 600; color: var(--ink); font-size: 1.18rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; font-size: 1.6rem; font-weight: 300; color: var(--blue); transition: transform .25s; line-height: 1; font-family: var(--body); }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { margin: 0; padding: 0 .4rem 1.4rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { padding: clamp(72px,11vw,130px) 0; background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.final-inner { max-width: 720px; margin: 0 auto; position: relative; }
.final-cta .sec-label { margin-bottom: 1.3rem; justify-content: center; }
.final-cta h2 { font-weight: 400; color: #fff; font-size: clamp(2.1rem,5vw,3.4rem); line-height: 1.06; margin-bottom: .7rem; }
.final-sub { color: rgba(255,255,255,.82); font-size: 1.1rem; margin-bottom: 2.2rem; }
.final-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   MID-PAGE CTA (kept for compatibility, restyled)
   ============================================================ */
.mid-cta { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(30px,4vw,46px) 0; }
.mid-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.mid-cta-inner p { font-size: clamp(1.05rem,2vw,1.3rem); font-weight: 400; font-family: var(--display); color: var(--ink); margin: 0; max-width: 48ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.8); padding: clamp(48px,6vw,72px) 0 30px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: .92; margin-bottom: .9rem; }
.foot-brand p { color: rgba(255,255,255,.6); max-width: 30ch; }
.foot-contact { display: flex; flex-direction: column; gap: .5rem; text-align: right; }
.foot-phone { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: #fff !important; }
.foot-contact a:hover { color: var(--blue-soft); }
.foot-auto-email { font-size: .88rem; opacity: .75; }
.foot-auto-label { font-size: .78rem; opacity: .7; font-style: italic; }
.foot-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.55); }
.foot-links a:hover { color: var(--blue-soft); }

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  background: rgba(17,36,55,.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12); gap: 10px; align-items: center;
}
.mobile-cta-bar .btn-primary { flex: 1; background: #fff; color: var(--ink); }
.mcb-call { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); flex: none; }
.mcb-call:hover { background: rgba(255,255,255,.12); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .phone-link span { display: none; }
  .mobile-nav { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .hiw-steps { grid-template-columns: 1fr; gap: 0; }
  .hiw-step { border-top: 1px solid var(--line); padding: 1.6rem 0; }
  .hiw-step:first-child { border-top: 2px solid var(--ink); }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: 0; }
  .promo-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-photo { max-width: 480px; }
  .why-badge { right: 10px; }
  .problem-pains { grid-template-columns: 1fr; }
  .pain { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 1.2rem; }
  .pain:first-child { border-top: 0; }
  .newbuild-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
  .foot-contact { text-align: left; }
}

@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .hero { min-height: 78vh; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gal--tall, .gal--wide { grid-row: auto; grid-column: auto; aspect-ratio: 1/1; }
  .hero-scroll { display: none; }
}

@media (max-width: 560px) {
  .tile-grid { grid-template-columns: 1fr 1fr; }
  .tile-grid .tile:first-child { grid-column: 1 / -1; }
  .card-grid, .card-grid.cols-3 { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .tile-swatch { height: 70px; }
  .header-cta .btn-primary { display: none; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  .hero-scroll svg { animation: none; }
  html { scroll-behavior: auto; }
  .step { transition: none !important; }
}
