@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   BASE RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0f2137;
  --navy-mid:  #1a3550;
  --blue:      #2563a8;
  --blue-dim:  #4a80c4;
  --blue-lt:   #dce9f7;
  --blue-xlt:  #eef4fb;
  --grey:      #4a5568;
  --grey-lt:   #e8ecf0;
  --grey-mid:  #8a97a8;
  --grey-xlt:  #f4f6f8;
  --white:     #ffffff;
  --border:    #dde3ea;
  --text:      #0f2137;
  --muted:     #4a5568;
  --shadow:    0 2px 12px rgba(15,33,55,0.08);
  --shadow-lg: 0 8px 40px rgba(15,33,55,0.18);
  --gutter:    32px;    /* side padding on desktop */
  --gutter-sm: 16px;   /* side padding on mobile */
  --max-w:     1140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  /* Prevent horizontal scroll from any element wider than viewport */
  overflow-x: hidden;
}

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

/* ── Universal inner wrapper ──
   Every section uses .inner to constrain width & provide consistent gutter.
   Sections themselves are full-bleed for background colours. */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   TYPOGRAPHY — consistent scale
   ============================================================ */
.kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
  display: block;
}
.sec-title {
  font-size: 34px; font-weight: 900; color: var(--text);
  letter-spacing: -0.5px; line-height: 1.12; margin-bottom: 12px;
}
.sec-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 32px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 78px;
  display: flex; align-items: center;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 1px 6px rgba(15,33,55,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-logo img { height: 54px; width: auto; }
.nav-logo-fallback { font-size: 19px; font-weight: 900; color: var(--navy); }
.nav-logo-fallback span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 16px; font-weight: 600; color: var(--muted); text-decoration: none; white-space: nowrap; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  border-radius: 7px; padding: 12px 24px !important;
  font-size: 16px !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }
.nav-hamburger { display: none; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; }

/* ============================================================
   HERO — two-column, no photo
   ============================================================ */
.hero {
  background: var(--navy);
  overflow: hidden;
}
.hero-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 60px var(--gutter) 56px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px; padding: 6px 14px;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.65); letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-tag-dot {
  width: 7px; height: 7px;
  background: var(--blue-dim); border-radius: 50%;
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-size: 42px; font-weight: 900; line-height: 1.08;
  color: var(--white); letter-spacing: -1px; margin-bottom: 18px;
}
.hero-h1 .hl { color: var(--blue-lt); }

.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 28px;
}

.hero-checks { display: flex; flex-direction: column; gap: 10px; }
.hero-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
.hero-check-tick {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--white); background: rgba(255,255,255,0.08);
}
.hero-form-col { width: 100%; }

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.form-card-head {
  background: var(--blue); padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.form-card-title { font-size: 20px; font-weight: 800; color: var(--white); }
.form-card-badge {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.15); padding: 4px 12px;
  border-radius: 3px; letter-spacing: 0.4px; text-transform: uppercase;
}
.form-body { padding: 22px; }

/* Step track */
.step-track { display: flex; align-items: center; margin-bottom: 22px; }
.step-dot {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex: 1; position: relative;
}
.step-dot::after {
  content: ''; position: absolute; top: 11px; left: 50%;
  width: 100%; height: 1.5px; background: var(--border);
}
.step-dot:last-child::after { display: none; }
.step-dot.done::after { background: var(--blue); }
.step-num {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 10px; font-weight: 800; color: var(--grey-mid);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1; transition: all 0.2s;
}
.step-dot.active .step-num { border-color: var(--blue); color: var(--blue); }
.step-dot.done .step-num { background: var(--blue); border-color: var(--blue); color: var(--white); }
.step-label {
  font-size: 10px; font-weight: 700; color: var(--grey-mid);
  letter-spacing: 0.3px; text-transform: uppercase;
}
.step-dot.active .step-label { color: var(--blue); }

.form-panel { display: none; }
.form-panel.active { display: block; }
.form-q { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 14px; }
.form-micro {
  font-size: 11px; font-weight: 700; color: var(--grey-mid);
  margin: 14px 0 7px; letter-spacing: 0.5px; text-transform: uppercase;
}

/* Appliance grid */
.appliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.appliance-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  text-align: center;
  user-select: none;
  min-height: 72px;
  color: #374151;
}
.appliance-type-btn:hover {
  border-color: var(--primary);
  background: var(--primary-xlt, #fffbeb);
}
.appliance-type-btn.selected {
  border-color: var(--primary);
  background: var(--primary-xlt, #fffbeb);
  color: var(--primary);
}

.appliance-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; text-align: center;
  padding: 12px 8px; border: 1.5px solid var(--border); border-radius: 8px;
  cursor: pointer; background: var(--grey-xlt); transition: all 0.15s;
  font-family: 'Figtree', sans-serif; width: 100%;
}
.appliance-btn:hover, .appliance-btn.selected { border-color: var(--blue); background: var(--blue-lt); }
.appliance-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--blue); }
.appliance-icon svg { width: 100%; height: 100%; }
.appliance-name { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.2; }

/* Fault chips */
.fault-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.fault-chip {
  padding: 7px 14px; border: 1.5px solid var(--border); border-radius: 4px;
  font-size: 14px; font-weight: 600; color: var(--muted);
  cursor: pointer; background: var(--grey-xlt); transition: all 0.15s;
  font-family: 'Figtree', sans-serif;
}
.fault-chip:hover { border-color: var(--blue); color: var(--blue); }
.fault-chip.selected { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Age grid */
.age-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 12px; }
.age-btn {
  padding: 10px 4px; text-align: center;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 14px; font-weight: 700; color: var(--muted);
  cursor: pointer; background: var(--grey-xlt); transition: all 0.15s;
  font-family: 'Figtree', sans-serif;
}
.age-btn:hover { border-color: var(--blue); }
.age-btn.selected { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Inputs */
.fi {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-family: 'Figtree', sans-serif; font-size: 16px;
  color: var(--text); background: var(--grey-xlt); margin-bottom: 10px;
}
.fi:focus { outline: none; border-color: var(--blue); background: var(--white); }
.fi::placeholder { color: var(--grey-mid); }
.fi-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px; cursor: pointer;
}
.fi-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.fi-row .fi { margin-bottom: 0; }
textarea.fi { resize: none; height: 76px; }

/* Form buttons */
.form-btn-row { display: flex; gap: 8px; margin-top: 8px; }
.btn-back {
  padding: 12px 18px; border: 1.5px solid var(--border); border-radius: 7px;
  font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--muted); background: transparent; cursor: pointer;
}
.btn-next {
  flex: 1; padding: 14px; background: var(--blue); color: var(--white);
  border: none; border-radius: 7px; font-family: 'Figtree', sans-serif;
  font-size: 16px; font-weight: 800; cursor: pointer;
}
.btn-next:hover { background: #1d4f8a; }
.btn-submit {
  flex: 1; padding: 14px; background: var(--navy); color: var(--white);
  border: none; border-radius: 7px; font-family: 'Figtree', sans-serif;
  font-size: 16px; font-weight: 800; cursor: pointer;
}
.btn-submit:hover { background: var(--navy-mid); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-privacy { font-size: 12px; color: var(--grey-mid); text-align: center; margin-top: 10px; line-height: 1.5; }
.form-error {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  padding: 10px 14px; border-radius: 6px; font-size: 14px;
  margin-bottom: 12px; display: none;
}

/* Success state */
.form-success { text-align: center; padding: 28px 12px; }
.success-tick {
  width: 52px; height: 52px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.success-tick svg { width: 24px; height: 24px; color: var(--white); }
.success-title { font-size: 22px; font-weight: 900; margin-bottom: 8px; }
.success-sub { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.success-steps { font-size: 15px; color: var(--grey-mid); border-top: 1px solid var(--border); padding-top: 14px; line-height: 2; }

/* ============================================================
   TRUST STRIP — full bleed, no inner wrapper needed
   ============================================================ */
.trust-strip { background: var(--blue); display: flex; }
.trust-item {
  flex: 1; padding: 24px 10px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-item:last-child { border-right: none; }
.trust-val {
  font-size: 28px; font-weight: 900; color: var(--white);
  letter-spacing: -0.5px; line-height: 1; margin-bottom: 6px;
}
.trust-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75);
  letter-spacing: 0.3px; text-transform: uppercase; line-height: 1.3;
}

/* ============================================================
   ENGINEER SPLIT — full bleed grid
   ============================================================ */
.eng-split { display: grid; grid-template-columns: 1fr 1fr; }
.eng-photo-wrap { position: relative; overflow: hidden; min-height: 340px; }
.eng-photo { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(0.6) brightness(0.88); }
.eng-content {
  background: var(--blue-xlt); border-left: 1px solid var(--blue-lt);
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.eng-title { font-size: 30px; font-weight: 900; color: var(--text); letter-spacing: -0.4px; margin-bottom: 16px; line-height: 1.15; }
.eng-sub { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.eng-points { display: flex; flex-direction: column; gap: 18px; }
.eng-point { display: flex; gap: 16px; align-items: flex-start; }
.eng-icon {
  width: 36px; height: 36px; background: var(--blue-lt); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.eng-icon svg { width: 18px; height: 18px; color: var(--blue); }
.eng-text { font-size: 17px; color: var(--text); line-height: 1.6; }
.eng-text strong { font-weight: 800; font-size: 17px; }

/* ============================================================
   SECTION PADDING — consistent: 72px top/bottom on desktop
   Each section has an .inner for horizontal gutter
   ============================================================ */

/* Repair vs Replace */
.rvr-section { background: var(--navy); padding: 72px 0; }
.rvr-section .inner { }
.rvr-section .kicker { color: var(--blue-dim); }
.rvr-section .sec-title { color: var(--white); }
.rvr-section .sec-sub { color: rgba(255,255,255,0.5); }
.rvr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rvr-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 28px 24px;
}
.rvr-card-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.rvr-icon {
  width: 44px; height: 44px; background: rgba(74,128,196,0.2);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.rvr-icon svg { width: 22px; height: 22px; color: var(--blue-lt); }
.rvr-title { font-size: 18px; font-weight: 800; color: var(--white); margin: 0; line-height: 1.2; }
.rvr-desc { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* Services */
.services-section { background: var(--white); padding: 72px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; margin-top: 28px; }
.service-card {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  text-decoration: none; background: var(--white); transition: all 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--blue-dim); transform: translateY(-3px); }
.service-icon-wrap {
  height: 100px; background: var(--grey-lt); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.service-icon-wrap svg { width: 48px; height: 48px; color: var(--navy); opacity: 0.6; }
.service-body { padding: 18px; }
.service-name { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 5px; }
.service-desc { font-size: 16px; color: var(--muted); line-height: 1.5; }
.service-link { font-size: 15px; font-weight: 700; color: var(--blue); margin-top: 10px; display: block; }

/* How it works */
.how-section { background: var(--grey-xlt); border-top: 1px solid var(--border); padding: 72px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 28px; }
.how-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 30px 24px; text-align: center;
}
.how-num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue);
  color: var(--white); font-size: 20px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.how-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.how-desc { font-size: 16px; color: var(--muted); line-height: 1.65; }

/* Reviews */
.reviews-section { background: var(--white); border-top: 1px solid var(--border); padding: 72px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 16px; margin-top: 28px; }
.review-card {
  background: var(--grey-xlt); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px; position: relative;
}
.review-card::before {
  content: '\201C'; position: absolute; top: 10px; right: 20px;
  font-size: 64px; color: var(--blue-lt); line-height: 1; font-weight: 900;
}
.review-stars { font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; color: var(--blue-dim); }
.review-text { font-size: 16px; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.review-author { font-size: 14px; font-weight: 700; color: var(--grey-mid); }

/* FAQ */
.faq-section { background: var(--blue-xlt); border-top: 1px solid var(--blue-lt); padding: 72px 0; }
.faq-list { margin-top: 28px; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--white); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 26px; cursor: pointer; gap: 16px; transition: background 0.15s;
}
.faq-q:hover, .faq-item.open .faq-q { background: var(--blue-xlt); }
.faq-q-text { font-size: 17px; font-weight: 700; color: var(--text); flex: 1; }
.faq-q-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--grey-lt);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.faq-q-icon svg { width: 14px; height: 14px; color: var(--grey); transition: transform 0.25s; }
.faq-item.open .faq-q-icon { background: var(--blue); }
.faq-item.open .faq-q-icon svg { color: var(--white); transform: rotate(180deg); }
.faq-a {
  font-size: 16px; color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden; padding: 0 26px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 26px 22px; }

/* CTA Band */
.cta-band { background: var(--blue); padding: 72px 0; text-align: center; }
.cta-band-title { font-size: 34px; font-weight: 900; color: var(--white); letter-spacing: -0.5px; margin-bottom: 12px; }
.cta-band-sub { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 30px; }
.cta-band-btn {
  display: inline-block; background: var(--white); color: var(--blue);
  border: none; border-radius: 8px; padding: 17px 48px;
  font-family: 'Figtree', sans-serif; font-size: 18px; font-weight: 900;
  cursor: pointer; text-decoration: none;
}
.cta-band-btn:hover { opacity: 0.92; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); padding: 44px 0 30px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.footer-logo-text { font-size: 18px; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.footer-net { font-size: 14px; color: rgba(255,255,255,0.28); margin-bottom: 26px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; list-style: none; }
.footer-links a { font-size: 15px; color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.2); line-height: 1.7; }

/* Sticky mobile CTA */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px; z-index: 300;
  align-items: center; justify-content: space-between;
}
.sticky-cta-text { font-size: 15px; font-weight: 700; color: var(--white); }
.sticky-cta-btn {
  background: var(--blue-lt); color: var(--navy); border: none;
  border-radius: 7px; padding: 11px 22px;
  font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 800; cursor: pointer;
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero { background: var(--navy); padding: 56px 0; }
.page-hero-kicker { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-dim); margin-bottom: 14px; display: block; }
.page-hero-h1 { font-size: 40px; font-weight: 900; color: var(--white); letter-spacing: -0.6px; line-height: 1.1; margin-bottom: 16px; }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7; }

.page-body { padding: 56px 0; }
.page-body h2 { font-size: 28px; font-weight: 900; margin: 40px 0 16px; letter-spacing: -0.3px; }
.page-body h3 { font-size: 22px; font-weight: 800; margin: 30px 0 12px; }
.page-body p { font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 18px; }
.page-body ul { margin: 16px 0 20px 28px; }
.page-body li { font-size: 17px; line-height: 1.7; color: var(--muted); margin-bottom: 8px; }

.towns-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 10px; margin-top: 24px; }
.town-link { display: block; padding: 14px 18px; background: var(--grey-xlt); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; font-size: 16px; font-weight: 600; color: var(--text); }
.town-link:hover { border-color: var(--blue); background: var(--blue-xlt); color: var(--blue); }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 22px; margin-top: 28px; }
.blog-card { border: 1px solid var(--border); border-radius: 10px; padding: 26px; text-decoration: none; background: var(--white); transition: all 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--blue-dim); transform: translateY(-2px); }
.blog-card-date { font-size: 13px; font-weight: 600; color: var(--grey-mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.blog-card-title { font-size: 18px; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 10px; }
.blog-card-link { font-size: 15px; font-weight: 700; color: var(--blue); margin-top: auto; }

.page-form-wrap { background: var(--blue-xlt); border: 1px solid var(--blue-lt); border-radius: 12px; padding: 36px; margin: 44px 0; }

/* ============================================================
   RESPONSIVE — tablet 960px
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px var(--gutter) 40px;
  }
  .hero-h1 { font-size: 34px; }
  .sec-title { font-size: 28px; }

  .eng-split { grid-template-columns: 1fr; }
  .eng-photo-wrap { display: none; }
  .eng-content { border-left: none; padding: 48px var(--gutter); }

  .rvr-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — mobile 680px
   Single source of truth for all mobile overrides.
   Rule: use --gutter-sm (16px) everywhere. No section
   ever has more than 16px side padding on mobile.
   ============================================================ */
@media (max-width: 680px) {

  /* ── BASE ── */
  :root { --gutter: var(--gutter-sm); }
  body { font-size: 16px; overflow-x: hidden; }

  /* ── NAV ── */
  .site-nav { height: 68px; }
  .nav-inner { padding: 0 var(--gutter-sm); }
  .nav-logo img { height: 44px; }
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 8px 0;
    box-shadow: var(--shadow); z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 15px 20px; display: block; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-hamburger { display: block; }

  /* ── HERO — tight, form visible without scrolling ── */
  .hero-tag { display: none; } /* hidden on mobile */
  .hero-inner--split {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px var(--gutter-sm) 24px;
  }
  .hero-h1 { font-size: 26px; line-height: 1.12; margin-bottom: 10px; text-align: center; }
  .hero-sub { font-size: 16px; line-height: 1.6; margin-bottom: 14px; text-align: center; }
  .hero-checks { gap: 8px; }
  .hero-check { font-size: 16px; line-height: 1.4; }
  .hero-check-tick { width: 18px; height: 18px; font-size: 10px; }

  /* ── TRUST STRIP — 2×2 ── */
  .trust-strip { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 16px 8px; }
  .trust-item:nth-child(even) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-val { font-size: 22px; }
  .trust-label { font-size: 12px; }

  /* ── ENGINEER ── */
  .eng-content { padding: 36px var(--gutter-sm); }
  .eng-title { font-size: 22px; }
  .eng-sub { font-size: 16px; line-height: 1.65; }
  .eng-text { font-size: 16px; line-height: 1.6; }
  .eng-text strong { font-size: 16px; }

  /* ── SECTIONS — reduced vertical padding, tighter gaps ── */
  .rvr-section,
  .services-section,
  .how-section,
  .reviews-section,
  .faq-section,
  .cta-band { padding: 36px 0; }
  .site-footer { padding: 32px 0 90px; }
  .footer-inner { padding: 0 var(--gutter-sm); }

  /* ── SECTION TEXT — one consistent scale ── */
  .kicker { font-size: 11px; letter-spacing: 1.5px; }
  .sec-title { font-size: 22px; line-height: 1.15; margin-bottom: 8px; }
  .sec-sub { font-size: 16px; line-height: 1.65; margin-bottom: 20px; }

  /* ── RVR CARDS ── */
  .rvr-grid { grid-template-columns: 1fr; gap: 10px; }
  .rvr-card { padding: 20px 16px; }
  .rvr-card-head { gap: 12px; margin-bottom: 10px; }
  .rvr-icon { width: 36px; height: 36px; }
  .rvr-icon svg { width: 18px; height: 18px; }
  .rvr-title { font-size: 16px; line-height: 1.2; }
  .rvr-desc { font-size: 16px; line-height: 1.65; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-body { padding: 14px; }
  .service-name { font-size: 15px; }
  .service-desc { font-size: 14px; }
  .service-link { font-size: 14px; }

  /* ── HOW IT WORKS ── */
  .how-grid { grid-template-columns: 1fr; gap: 10px; }
  .how-card { padding: 22px 18px; }
  .how-num { width: 38px; height: 38px; font-size: 17px; margin-bottom: 12px; }
  .how-title { font-size: 16px; }
  .how-desc { font-size: 16px; line-height: 1.65; }

  /* ── REVIEWS ── */
  .reviews-grid { grid-template-columns: 1fr; gap: 10px; }
  .review-card { padding: 18px; }
  .review-stars { font-size: 15px; margin-bottom: 8px; }
  .review-text { font-size: 16px; line-height: 1.65; }
  .review-author { font-size: 14px; }

  /* ── FAQ ── */
  .faq-list { margin-top: 20px; }
  .faq-q { padding: 15px 18px; }
  .faq-q-text { font-size: 16px; line-height: 1.4; }
  .faq-q-icon { width: 24px; height: 24px; }
  .faq-q-icon svg { width: 12px; height: 12px; }
  .faq-a { font-size: 16px; line-height: 1.7; padding: 0 18px; }
  .faq-item.open .faq-a { padding: 0 18px 16px; }

  /* ── CTA BAND ── */
  .cta-band-title { font-size: 24px; line-height: 1.15; }
  .cta-band-sub { font-size: 16px; margin-bottom: 22px; }
  .cta-band-btn { font-size: 16px; padding: 14px 28px; }

  /* ── FORM ── */
  .form-body { padding: 16px; }
  .step-track { margin-bottom: 16px; }
  .form-q { font-size: 15px; margin-bottom: 12px; }
  .form-card-title { font-size: 18px; }
  .form-card-badge { font-size: 11px; }
  .appliance-grid { gap: 6px; margin-bottom: 12px; }
  .appliance-btn { padding: 10px 10px; }
  .appliance-name { font-size: 13px; }
  .fault-chip { font-size: 13px; padding: 6px 10px; }
  .age-btn { font-size: 13px; padding: 9px 4px; }
  .fi { font-size: 16px; padding: 11px 12px; margin-bottom: 8px; }
  .fi-row { grid-template-columns: 1fr; gap: 0; }
  .fi-row .fi { margin-bottom: 8px; }
  .btn-next, .btn-submit { font-size: 15px; padding: 13px; }

  /* ── INNER PAGES ── */
  .page-hero { padding: 32px 0; }
  .page-hero-h1 { font-size: 24px; line-height: 1.1; }
  .page-hero-sub { font-size: 16px; line-height: 1.65; }
  .page-body { padding: 28px 0; }
  .page-body h2 { font-size: 20px; margin: 28px 0 12px; }
  .page-body h3 { font-size: 18px; }
  .page-body p, .page-body li { font-size: 16px; line-height: 1.7; margin-bottom: 14px; }
  .page-form-wrap { padding: 22px 16px; margin: 24px 0; }

  .blog-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-card { padding: 20px; }
  .blog-card-title { font-size: 17px; }
  .towns-grid { grid-template-columns: repeat(auto-fill,minmax(140px,1fr)); gap: 8px; }
  .town-link { padding: 12px 14px; font-size: 15px; }

  /* ── FOOTER ── */
  .footer-logo-text { font-size: 16px; }
  .footer-net { font-size: 13px; }
  .footer-links { gap: 14px; }
  .footer-links a { font-size: 14px; }
  .footer-copy { font-size: 12px; }

  .sticky-cta { display: flex; }
}

/* ============================================================
   LOCATION PAGES — county & town
   ============================================================ */

/* Hero with photo for location pages */
.loc-hero { position: relative; min-height: 440px; display: block; overflow: hidden; background: rgb(15,33,55); }
.loc-hero .hero-photo {
  display: none;
}
.loc-hero .hero-overlay {
  position: absolute; inset: 0;
  background: rgb(15,33,55);
}
.loc-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 56px var(--gutter) 52px;
  max-width: var(--max-w); margin: 0 auto;
  box-sizing: border-box;
}

/* Breadcrumb in hero */
.hero-breadcrumb {
  margin-top: 20px;
  font-size: 13px; color: rgba(255,255,255,0.4);
}
.hero-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.hero-breadcrumb a:hover { color: rgba(255,255,255,0.75); }

/* ── Body layout: main content + sidebar ── */
.loc-body-section { padding: 56px 0; background: var(--white); }
.loc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.loc-main { min-width: 0; }

/* ── Content blocks ── */
.loc-content-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  min-width: 0; /* prevent grid blowout */
}
.loc-content-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.loc-content-block h2 {
  font-size: 26px; font-weight: 900; color: var(--text);
  letter-spacing: -0.3px; margin-bottom: 16px; line-height: 1.15;
}
.loc-content-block p {
  font-size: 17px; color: var(--muted); line-height: 1.75; margin-bottom: 16px;
}
.loc-content-block p:last-child { margin-bottom: 0; }

/* ── Fault list grid ── */
.fault-list-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px;
  width: 100%;
}
.fault-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--grey-xlt); border: 1px solid var(--border);
  border-radius: 8px; padding: 14px 16px;
  min-width: 0; /* prevent grid blowout */
}
.fault-item-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--blue-lt); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.fault-item-icon svg { width: 15px; height: 15px; color: var(--blue); }
.fault-item-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 3px; line-height: 1.2; }
.fault-item-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ── Why us grid on location pages ── */
.loc-why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 8px;
}
.loc-why-card {
  background: var(--blue-xlt); border: 1px solid var(--blue-lt);
  border-radius: 9px; padding: 20px 18px;
}
.loc-why-card-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.loc-why-icon {
  width: 36px; height: 36px; background: var(--blue-lt);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-why-icon svg { width: 18px; height: 18px; color: var(--blue); }
.loc-why-title { font-size: 16px; font-weight: 800; color: var(--text); margin: 0; line-height: 1.2; }
.loc-why-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Cost table ── */
.cost-table {
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-top: 16px; font-size: 15px;
  width: 100%;
}
.cost-row {
  display: grid; grid-template-columns: 1fr auto;
  padding: 12px 18px; border-bottom: 1px solid var(--border);
  gap: 16px;
}
.cost-row:last-child { border-bottom: none; }
.cost-row-head {
  background: var(--navy); color: var(--white);
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.4px;
}
.cost-row:not(.cost-row-head):not(.cost-row-note):nth-child(even) { background: var(--grey-xlt); }
.cost-row > div:last-child { font-weight: 700; color: var(--navy); }
.cost-row-head > div:last-child { color: var(--white); }
.cost-row-note {
  grid-template-columns: 1fr; background: var(--blue-xlt);
  color: var(--muted); font-size: 13px; font-style: italic;
}

/* ── Sidebar ── */
.loc-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 96px; }

.sidebar-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.sidebar-card-head {
  background: var(--navy); color: var(--white);
  font-size: 13px; font-weight: 700; padding: 13px 18px;
  letter-spacing: 0.2px;
}
.sidebar-towns { padding: 8px 0; }
.sidebar-town-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 18px; text-decoration: none;
  font-size: 14px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border); transition: background 0.12s;
}
.sidebar-town-link:last-of-type { border-bottom: none; }
.sidebar-town-link:hover { background: var(--blue-xlt); color: var(--blue); }
.sidebar-town-pc {
  font-size: 12px; font-weight: 600; color: var(--grey-mid);
  background: var(--grey-lt); padding: 2px 7px; border-radius: 3px;
}
.sidebar-more {
  padding: 9px 18px; font-size: 13px; color: var(--grey-mid);
  font-style: italic; border-top: 1px solid var(--border);
}
.sidebar-view-all {
  display: block; padding: 11px 18px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  text-decoration: none; border-top: 1px solid var(--border);
}
.sidebar-view-all:hover { background: var(--blue-xlt); }

.sidebar-cta-card {
  background: var(--blue); border: none; padding: 22px 20px;
}
.sidebar-cta-title { font-size: 17px; font-weight: 900; color: var(--white); margin-bottom: 6px; line-height: 1.2; }
.sidebar-cta-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 16px; line-height: 1.55; }
.sidebar-cta-btn {
  display: block; background: var(--white); color: var(--blue);
  border-radius: 7px; padding: 12px 16px; text-align: center;
  font-size: 15px; font-weight: 800; text-decoration: none; transition: opacity 0.15s;
}
.sidebar-cta-btn:hover { opacity: 0.9; }

/* ── Tablet: collapse sidebar below content ── */
@media (max-width: 960px) {
  .loc-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px; padding: 44px var(--gutter) 40px;
    width: 100%; box-sizing: border-box;
  }
  .loc-hero .hero-photo { display: none; }
  .loc-hero .hero-overlay { background: rgba(15,33,55,0.97); }
  .loc-layout { grid-template-columns: 1fr; }
  .loc-main { min-width: 0; }
  .loc-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .sidebar-card { flex: 1; min-width: 260px; }
}

/* ── Mobile ── */
@media (max-width: 680px) {
  /* ── LOCATION PAGES ── */
  .loc-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px var(--gutter-sm) 24px;
    width: 100%; box-sizing: border-box;
  }
  .loc-body-section { padding: 32px 0; }
  .loc-content-block { margin-bottom: 28px; padding-bottom: 28px; }
  .loc-content-block h2 { font-size: 20px; }
  .loc-content-block p { font-size: 16px; }
  .loc-main { min-width: 0; }

  /* Fault grid — single col, constrained */
  .fault-list-grid { grid-template-columns: 1fr; gap: 8px; width: 100%; }
  .fault-item { padding: 12px 14px; min-width: 0; }
  .fault-item-title { font-size: 14px; }
  .fault-item-desc { font-size: 13px; }

  /* Why cards — single col */
  .loc-why-grid { grid-template-columns: 1fr; gap: 8px; }
  .loc-why-card { padding: 16px 14px; }
  .loc-why-title { font-size: 15px; }
  .loc-why-desc { font-size: 14px; }

  /* Cost table — constrained, smaller font */
  .cost-table { font-size: 13px; }
  .cost-row {
    grid-template-columns: 1fr auto;
    font-size: 13px; padding: 10px 12px; gap: 8px;
  }
  .cost-row > div:last-child { font-size: 13px; }

  /* Sidebar */
  .loc-sidebar { flex-direction: column; gap: 12px; }
  .sidebar-card { min-width: unset; width: 100%; }
  .sidebar-town-link { font-size: 14px; padding: 9px 16px; }
  .sidebar-cta-title { font-size: 16px; }
  .sidebar-cta-sub { font-size: 14px; }

  .hero-breadcrumb { font-size: 12px; margin-top: 12px; }
}


/* ── BRANDS GRID ── */
.brands-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 12px; margin-top: 8px;
}
.brand-card {
  border: 1px solid var(--border); border-radius: 9px; padding: 20px 18px;
  text-decoration: none; background: var(--white); transition: all 0.2s;
  display: flex; flex-direction: column;
}
.brand-card:hover { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-2px); }
.brand-name { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.brand-meta { font-size: 12px; color: var(--grey-mid); margin-bottom: 10px; }
.brand-link { font-size: 13px; font-weight: 700; color: var(--blue); margin-top: auto; }

@media (max-width: 680px) {
  .brands-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .brand-name { font-size: 15px; }
}


/* ============================================================
   BLOG — v13
   ============================================================ */

/* ── Blog listing hero ── */
.blog-hero {
  background: var(--navy);
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.blog-hero-kicker {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue-dim);
  margin-bottom: 14px; display: block;
}
.blog-hero-h1 {
  font-size: 44px; font-weight: 900; color: var(--white);
  letter-spacing: -0.8px; line-height: 1.08; margin-bottom: 18px;
}
.blog-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7;
  max-width: 560px; margin-bottom: 36px;
}

/* ── Category filter pills ── */
.blog-cats {
  display: flex; flex-wrap: nowrap; gap: 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 2px;
}
.blog-cat-pill {
  padding: 7px 16px; border-radius: 20px; font-size: 13px; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65); transition: all 0.15s; background: transparent;
  cursor: pointer; white-space: nowrap;
}
.blog-cat-pill:hover,
.blog-cat-pill.active {
  background: var(--blue); border-color: var(--blue); color: var(--white);
}

/* ── Blog listing body ── */
.blog-listing { padding: 56px 0 72px; background: var(--grey-xlt); }

/* Featured post — full-width card at top */
.blog-featured {
  background: var(--white); border-radius: 14px; padding: 40px;
  border: 1px solid var(--border); margin-bottom: 36px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start;
  box-shadow: var(--shadow);
}
.blog-featured-badge {
  display: inline-block; background: var(--blue); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 14px;
}
.blog-featured-title {
  font-size: 26px; font-weight: 900; color: var(--text);
  letter-spacing: -0.4px; line-height: 1.25; margin-bottom: 12px;
  text-decoration: none; display: block;
}
.blog-featured-title:hover { color: var(--blue); }
.blog-featured-excerpt {
  font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 20px;
}
.blog-featured-meta {
  font-size: 13px; color: var(--grey-mid); display: flex; gap: 16px; align-items: center;
}
.blog-featured-meta span::before { content: '·'; margin-right: 8px; }
.blog-featured-meta span:first-child::before { content: none; }
.blog-featured-cta {
  display: inline-block; background: var(--blue); color: var(--white);
  font-size: 14px; font-weight: 700; padding: 10px 22px; border-radius: 7px;
  text-decoration: none; white-space: nowrap; align-self: center;
  transition: opacity 0.15s;
}
.blog-featured-cta:hover { opacity: 0.88; }

/* Grid of post cards */
.blog-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card-v2 {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); padding: 28px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: all 0.2s; box-shadow: 0 1px 4px rgba(15,33,55,0.05);
}
.blog-card-v2:hover {
  box-shadow: var(--shadow); border-color: var(--blue-dim);
  transform: translateY(-2px);
}
.blog-card-v2-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 10px;
}
.blog-card-v2-title {
  font-size: 17px; font-weight: 800; color: var(--text);
  line-height: 1.3; margin-bottom: 10px;
}
.blog-card-v2-excerpt {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  flex: 1; margin-bottom: 16px;
}
.blog-card-v2-meta {
  font-size: 12px; color: var(--grey-mid); margin-bottom: 14px;
}
.blog-card-v2-link {
  font-size: 14px; font-weight: 700; color: var(--blue); margin-top: auto;
}

/* ── Blog post page ── */
.post-hero {
  background: var(--navy);
  padding: 56px 0 48px;
}
.post-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.post-breadcrumb {
  font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 18px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.post-breadcrumb a { color: var(--blue-dim); text-decoration: none; }
.post-breadcrumb a:hover { color: var(--white); }
.post-breadcrumb-sep { opacity: 0.4; }
.post-cat-pill {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-dim);
  border: 1px solid rgba(74,128,196,0.45); padding: 4px 12px;
  border-radius: 20px; margin-bottom: 18px;
  text-decoration: none;
}
.post-h1 {
  font-size: 42px; font-weight: 900; color: var(--white);
  letter-spacing: -0.8px; line-height: 1.1; margin-bottom: 22px;
  max-width: 800px;
}
.post-meta-row {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
  font-size: 14px; color: rgba(255,255,255,0.45);
}
.post-meta-row strong { color: rgba(255,255,255,0.65); font-weight: 600; }
.post-meta-divider { opacity: 0.3; }

/* ── Post body: two-column layout ── */
.post-body { padding: 56px 0 72px; background: var(--grey-xlt); }
.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Article content ── */
.post-article {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 48px;
  box-shadow: 0 1px 6px rgba(15,33,55,0.05);
}
.post-article h2 {
  font-size: 26px; font-weight: 900; color: var(--text);
  margin: 44px 0 16px; letter-spacing: -0.4px; line-height: 1.2;
  padding-top: 8px;
  border-top: 2px solid var(--blue-lt);
}
.post-article h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.post-article h3 {
  font-size: 20px; font-weight: 800; color: var(--text);
  margin: 32px 0 12px; line-height: 1.3;
}
.post-article p {
  font-size: 17px; line-height: 1.8; color: var(--muted); margin-bottom: 20px;
}
.post-article ul, .post-article ol {
  margin: 0 0 20px 24px;
}
.post-article li {
  font-size: 17px; line-height: 1.75; color: var(--muted); margin-bottom: 8px;
}
.post-article strong { color: var(--text); font-weight: 700; }
.post-article a { color: var(--blue); text-decoration: underline; }
.post-article a:hover { text-decoration: none; }

/* Blog post content inside loc-content-block */
.loc-content-block.post-content p {
  font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 18px;
}
.loc-content-block.post-content ul,
.loc-content-block.post-content ol {
  margin: 0 0 20px 24px; padding: 0;
}
.loc-content-block.post-content li {
  font-size: 16px; line-height: 1.75; color: var(--text);
  margin-bottom: 8px; padding-left: 4px;
}
.loc-content-block.post-content h2 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin: 32px 0 14px; line-height: 1.3;
}
.loc-content-block.post-content h3 {
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin: 24px 0 10px;
}
.loc-content-block.post-content strong { color: var(--navy); }

/* Cost table inside articles */
.post-article table {
  width: 100%; border-collapse: collapse; margin: 24px 0 28px; font-size: 15px;
}
.post-article th {
  background: var(--navy); color: var(--white);
  padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 700;
  letter-spacing: 0.3px;
}
.post-article td {
  padding: 12px 16px; border-bottom: 1px solid var(--grey-lt);
  color: var(--muted); vertical-align: top;
}
.post-article tr:last-child td { border-bottom: none; }
.post-article tr:nth-child(even) td { background: var(--grey-xlt); }
.post-article td:first-child { font-weight: 600; color: var(--text); }

/* Inline quote panel — mid-article conversion point */
.inline-quote-panel {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px;
  margin: 44px 0;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.iqp-text {}
.iqp-icon {
  font-size: 32px; margin-bottom: 8px;
}
.iqp-title {
  font-size: 20px; font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 8px;
}
.iqp-sub {
  font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6;
}
.iqp-btn {
  display: inline-block; background: #fff; color: var(--navy);
  font-size: 15px; font-weight: 800; padding: 13px 26px;
  border-radius: 8px; text-decoration: none; white-space: nowrap;
  transition: opacity 0.15s; flex-shrink: 0;
}
.iqp-btn:hover { opacity: 0.9; }

/* ── Post sidebar ── */
.post-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 96px; }
.post-sidebar-card {
  background: var(--white); border-radius: 12px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 1px 4px rgba(15,33,55,0.05);
}
.post-sidebar-head {
  background: var(--navy); padding: 16px 20px;
  font-size: 13px; font-weight: 700; color: var(--white);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.post-sidebar-body { padding: 20px; }

/* Sidebar quote CTA card */
.post-sidebar-cta {
  background: var(--blue); border-radius: 12px; padding: 24px;
}
.post-sidebar-cta-title {
  font-size: 18px; font-weight: 900; color: var(--white);
  line-height: 1.25; margin-bottom: 8px;
}
.post-sidebar-cta-sub {
  font-size: 14px; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin-bottom: 18px;
}
.post-sidebar-cta-btn {
  display: block; background: var(--white); color: var(--blue);
  font-size: 15px; font-weight: 800; padding: 12px 0;
  border-radius: 8px; text-decoration: none; text-align: center;
  transition: opacity 0.15s;
}
.post-sidebar-cta-btn:hover { opacity: 0.9; }
.post-sidebar-trust {
  margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55);
  text-align: center; line-height: 1.5;
}

/* Sidebar TOC */
.post-toc { list-style: none; margin: 0; padding: 0; }
.post-toc li { border-bottom: 1px solid var(--grey-lt); }
.post-toc li:last-child { border-bottom: none; }
.post-toc a {
  display: block; padding: 10px 0; font-size: 14px; font-weight: 600;
  color: var(--muted); text-decoration: none; line-height: 1.4;
  transition: color 0.15s;
}
.post-toc a:hover { color: var(--blue); }
.post-toc-num {
  font-size: 12px; color: var(--blue); font-weight: 800;
  margin-right: 6px;
}

/* Sidebar related posts */
.post-related-list { list-style: none; margin: 0; padding: 0; }
.post-related-list li { border-bottom: 1px solid var(--grey-lt); }
.post-related-list li:last-child { border-bottom: none; }
.post-related-list a {
  display: block; padding: 12px 0; font-size: 14px; font-weight: 600;
  color: var(--text); text-decoration: none; line-height: 1.4;
  transition: color 0.15s;
}
.post-related-list a:hover { color: var(--blue); }
.post-related-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 2px;
}

/* ── Related posts band (bottom of article) ── */
.post-related-band {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 56px 0 64px;
}
.post-related-band-title {
  font-size: 24px; font-weight: 900; color: var(--text);
  margin-bottom: 28px; letter-spacing: -0.3px;
}
.post-related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

/* ── CTA band ── */
/* (uses existing .cta-band styles from location pages) */

/* ============================================================
   BLOG RESPONSIVE — v13
   ============================================================ */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; gap: 32px; }
  .post-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .post-sidebar-card { flex: 1; min-width: 280px; }
  .post-sidebar-cta { width: 100%; }
  .blog-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .post-related-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-cta { display: inline-block; width: auto; }
}

@media (max-width: 768px) {
  .blog-hero-h1 { font-size: 24px; letter-spacing: -0.4px; }
  .blog-hero-sub { font-size: 16px; }
  .post-h1 { font-size: 26px; line-height: 1.15; }
  .post-article { padding: 28px 20px; }
  .post-article h2 { font-size: 21px; }
  .post-article h3 { font-size: 18px; }
  .post-article p, .post-article li { font-size: 16px; }
  .inline-quote-panel { flex-direction: column; gap: 16px; text-align: center; }
  .iqp-btn { width: 100%; text-align: center; padding: 14px; }
  .blog-grid-v2 { grid-template-columns: 1fr; }
  .post-related-grid { grid-template-columns: 1fr; }
  .blog-featured { padding: 24px; }
  .blog-featured-title { font-size: 20px; }
  .post-layout { padding: 0 var(--gutter-sm); }
  .post-body { padding: 28px 0 48px; }
  .post-sidebar { flex-direction: column; }
  .post-sidebar-card { min-width: unset; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* ── Form card ── */
.contact-form-card {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(15,33,55,0.05);
}
.contact-form-head {
  background: var(--navy);
  padding: 20px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.contact-form-body { padding: 28px; }

/* ── Form fields ── */
.cf-row { margin-bottom: 20px; }
.cf-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.cf-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,168,0.12);
}
.cf-input--err { border-color: #dc2626; }
.cf-input--err:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }
.cf-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.cf-error {
  font-size: 13px;
  color: #dc2626;
  font-weight: 600;
  margin-top: 5px;
}
.cf-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: 4px;
}
.cf-submit:hover { opacity: 0.88; }

/* ── Success state ── */
.contact-success {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 1px 6px rgba(15,33,55,0.05);
}
.contact-success-icon {
  width: 56px; height: 56px;
  background: #16a34a;
  color: var(--white);
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.contact-success-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-success p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px;
}
.contact-success a { color: var(--blue); font-weight: 600; }

/* ── Info sidebar ── */
.contact-info-col { display: flex; flex-direction: column; gap: 18px; }
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(15,33,55,0.04);
}
.contact-info-head {
  background: var(--navy);
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-info-body {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}
.contact-info-body p { margin-bottom: 12px; }
.contact-info-body p:last-child { margin-bottom: 0; }
.contact-info-btn {
  display: block;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 11px 0;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.15s;
  margin-top: 4px;
}
.contact-info-btn:hover { opacity: 0.88; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info-col {
    flex-direction: column;
  }
  .contact-form-body { padding: 20px; }
}


/* ============================================================
   SITEMAP PAGE
   ============================================================ */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sitemap-section {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(15,33,55,0.04);
}
.sitemap-section-head {
  background: var(--navy);
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}
.sitemap-list li {
  border-bottom: 1px solid var(--grey-lt);
}
.sitemap-list li:last-child { border-bottom: none; }
.sitemap-list a {
  display: block;
  padding: 9px 18px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.15s, background 0.15s;
}
.sitemap-list a:hover {
  color: var(--blue);
  background: var(--blue-xlt);
}

@media (max-width: 900px) {
  .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sitemap-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   REVIEWS PANEL
   ============================================================ */
.reviews-band {
  background: var(--navy);
  padding: 56px 0 64px;
}
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.reviews-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}
.reviews-score {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews-stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; }
.reviews-rating { color: var(--white); font-weight: 800; font-size: 16px; }
.reviews-count { color: rgba(255,255,255,0.45); font-size: 13px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 22px;
}
.review-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.review-name { color: var(--white); font-weight: 700; }
.review-loc {
  color: rgba(255,255,255,0.4);
}
.review-loc::before { content: '·'; margin-right: 8px; }

/* Inline quote CTA band for listing pages */
.listing-quote-band {
  background: var(--blue);
  padding: 40px 0;
  text-align: center;
}
.listing-quote-band-title {
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.listing-quote-band-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.listing-quote-band-btn {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.listing-quote-band-btn:hover { opacity: 0.9; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}


/* ── How it works steps (town pages) ── */
.how-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.how-step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--grey-xlt); border-radius: 10px; padding: 20px 22px;
  border: 1px solid var(--border); overflow: visible;
}
.how-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-size: 16px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.how-step-title { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.how-step-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }
.loc-inline-cta {
  display: inline-block; background: var(--blue); color: var(--white);
  font-size: 15px; font-weight: 700; padding: 12px 24px;
  border-radius: 8px; text-decoration: none; transition: opacity 0.15s;
}
.loc-inline-cta:hover { opacity: 0.88; }

/* ── WMRQ mobile fixes ── */
.nav-hamburger { touch-action: manipulation; }
@media (max-width: 680px) {
  .nav-links { text-align: right; }
}

/* Photo strip below hero */
.photo-strip { width: 100%; overflow: hidden; line-height: 0; }
.photo-strip img { width: 100%; max-height: 420px; object-fit: cover; display: block; }

/* Urgency pill buttons */
.urgency-opt {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1.5px solid #dde3ea;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #f8fafc;
  user-select: none;
  transition: border-color .15s, background .15s, color .15s;
}
.urgency-opt:hover {
  border-color: var(--primary, #2563a8);
  background: var(--primary-xlt, #eff6ff);
}
.urgency-opt.selected {
  border-color: var(--primary, #2563a8);
  background: var(--primary-xlt, #eff6ff);
  color: var(--primary, #2563a8);
}
.urgency-opt input[type="radio"] {
  width: 13px;
  height: 13px;
  accent-color: var(--primary, #2563a8);
}
