/* ============================================================
   Cowtown Drain — Stylesheet v3
   Barlow Condensed (display) + Inter (body) · Dark + Gold
   ============================================================ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --dark:        #0d1821;
  --dark2:       #162030;
  --dark3:       #1e2d40;
  --gold:        #c9950c;
  --gold2:       #e5b230;
  --gold3:       #f0c84a;
  --gold-dim:    rgba(201,149,12,.12);
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --text:        #1a2535;
  --text-mid:    #4a5568;
  --text-light:  #e8edf3;
  --border:      #e4e9ef;
  --border-dark: rgba(255,255,255,.07);
  /* Typography */
  --fd: 'Barlow Condensed', sans-serif;
  --fb: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Geometry */
  --r:      6px;
  --r-lg:   14px;
  --r-xl:   20px;
  --sh:     0 4px 18px rgba(0,0,0,.1);
  --sh-lg:  0 12px 48px rgba(0,0,0,.22);
  --mw:     1200px;
  --hh:     72px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold2); text-decoration: underline; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 14px 30px;
  border-radius: var(--r);
  font-family: var(--fb);
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .025em;
  transition: all .25s;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary, .btn-gold {
  background: var(--gold);
  color: #0d1821;
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(201,149,12,.28);
}
.btn-primary:hover, .btn-gold:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: #0d1821;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201,149,12,.42);
}
.btn-outline, .btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.32);
}
.btn-outline:hover, .btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.65);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--hh);
  border-bottom: 1px solid rgba(201,149,12,.16);
  box-shadow: 0 2px 20px rgba(0,0,0,.45);
}
.nav-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo {
  font-family: var(--fd);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--white); }
.logo span { color: var(--gold); }

.main-nav { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  font-family: var(--fb);
  color: rgba(255,255,255,.7);
  font-size: .83rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r);
  transition: all .2s;
  letter-spacing: .01em;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(255,255,255,.07);
  color: var(--white);
  text-decoration: none;
}
.nav-cta {
  background: var(--gold) !important;
  color: #0d1821 !important;
  font-weight: 700 !important;
  margin-left: 10px;
}
.nav-cta:hover {
  background: var(--gold2) !important;
  box-shadow: 0 2px 12px rgba(201,149,12,.4);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 96vh;
  min-height: 680px;
  max-height: 980px;
  overflow: hidden;
  background: var(--dark);
}
/* Dot grid texture */
.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
  z-index: 1;
}
/* Bottom fade */
.hero-slider::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(transparent, rgba(13,24,33,.95));
  pointer-events: none;
  z-index: 2;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 130px;
}
.slide.active { opacity: 1; }
.slide.active .slide-pill     { animation: heroUp .5s .05s both; }
.slide.active .slide-headline { animation: heroUp .6s .18s both; }
.slide.active .slide-sub      { animation: heroUp .6s .34s both; }
.slide.active .slide-btns     { animation: heroUp .6s .50s both; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(168deg, rgba(13,24,33,.9) 0%, rgba(13,24,33,.65) 52%, rgba(13,24,33,.82) 100%);
}
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  padding: 0 28px;
}
.slide-pill {
  display: inline-block;
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 18px;
  border: 1px solid rgba(201,149,12,.3);
  border-radius: 100px;
  background: rgba(201,149,12,.08);
  margin-bottom: 18px;
}
.slide-headline {
  font-family: var(--fd);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 900;
  color: var(--white);
  line-height: .97;
  margin-bottom: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.slide-headline em {
  color: var(--gold);
  font-style: normal;
  display: block;
}
.slide-sub {
  font-family: var(--fb);
  font-size: clamp(.92rem, 2vw, 1.12rem);
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 300;
}
.slide-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.slide-1 { background-color: #101d2b; }
.slide-2 { background-color: #0f1d18; }
.slide-3 { background-color: #111020; }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: all .25s;
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,149,12,.35);
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: all .3s;
  border: none;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark2);
  border-bottom: 2px solid var(--gold);
  color: rgba(255,255,255,.68);
  text-align: center;
  padding: 11px 24px;
  font-family: var(--fb);
  font-size: .8rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: .03em;
}
.trust-bar span {
  padding: 2px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-bar span + span { border-left: 1px solid rgba(255,255,255,.09); }
.trust-bar span::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: .9rem; }

/* ============================================================
   LAYOUT UTILS
   ============================================================ */
.page-wrap { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.section-title-light { color: var(--white); }
.section-desc {
  font-family: var(--fb);
  font-size: .98rem;
  color: var(--text-mid);
  max-width: 640px;
  line-height: 1.75;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-desc-light { color: rgba(255,255,255,.65); }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }
.text-center .section-label { justify-content: center; }

/* ============================================================
   STATS BAR  (gold background)
   ============================================================ */
.stats-bar {
  background: var(--gold);
}
.stats-row {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(13,24,33,.14);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--fd);
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 5px;
}
.stat-label {
  font-family: var(--fb);
  font-size: .75rem;
  font-weight: 600;
  color: rgba(13,24,33,.6);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES SECTION  (dark bg · glass cards)
   ============================================================ */
.services-section {
  padding: 96px 0;
  background: var(--dark);
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: rgba(255,255,255,.034);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  background: rgba(255,255,255,.06);
  transform: translateY(-6px);
  border-color: rgba(201,149,12,.3);
  box-shadow: 0 20px 56px rgba(0,0,0,.4), 0 0 0 1px rgba(201,149,12,.18);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,149,12,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: var(--fd);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
}
.service-card p {
  font-family: var(--fb);
  font-size: .88rem;
  color: rgba(255,255,255,.53);
  line-height: 1.65;
  margin-bottom: 22px;
}
.card-link {
  font-family: var(--fb);
  font-size: .8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s, color .2s;
}
.card-link::after { content: '→'; }
.card-link:hover { color: var(--gold2); gap: 10px; text-decoration: none; }

/* ============================================================
   SPLIT SECTION  (50/50)
   ============================================================ */
.split-section {
  padding: 104px 0;
  background: var(--white);
}
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--dark3) 0%, var(--dark) 100%);
}
.split-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.split-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--fb);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--r);
}
.split-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.78;
  font-size: .96rem;
}
.split-content p:last-of-type { margin-bottom: 0; }
.split-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 36px;
}
.split-bullets li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 500;
}
.split-bullets li:last-child { border-bottom: none; }
.split-bullets li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-section {
  padding: 96px 0;
  background: var(--dark2);
}
.areas-header {
  text-align: center;
  margin-bottom: 56px;
}
.areas-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}
.areas-row {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.areas-row-6 .area-chip { flex: 0 1 calc((100% - 60px) / 6); }
.areas-row-4 .area-chip { flex: 0 1 calc((100% - 60px) / 6); }
.area-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 10px 14px;
  text-decoration: none;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.area-chip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.area-chip:hover { background: rgba(201,149,12,.1); border-color: rgba(201,149,12,.35); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.25); text-decoration: none; }
.area-chip:hover::after { transform: scaleX(1); }
.area-chip-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(201,149,12,.12);
  border: 1px solid rgba(201,149,12,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
}
.area-chip:hover .area-chip-icon { background: rgba(201,149,12,.22); border-color: rgba(201,149,12,.45); }
.area-chip-text {}
.area-chip-name {
  display: block;
  font-family: var(--fd);
  font-size: .82rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.15;
  transition: color .25s;
}
.area-chip:hover .area-chip-name { color: var(--gold2); }
.area-chip-zip {
  display: block;
  font-family: var(--fb);
  font-size: .68rem;
  color: rgba(255,255,255,.3);
  letter-spacing: .04em;
  margin-top: 1px;
  transition: color .25s;
}
.area-chip:hover .area-chip-zip { color: rgba(201,149,12,.6); }
.areas-footer { text-align: center; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw-section {
  background: var(--white);
  padding: 96px 0;
}
.hiw-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.hiw-steps {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 0;
  border-top: 2px dashed rgba(201,149,12,.3);
  pointer-events: none;
  z-index: 0;
}
.hiw-step {
  text-align: center;
  padding: 0 36px;
  position: relative;
}
.hiw-num-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  background: var(--white);
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.hiw-step:hover .hiw-num-wrap {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201,149,12,.12);
}
.hiw-step:hover .hiw-num { color: var(--dark); }
.hiw-num {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .02em;
  line-height: 1;
  transition: color .3s;
}
.hiw-title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.hiw-desc {
  font-family: var(--fb);
  font-size: .91rem;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================================
   CUSTOMER REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--off-white);
  padding: 96px 0;
}
.reviews-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.reviews-grid {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  position: relative;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(201,149,12,.1);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,.08);
  border-color: rgba(201,149,12,.28);
  transform: translateY(-4px);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.review-text {
  font-family: var(--fb);
  font-size: .93rem;
  color: var(--text);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--fb);
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.review-detail {
  font-family: var(--fb);
  font-size: .78rem;
  color: var(--text-mid);
}

/* ============================================================
   WHY US  (dark background)
   ============================================================ */
.why-section {
  padding: 96px 0;
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-features {
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all .25s;
}
.why-feature:hover .why-feature-icon {
  background: rgba(201,149,12,.18);
  border-color: rgba(201,149,12,.4);
}
.why-feature-title {
  font-family: var(--fd);
  font-size: .98rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
}
.why-feature-desc {
  font-family: var(--fb);
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  line-height: 1.68;
  margin: 0;
}
.why-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 34px 36px;
}
.why-quote-text {
  font-family: var(--fb);
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.78;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 16px;
}
.why-quote-sub {
  font-family: var(--fb);
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.why-stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.why-stat-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all .25s;
}
.why-stat-card:hover {
  background: rgba(201,149,12,.09);
  border-color: rgba(201,149,12,.28);
}
.why-stat-num {
  font-family: var(--fd);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 6px;
}
.why-stat-label {
  font-family: var(--fb);
  font-size: .76rem;
  color: rgba(255,255,255,.42);
  line-height: 1.45;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-section {
  padding: 96px 0;
  background: var(--white);
}
.map-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}
.map-text p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; font-size: .96rem; }
.map-info-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 32px;
}
.map-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--fb);
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
}
.map-info-list li:last-child { border-bottom: none; }
.map-info-list li .icon { width: 24px; text-align: center; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.map-embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  height: 340px;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   FAQ ACCORDION  (homepage)
   ============================================================ */
.faq-section-main {
  padding: 96px 0;
  background: var(--dark);
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item-acc {
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255,255,255,.025);
  transition: background .25s, border-color .25s;
}
.faq-item-acc.open {
  background: rgba(255,255,255,.05);
  border-color: rgba(201,149,12,.32);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  color: var(--white);
  font-family: var(--fb);
  font-size: .96rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.faq-question:hover { color: var(--gold2); }
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(201,149,12,.09);
  border: 1px solid rgba(201,149,12,.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all .3s;
  line-height: 1;
}
.faq-item-acc.open .faq-icon {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-answer p {
  font-family: var(--fb);
  color: rgba(255,255,255,.6);
  font-size: .92rem;
  line-height: 1.78;
  padding: 0 28px 24px;
  margin: 0;
  font-weight: 300;
}
.faq-answer a { color: var(--gold2); }
.faq-answer a:hover { color: var(--gold3); }
.faq-item-acc.open .faq-answer { max-height: 400px; }

/* ============================================================
   CTA BAND  (homepage + inner pages)
   ============================================================ */
.cta-band {
  position: relative;
  padding: 100px 20px;
  background: var(--dark2);
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%,  rgba(201,149,12,.2) 0%, transparent 62%),
    radial-gradient(ellipse 55% 75% at 85% 108%,  rgba(201,149,12,.1) 0%, transparent 55%);
  pointer-events: none;
}
/* Inner-page CTA minimal */
.cta-band h2 {
  position: relative;
  font-family: var(--fd);
  color: var(--white);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-band p {
  position: relative;
  font-family: var(--fb);
  opacity: .72;
  max-width: 520px;
  margin: 0 auto 28px;
  font-size: .96rem;
}
/* Homepage extras */
.cta-band-inner { position: relative; z-index: 2; }
.cta-band-title {
  font-family: var(--fd);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: .97;
  margin-bottom: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.cta-band-title em { color: var(--gold); font-style: normal; display: block; }
.cta-band-sub {
  font-family: var(--fb);
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
  font-weight: 300;
}
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-phone-num {
  display: block;
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-decoration: none;
}
.cta-phone-num:hover { color: var(--gold2); text-decoration: none; }
.cta-trust-items {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  letter-spacing: .02em;
}
.cta-trust-item .check { color: var(--gold); font-weight: 800; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #070e17;
  color: rgba(255,255,255,.5);
  padding: 72px 28px 32px;
}
.footer-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-nap {
  font-family: var(--fb);
  font-size: .86rem;
  line-height: 2.0;
  color: rgba(255,255,255,.42);
}
.footer-col h4 {
  font-family: var(--fb);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,149,12,.18);
}
.footer-col a {
  display: block;
  font-family: var(--fb);
  color: rgba(255,255,255,.42);
  font-size: .86rem;
  margin-bottom: 10px;
  transition: color .2s;
  text-decoration: none;
}
.footer-col a:hover { color: var(--gold); text-decoration: none; }
.footer-bottom {
  max-width: var(--mw);
  margin: 26px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--fb);
  font-size: .77rem;
  color: rgba(255,255,255,.24);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 28px;
  font-family: var(--fb);
  font-size: .81rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-mid); }
.breadcrumb a:hover { color: var(--gold); text-decoration: none; }
.breadcrumb span { margin: 0 6px; opacity: .4; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%);
  color: var(--white);
  padding: 76px 28px 68px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,149,12,.11), transparent 65%);
  pointer-events: none;
}
.hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--fd);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: .025em;
  text-transform: uppercase;
}
.hero h1 span { color: var(--gold); }
.hero p {
  position: relative;
  z-index: 1;
  font-family: var(--fb);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
  font-weight: 300;
}
.hero-btns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   SERVICE PAGE COMPONENTS
   ============================================================ */
.sp-stats {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sp-stats-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sp-stat {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-stat:last-child { border-right: none; }
.sp-stat-num {
  font-family: var(--fd);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .03em;
  line-height: 1;
}
.sp-stat-label {
  font-family: var(--fb);
  font-size: .72rem;
  color: rgba(255,255,255,.42);
  letter-spacing: .04em;
  font-weight: 500;
  text-transform: uppercase;
}
.sp-main {
  background: var(--white);
  padding: 56px 0 80px;
}
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}
.sp-section {
  padding-bottom: 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.sp-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.sp-section > h2 {
  font-family: var(--fd);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 20px;
  line-height: 1.1;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.sp-callout {
  background: rgba(201,149,12,.06);
  border: 1px solid rgba(201,149,12,.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: 18px 22px;
  margin: 22px 0;
}
.sp-callout p { font-size: .92rem; font-weight: 500; color: var(--dark); margin: 0; line-height: 1.65; }
.sp-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.sp-icon-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.sp-icon-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.sp-icon-card:hover { box-shadow: var(--sh); transform: translateY(-2px); border-color: rgba(201,149,12,.2); }
.sp-icon-card:hover::after { transform: scaleX(1); }
.sp-icon-card-icon {
  width: 42px;
  height: 42px;
  background: var(--dark);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sp-icon-card h3 {
  font-family: var(--fd);
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.sp-icon-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.sp-steps { display: flex; flex-direction: column; margin: 24px 0; }
.sp-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.sp-step:last-child { border-bottom: none; }
.sp-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sp-step-body h3 { font-size: 1rem; color: var(--dark); margin-bottom: 5px; font-family: var(--fd); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.sp-step-body p { font-size: .89rem; color: var(--text-mid); line-height: 1.68; margin: 0; }
.sp-faq { margin-top: 0; }
.sp-faq > h2 { font-family: var(--fd); font-size: clamp(1.35rem, 2.8vw, 1.85rem); font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: .03em; margin-bottom: 24px; padding-left: 16px; border-left: 3px solid var(--gold); }
.sp-faq .faq-accordion { margin-top: 0; }
.sp-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--hh) + 24px);
}
.sp-cta-card {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.sp-cta-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.sp-cta-badge {
  display: inline-block;
  font-family: var(--fb);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.25);
  border-radius: 100px;
  padding: 4px 13px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.sp-cta-phone {
  display: block;
  font-family: var(--fd);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: .04em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.sp-cta-phone:hover { color: var(--gold2); text-decoration: none; }
.sp-cta-card p { font-family: var(--fb); font-size: .83rem; color: rgba(255,255,255,.52); line-height: 1.6; margin-bottom: 18px; position: relative; z-index: 1; }
.sp-cta-card .btn { position: relative; z-index: 1; width: 100%; display: flex; justify-content: center; }
.sp-cta-trust {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.sp-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fb);
  font-size: .75rem;
  color: rgba(255,255,255,.42);
}
.sp-price-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
}
.sp-price-card h4 {
  font-family: var(--fd);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  gap: 8px;
}
.sp-price-row:last-child { border-bottom: none; }
.sp-price-row span:first-child { font-family: var(--fb); font-size: .83rem; color: var(--text-mid); }
.sp-price-row span:last-child { font-family: var(--fd); font-size: .92rem; font-weight: 800; color: var(--gold); letter-spacing: .02em; white-space: nowrap; }
.sp-price-note { font-family: var(--fb); font-size: .76rem; color: var(--text-mid); margin-top: 10px; margin-bottom: 0; }
.sp-related {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 22px 22px;
}
.sp-related h4 { font-family: var(--fd); font-size: .88rem; font-weight: 800; color: var(--dark); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.sp-related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  font-family: var(--fb);
  font-size: .85rem;
  color: var(--text);
  font-weight: 500;
  transition: color .2s;
}
.sp-related-link:last-child { border-bottom: none; }
.sp-related-link:hover { color: var(--gold); text-decoration: none; }

/* ============================================================
   CONTENT / INNER PAGE
   ============================================================ */
.content-section { padding: 60px 0; }
.content-section + .content-section { border-top: 1px solid var(--border); }

h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: .025em;
  text-transform: uppercase;
}
h3 {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: .025em;
  text-transform: uppercase;
}
p { font-family: var(--fb); margin-bottom: 16px; line-height: 1.78; font-size: .96rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 22px; margin-bottom: 16px; }
li { font-family: var(--fb); margin-bottom: 6px; font-size: .96rem; line-height: 1.65; }

/* Cards grid — service pages */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s;
}
.card:hover { box-shadow: var(--sh); border-color: rgba(201,149,12,.22); transform: translateY(-2px); }
.card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.card a { font-weight: 600; font-size: .87rem; color: var(--gold); }
.card a:hover { color: var(--gold2); }

/* Area grid — location hub */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.area-grid a {
  display: block;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--fb);
  font-size: .89rem;
  font-weight: 500;
  transition: all .2s;
  color: var(--text);
}
.area-grid a:hover {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
  text-decoration: none;
}

/* FAQ — inner pages (static) */
.faq-section {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-top: 28px;
  border: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 8px; }
.faq-item p { color: var(--text-mid); font-size: .93rem; }

/* Location page highlight */
.loc-intro {
  background: rgba(201,149,12,.06);
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  border-radius: 0 var(--r) var(--r) 0;
  margin-bottom: 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split-inner { grid-template-columns: 1fr; gap: 48px; }
  .split-img-wrap { max-width: 560px; }
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-stat-cards { grid-template-columns: repeat(4, 1fr); }
  .map-inner { grid-template-columns: 1fr; gap: 48px; }
  .map-embed { height: 280px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid rgba(13,24,33,.14); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-row-6 .area-chip { flex: 0 1 calc((100% - 36px) / 4); }
  .areas-row-4 .area-chip { flex: 0 1 calc((100% - 36px) / 4); }
  .sp-layout { grid-template-columns: 1fr; }
  .sp-sidebar { position: static; }
  .sp-stats-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .sp-cards-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .sp-cards-3 { grid-template-columns: 1fr; }
  .sp-stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --hh: 62px; }
  .main-nav { gap: 1px; }
  .main-nav a { font-size: .75rem; padding: 6px 9px; }
  .hero-slider { height: 82vh; min-height: 560px; }
  .slide-headline { font-size: clamp(2.2rem, 7vw, 3.2rem); }
  .slide-pill { display: none; }
  .slider-arrow { width: 40px; height: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 48px; }
  .hiw-steps::before { display: none; }
  .hiw-step { padding: 0 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-stat-cards { grid-template-columns: 1fr 1fr; }
  .areas-row-6 { flex-wrap: wrap; }
  .areas-row-6 .area-chip { flex: 0 1 calc(50% - 6px); }
  .areas-row-4 { flex-wrap: wrap; }
  .areas-row-4 .area-chip { flex: 0 1 calc(50% - 6px); }
  .faq-section { padding: 24px 18px; }
  .trust-bar span { padding: 2px 11px; font-size: .76rem; }
  .hero { padding: 56px 20px 48px; }
  .page-wrap { padding: 0 18px; }
}

@media (max-width: 540px) {
  .trust-bar span + span { border-left: none; }
  .cta-phone-num { font-size: 2.4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .slide-btns { flex-direction: column; align-items: center; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .why-stat-cards { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SERVICE PAGE V2 — FULL WIDTH, NO SIDEBAR
   ============================================================ */

/* --- Intro split (image + text) --- */
.sp2-intro {
  padding: 88px 0;
  background: var(--white);
}
.sp2-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sp2-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--dark3) 0%, var(--dark) 100%);
}
.sp2-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sp2-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,24,33,.55) 100%);
  pointer-events: none;
}
.sp2-img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--r);
  z-index: 2;
}
.sp2-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(145deg, var(--dark3) 0%, var(--dark) 100%);
}
.sp2-img-placeholder-icon {
  width: 72px; height: 72px;
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.sp2-intro-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.78; font-size: .96rem; }
.sp2-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 34px;
}
.sp2-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.sp2-check-list li:last-child { border-bottom: none; }
.sp2-check-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(201,149,12,.12);
  border: 1px solid rgba(201,149,12,.3);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* --- Symptom / warning cards (dark bg) --- */
.sp2-symptoms {
  padding: 84px 0;
  background: var(--dark);
}
.sp2-symptoms-header {
  text-align: center;
  margin-bottom: 52px;
}
.sp2-sym-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.sp2-sym-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.sp2-sym-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.sp2-sym-card:hover { background: rgba(255,255,255,.07); border-color: rgba(201,149,12,.28); transform: translateY(-5px); box-shadow: 0 18px 52px rgba(0,0,0,.35); }
.sp2-sym-card:hover::after { transform: scaleX(1); }
.sp2-sym-icon {
  width: 52px; height: 52px;
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.sp2-sym-card h3 {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.sp2-sym-card p {
  font-family: var(--fb);
  font-size: .87rem;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  margin: 0;
}
.sp2-alert-strip {
  background: rgba(201,149,12,.08);
  border: 1px solid rgba(201,149,12,.22);
  border-radius: var(--r-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sp2-alert-strip svg { flex-shrink: 0; }
.sp2-alert-strip p { color: rgba(255,255,255,.72); font-size: .91rem; margin: 0; line-height: 1.65; font-weight: 400; }

/* --- Process steps (off-white bg) --- */
.sp2-process {
  padding: 88px 0;
  background: var(--off-white);
}
.sp2-process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 68px;
}
.sp2-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.sp2-steps-row::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  border-top: 2px dashed rgba(201,149,12,.3);
  pointer-events: none;
  z-index: 0;
}
.sp2-step {
  text-align: center;
  padding: 0 36px;
  position: relative;
}
.sp2-step-num-wrap {
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px;
  background: var(--off-white);
  position: relative;
  z-index: 1;
  transition: all .3s;
}
.sp2-step:hover .sp2-step-num-wrap { background: var(--gold); box-shadow: 0 0 0 8px rgba(201,149,12,.12); }
.sp2-step:hover .sp2-step-num { color: var(--dark); }
.sp2-step-num {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  transition: color .3s;
}
.sp2-step-title {
  font-family: var(--fd);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.sp2-step-desc {
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.72;
  max-width: 250px;
  margin: 0 auto;
}

/* --- Details section (text + widget column) --- */
.sp2-details {
  padding: 88px 0;
  background: var(--white);
}
.sp2-details-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 68px;
  align-items: start;
}
.sp2-details-text h2 {
  font-family: var(--fd);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 16px;
  line-height: 1.1;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.sp2-details-text p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.78; font-size: .95rem; }
.sp2-details-text p:last-child { margin-bottom: 0; }
.sp2-widget-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: calc(var(--hh) + 24px);
}

/* Pricing widget */
.sp2-price-widget {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.sp2-price-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.sp2-price-widget::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
}
.sp2-price-widget h4 {
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.sp2-p-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  gap: 8px;
  position: relative;
  z-index: 1;
}
.sp2-p-row:last-of-type { border-bottom: none; }
.sp2-p-row .label { font-family: var(--fb); font-size: .83rem; color: rgba(255,255,255,.5); }
.sp2-p-row .price { font-family: var(--fd); font-size: 1rem; font-weight: 800; color: var(--gold); letter-spacing: .02em; white-space: nowrap; }
.sp2-price-note { font-family: var(--fb); font-size: .75rem; color: rgba(255,255,255,.3); margin-top: 12px; margin-bottom: 0; position: relative; z-index: 1; }

/* Trust widget */
.sp2-trust-widget {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
}
.sp2-trust-widget h4 {
  font-family: var(--fd);
  font-size: .88rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sp2-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--fb);
  font-size: .86rem;
  color: var(--text);
  font-weight: 500;
}
.sp2-trust-item:last-child { border-bottom: none; }

/* Phone CTA widget */
.sp2-phone-widget {
  background: var(--gold);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  text-align: center;
}
.sp2-phone-widget .sp2-pw-label {
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(13,24,33,.65);
  margin-bottom: 8px;
  display: block;
}
.sp2-phone-widget .sp2-pw-num {
  display: block;
  font-family: var(--fd);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: .04em;
  text-decoration: none;
  margin-bottom: 14px;
  line-height: 1;
}
.sp2-phone-widget .sp2-pw-num:hover { text-decoration: none; color: var(--dark2); }
.sp2-phone-widget .btn-dark { width: 100%; display: flex; justify-content: center; font-size: .84rem; padding: 12px 20px; }

/* --- FAQ section (dark bg) --- */
.sp2-faq {
  padding: 84px 0;
  background: var(--dark2);
}
.sp2-faq-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}
.sp2-faq .faq-accordion { max-width: 860px; margin: 0 auto; }

/* --- Coverage footer section --- */
.sp2-coverage {
  padding: 60px 0;
  background: var(--white);
}
.sp2-coverage-inner { max-width: 860px; }
.sp2-coverage-inner h2 {
  font-family: var(--fd);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 16px;
  line-height: 1.1;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.sp2-coverage-inner p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.78; font-size: .95rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sp2-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .sp2-img-wrap { max-width: 560px; }
  .sp2-sym-grid { grid-template-columns: repeat(2, 1fr); }
  .sp2-steps-row { grid-template-columns: repeat(2, 1fr); gap: 52px; }
  .sp2-steps-row::before { display: none; }
  .sp2-details-grid { grid-template-columns: 1fr; }
  .sp2-widget-col { position: static; }
}
@media (max-width: 768px) {
  .sp2-sym-grid { grid-template-columns: 1fr; }
  .sp2-steps-row { grid-template-columns: 1fr; gap: 40px; }
  .sp2-step { padding: 0 16px; }
  .sp2-intro { padding: 60px 0; }
  .sp2-symptoms, .sp2-process, .sp2-details, .sp2-faq, .sp2-coverage { padding: 60px 0; }
}

/* ============================================================
   SERVICE PAGE V3 — PREMIUM FULL-WIDTH
   ============================================================ */

/* ── Hero ── */
.sv3-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 60%, #0a1520 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--hh) + 72px) 0 88px;
  overflow: hidden;
}
.sv3-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(201,149,12,.09) 0%, transparent 60%);
  pointer-events: none;
}
.sv3-hero-decor {
  position: absolute;
  right: -220px; top: -220px;
  width: 750px; height: 750px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,12,.05);
  pointer-events: none;
}
.sv3-hero-decor::after {
  content: '';
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,12,.04);
}
.sv3-hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
}
.sv3-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,12,.12);
  border: 1px solid rgba(201,149,12,.28);
  border-radius: 100px;
  padding: 7px 20px;
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 26px;
}
.sv3-hero-title {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 26px;
}
.sv3-hero-title span { color: var(--gold); }
.sv3-hero-sub {
  font-family: var(--fb);
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 560px;
}
.sv3-hero-stars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 38px;
}
.sv3-star-row { display: flex; gap: 3px; }
.sv3-star { color: var(--gold); font-size: 1rem; line-height: 1; }
.sv3-hero-stars-txt {
  font-family: var(--fb);
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.sv3-hero-stars-txt strong { color: rgba(255,255,255,.75); }
.sv3-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right — phone card */
.sv3-hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 38px 32px;
  backdrop-filter: blur(10px);
}
.sv3-hc-tag {
  display: block;
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 22px;
}
.sv3-hc-phone {
  display: block;
  font-family: var(--fd);
  font-size: 2.6rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: .03em;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color .2s;
}
.sv3-hc-phone:hover { color: var(--gold); text-decoration: none; }
.sv3-hc-avail {
  display: block;
  font-family: var(--fb);
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
}
.sv3-hc-divider { height: 1px; background: rgba(255,255,255,.08); margin: 0 0 22px; }
.sv3-hc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-family: var(--fb);
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.sv3-hc-row:last-child { border-bottom: none; }
.sv3-hc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  min-width: 7px;
}

/* ── Trust strip ── */
.sv3-trust {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.sv3-trust-inner {
  display: flex;
  align-items: stretch;
}
.sv3-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,.06);
  font-family: var(--fb);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.sv3-trust-item:last-child { border-right: none; }

/* ── Stats ── */
.sv3-stats { background: var(--off-white); padding: 64px 0; }
.sv3-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.sv3-stat {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
}
.sv3-stat:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.sv3-stat:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.sv3-stat-num {
  font-family: var(--fd);
  font-size: 3rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.sv3-stat-num em { color: var(--gold); font-style: normal; }
.sv3-stat-lbl {
  font-family: var(--fb);
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Intro: image + text ── */
.sv3-intro { padding: 100px 0; background: var(--white); }
.sv3-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
/* Image block */
.sv3-img-block { position: relative; }
.sv3-img-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--dark3) 0%, var(--dark) 100%);
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
}
.sv3-img-main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.sv3-img-placeholder-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.sv3-img-icon-wrap {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.22);
  display: flex; align-items: center; justify-content: center;
}
.sv3-img-ph-lbl {
  font-family: var(--fb);
  font-size: .72rem;
  color: rgba(255,255,255,.22);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sv3-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13,24,33,.72) 100%);
  pointer-events: none;
}
.sv3-img-caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
}
.sv3-img-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--r);
}
/* Floating accent card */
.sv3-float-card {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--dark);
  border: 1px solid rgba(201,149,12,.25);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  z-index: 3;
}
.sv3-fc-num {
  display: block;
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.sv3-fc-lbl {
  display: block;
  font-family: var(--fb);
  font-size: .66rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
/* Text side */
.sv3-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.sv3-kicker::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
}
.sv3-intro h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.sv3-intro-lead {
  font-size: .97rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.sv3-checklist {
  list-style: none; padding: 0;
  margin: 28px 0 36px;
  border-top: 1px solid var(--border);
}
.sv3-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}
.sv3-check-dot {
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  box-shadow: 0 3px 10px rgba(201,149,12,.3);
  flex-shrink: 0;
}

/* ── Features (dark) ── */
.sv3-features {
  padding: 96px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.sv3-features::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,12,.05);
  pointer-events: none;
}
.sv3-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 16px;
}
.sv3-eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--gold2);
}
.sv3-h2-light {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.sv3-sub-light {
  font-family: var(--fb);
  font-size: .96rem;
  color: rgba(255,255,255,.48);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 52px;
}
.sv3-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sv3-feat-card {
  background: rgba(255,255,255,.034);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.sv3-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.sv3-feat-card:hover { background: rgba(255,255,255,.06); transform: translateY(-3px); }
.sv3-feat-card:hover::before { transform: scaleX(1); }
.sv3-feat-num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--fd);
  font-size: 3.8rem;
  font-weight: 900;
  color: rgba(201,149,12,.1);
  line-height: 1;
  letter-spacing: -.03em;
  transition: color .3s;
  pointer-events: none;
}
.sv3-feat-card:hover .sv3-feat-num { color: rgba(201,149,12,.18); }
.sv3-feat-icon {
  width: 56px; height: 56px;
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.sv3-feat-title {
  font-family: var(--fd);
  font-size: 1.3rem; font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.sv3-feat-desc {
  font-family: var(--fb);
  font-size: .87rem; line-height: 1.7;
  color: rgba(255,255,255,.48);
}
/* Alert bar */
.sv3-alert {
  margin-top: 40px;
  background: rgba(201,149,12,.07);
  border: 1px solid rgba(201,149,12,.2);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.sv3-alert-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(201,149,12,.12);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.sv3-alert-body {
  font-family: var(--fb);
  font-size: .9rem; line-height: 1.72;
  color: rgba(255,255,255,.62);
}
.sv3-alert-body strong { color: var(--gold2); }

/* ── Process (off-white) ── */
.sv3-process { padding: 100px 0; background: var(--off-white); }
.sv3-h2 {
  font-family: var(--fd);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.sv3-sub {
  font-family: var(--fb);
  font-size: .96rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 64px;
}
.sv3-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.sv3-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 18px);
  opacity: .3;
  pointer-events: none;
  z-index: 0;
}
.sv3-step { text-align: center; position: relative; }
.sv3-step-ring {
  width: 104px; height: 104px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
  position: relative; z-index: 1;
  transition: all .35s;
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.sv3-step:hover .sv3-step-ring {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 8px 32px rgba(201,149,12,.28);
}
.sv3-step-n {
  font-family: var(--fd);
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold); line-height: 1;
  transition: color .35s;
}
.sv3-step:hover .sv3-step-n { color: var(--dark); }
.sv3-step-title {
  font-family: var(--fd);
  font-size: 1.2rem; font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.sv3-step-desc {
  font-family: var(--fb);
  font-size: .88rem; line-height: 1.72;
  color: var(--text-mid);
}

/* ── Pricing (white) ── */
.sv3-pricing { padding: 96px 0; background: var(--white); }
.sv3-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.sv3-price-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 22px;
  text-align: center;
  position: relative;
  transition: all .3s;
  background: var(--white);
}
.sv3-price-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,149,12,.12);
  transform: translateY(-4px);
}
.sv3-price-card.sv3-pc-featured {
  background: var(--dark);
  border-color: var(--gold);
}
.sv3-price-card.sv3-pc-featured::before {
  content: 'Most Common';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: var(--fb);
  font-size: .64rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.sv3-pc-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.sv3-pc-service {
  display: block;
  font-family: var(--fb);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 12px;
}
.sv3-price-card.sv3-pc-featured .sv3-pc-service { color: rgba(255,255,255,.45); }
.sv3-pc-price {
  font-family: var(--fd);
  font-size: 2.1rem; font-weight: 900;
  color: var(--dark); line-height: 1;
  margin-bottom: 6px; letter-spacing: -.02em;
}
.sv3-price-card.sv3-pc-featured .sv3-pc-price { color: var(--gold); }
.sv3-pc-note {
  font-family: var(--fb);
  font-size: .76rem;
  color: var(--text-mid);
}
.sv3-price-card.sv3-pc-featured .sv3-pc-note { color: rgba(255,255,255,.32); }
.sv3-pricing-foot {
  margin-top: 28px;
  text-align: center;
  font-family: var(--fb);
  font-size: .83rem;
  color: var(--text-mid);
}

/* ── Reviews (off-white) ── */
.sv3-reviews { padding: 96px 0; background: var(--off-white); }
.sv3-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.sv3-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: box-shadow .3s, transform .3s;
}
.sv3-review-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.sv3-review-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.sv3-review-star { color: var(--gold); font-size: .95rem; }
.sv3-review-body {
  font-family: var(--fb);
  font-size: .92rem; line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-top: 10px;
}
.sv3-review-body::before {
  content: '\201C';
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.45em;
  margin-right: 3px;
  font-style: normal;
  font-family: Georgia, serif;
}
.sv3-review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.sv3-avatar {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark3) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-size: 1.1rem; font-weight: 800;
  color: var(--gold);
}
.sv3-author-name {
  font-family: var(--fb);
  font-size: .88rem; font-weight: 700;
  color: var(--dark); display: block; margin-bottom: 2px;
}
.sv3-author-loc {
  font-family: var(--fb);
  font-size: .75rem;
  color: var(--text-mid); display: block;
}

/* ── FAQ (dark) ── */
.sv3-faq { padding: 96px 0; background: var(--dark2); }
.sv3-faq-inner { max-width: 820px; margin: 0 auto; }

/* ── Related services ── */
.sv3-related { padding: 72px 0; background: var(--white); border-top: 1px solid var(--border); }
.sv3-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.sv3-related-link {
  display: flex; align-items: center; gap: 18px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-decoration: none;
  color: var(--text);
  transition: all .3s;
}
.sv3-related-link:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201,149,12,.1);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--dark);
}
.sv3-rel-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: rgba(201,149,12,.08);
  border: 1px solid rgba(201,149,12,.18);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.sv3-rel-name {
  font-family: var(--fd);
  font-size: 1.1rem; font-weight: 800;
  color: var(--dark);
  display: block; margin-bottom: 4px;
}
.sv3-rel-sub {
  font-family: var(--fb);
  font-size: .76rem; color: var(--text-mid);
}

/* ── CTA (dark) ── */
.sv3-cta {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sv3-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,149,12,.1) 0%, transparent 65%);
  pointer-events: none;
}
.sv3-cta-eyebrow {
  display: block;
  font-family: var(--fb);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold2); margin-bottom: 18px;
}
.sv3-cta-title {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 900; color: #fff;
  line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 20px;
}
.sv3-cta-title em { color: var(--gold); font-style: normal; }
.sv3-cta-sub {
  font-family: var(--fb);
  font-size: .97rem; color: rgba(255,255,255,.45);
  line-height: 1.72; max-width: 520px;
  margin: 0 auto 40px;
}
.sv3-cta-phone {
  display: block;
  font-family: var(--fd);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900; color: var(--gold);
  letter-spacing: .04em;
  text-decoration: none; margin-bottom: 32px;
  transition: color .2s; position: relative; z-index: 1;
}
.sv3-cta-phone:hover { color: var(--gold2); text-decoration: none; }
.sv3-cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Responsive sv3 ── */
@media (max-width: 1100px) {
  .sv3-hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .sv3-hero-card { max-width: 480px; }
  .sv3-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .sv3-feat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .sv3-intro-grid { gap: 52px; }
}
@media (max-width: 900px) {
  .sv3-intro-grid { grid-template-columns: 1fr; }
  .sv3-float-card { display: none; }
  .sv3-reviews-grid { grid-template-columns: 1fr 1fr; }
  .sv3-related-grid { grid-template-columns: 1fr 1fr; }
  .sv3-steps { grid-template-columns: 1fr 1fr; gap: 36px; }
  .sv3-steps::before { display: none; }
}
@media (max-width: 768px) {
  .sv3-hero { min-height: auto; padding: calc(var(--hh) + 48px) 0 64px; }
  .sv3-feat-grid { grid-template-columns: 1fr; }
  .sv3-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .sv3-stat:first-child { border-radius: var(--r-lg) 0 0 0; }
  .sv3-stat:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
  .sv3-stat:nth-child(3) { border-radius: 0 0 0 var(--r-lg); }
  .sv3-stat:last-child { border-radius: 0 0 var(--r-lg) 0; }
  .sv3-pricing-grid { grid-template-columns: 1fr 1fr; }
  .sv3-reviews-grid { grid-template-columns: 1fr; }
  .sv3-related-grid { grid-template-columns: 1fr; }
  .sv3-steps { grid-template-columns: 1fr; gap: 36px; }
  .sv3-trust-inner { flex-wrap: wrap; }
  .sv3-trust-item { flex: 0 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
}
@media (max-width: 540px) {
  .sv3-pricing-grid { grid-template-columns: 1fr; }
  .sv3-trust-item { flex: 0 1 100%; }
  .sv3-cta-phone { font-size: 2.4rem; }
  .sv3-hero-btns { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   LA-* LOCATION AREA PAGE SYSTEM
   ============================================================ */

/* ============================================================
   LOCAL AREA PAGES — Full Professional Redesign
   ============================================================ */

/* ── HERO ── */
.la-hero {
  background: var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 68px 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,149,12,.18);
}
/* Dark photo overlay + dot grid texture */
.la-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(13,24,33,.78);
  background-image: radial-gradient(rgba(255,255,255,.038) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
/* Gold glow top-right */
.la-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,149,12,.13) 0%, transparent 62%);
  pointer-events: none;
}
.la-hero-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.la-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  letter-spacing: .09em;
}
.la-breadcrumb a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.la-breadcrumb a:hover { color: var(--gold2); }
.la-breadcrumb span { color: rgba(255,255,255,.22); }
.la-zip-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.25);
  color: var(--gold2);
  font-family: var(--fb);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.la-zip-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
  animation: la-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes la-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,.08); }
}
.la-hero h1 {
  font-family: var(--fd);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.la-hero h1 span {
  color: var(--gold2);
  display: block;
  font-size: .52em;
  letter-spacing: .16em;
  margin-bottom: 6px;
  font-weight: 700;
  text-transform: uppercase;
}
.la-hero-sub {
  font-size: .96rem;
  color: rgba(255,255,255,.58);
  line-height: 1.78;
  margin-bottom: 34px;
  max-width: 510px;
}
.la-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CALL PANEL ── */
.la-call-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-xl);
  padding: 30px;
  backdrop-filter: blur(10px);
}
.la-cp-label {
  font-family: var(--fb);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.la-cp-label::before {
  content: '';
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.18);
  animation: la-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
.la-cp-phone {
  font-family: var(--fd);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
  line-height: 1;
  letter-spacing: .03em;
}
.la-cp-phone:hover { color: var(--gold2); text-decoration: none; }
.la-cp-avail { font-size: .77rem; color: rgba(255,255,255,.35); margin-bottom: 22px; }
.la-cp-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 16px; }
.la-cp-row { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.la-cp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold2); flex-shrink: 0; opacity: .7; }
.la-cp-row span { font-size: .83rem; color: rgba(255,255,255,.58); line-height: 1.4; }

/* ── TRUST BAR ── */
.la-trust {
  background: var(--gold);
  border-bottom: 2px solid rgba(0,0,0,.1);
}
.la-trust-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.la-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: .01em;
  border-right: 1px solid rgba(0,0,0,.1);
  white-space: nowrap;
}
.la-trust-item:last-child { border-right: none; }
.la-trust-icon { width: 16px; height: 16px; color: rgba(0,0,0,.6); flex-shrink: 0; }
.la-trust-stars { font-size: .9rem; letter-spacing: .05em; color: var(--dark); }

/* ── DATA STRIP ── */
.la-strip { background: var(--dark2); border-bottom: 2px solid rgba(201,149,12,.14); }
.la-strip-inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.la-strip-item {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 14px;
}
.la-strip-item:last-child { border-right: none; }
.la-strip-icon {
  width: 40px; height: 40px;
  background: rgba(201,149,12,.1);
  border: 1px solid rgba(201,149,12,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold2);
}
.la-strip-txt strong {
  display: block;
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: .02em;
}
.la-strip-txt span { font-size: .68rem; color: rgba(255,255,255,.33); text-transform: uppercase; letter-spacing: .09em; }

/* Editorial — split layout (text + services panel) */
.la-editorial { padding: 80px 0; background: var(--white); }
.la-editorial-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}
.la-editorial-body h2 {
  font-family: var(--fd);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.25;
}
.la-editorial-body p { font-size: .97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 18px; }
.la-editorial-body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.la-editorial-body a:hover { color: var(--dark); }
/* Right services panel */
.la-profile-panel {
  background: var(--dark);
  border-radius: var(--r-xl);
  padding: 26px;
  position: sticky;
  top: calc(var(--hh) + 16px);
}
.la-pp-head {
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.la-pp-svc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  text-decoration: none;
  transition: color .2s;
  color: rgba(255,255,255,.65);
  font-size: .84rem;
  font-weight: 500;
}
.la-pp-svc:last-of-type { border-bottom: none; }
.la-pp-svc::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: .45;
  transition: opacity .2s;
}
.la-pp-svc:hover { color: var(--gold2); text-decoration: none; }
.la-pp-svc:hover::before { opacity: 1; }
.la-pp-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.la-pp-avail {
  font-size: .71rem;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ── STATS BAR ── */
.la-stats { padding: 0; background: var(--dark); border-top: 3px solid var(--gold); }
.la-stats-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.la-stat-item {
  text-align: center;
  padding: 44px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.la-stat-item:last-child { border-right: none; }
.la-stat-num {
  font-family: var(--fd);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.la-stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.5;
  font-weight: 500;
}

/* ── PRICING ── */
.la-pricing { padding: 88px 0; background: var(--off-white); }
.la-pricing-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; text-align: center; }
.la-pricing-inner .la-svc-eyebrow { margin-bottom: 8px; }
.la-pricing-inner .la-svc-h2 { margin-bottom: 52px; }
.la-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.la-price-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.la-price-card:hover { box-shadow: 0 12px 44px rgba(0,0,0,.1); border-color: rgba(201,149,12,.4); transform: translateY(-4px); }
.la-price-card--featured { border-color: var(--gold); border-width: 2px; background: var(--dark); }
.la-price-badge {
  display: inline-block;
  font-family: var(--fb);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.la-price-name {
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.la-price-card--featured .la-price-name { color: #fff; }
.la-price-range {
  font-family: var(--fd);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.la-price-desc { font-size: .84rem; color: var(--text-mid); line-height: 1.65; }
.la-price-card--featured .la-price-desc { color: rgba(255,255,255,.48); }
.la-pricing-note { font-size: .82rem; color: var(--text-mid); max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ── WHY US ── */
.la-why { padding: 88px 0; background: var(--dark); }
.la-why-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.la-why-head { text-align: center; margin-bottom: 52px; }
.la-why-head .la-svc-h2 { color: #fff; }
.la-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.la-why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 34px 28px;
  transition: background .25s, border-color .25s, transform .25s;
}
.la-why-card:hover { background: rgba(201,149,12,.07); border-color: rgba(201,149,12,.28); transform: translateY(-4px); }
.la-why-icon {
  width: 52px; height: 52px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,149,12,.2);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold2);
}
.la-why-title { font-family: var(--fd); font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.2; letter-spacing: .02em; }
.la-why-text { font-size: .86rem; color: rgba(255,255,255,.48); line-height: 1.7; }

/* ── PROCESS STEPS ── */
.la-process { padding: 88px 0; background: var(--white); }
.la-process-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.la-process-head { text-align: center; margin-bottom: 60px; }
.la-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.la-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(12.5% + 25px);
  right: calc(12.5% + 25px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,149,12,.3) 50%, var(--gold) 100%);
  opacity: .35;
}
.la-step { text-align: center; padding: 0 16px; position: relative; }
.la-step-num {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fd);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(201,149,12,.12), 0 4px 18px rgba(201,149,12,.25);
}
.la-step-title { font-family: var(--fd); font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 8px; letter-spacing: .025em; text-transform: uppercase; }
.la-step-text { font-size: .84rem; color: var(--text-mid); line-height: 1.65; }

/* ── SERVICES ── */
.la-services { padding: 88px 0; background: var(--off-white); }
.la-svc-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.la-svc-head { text-align: center; margin-bottom: 52px; }
.la-svc-eyebrow { font-family: var(--fb); font-size: .69rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.la-svc-h2 { font-family: var(--fd); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 900; color: var(--text); line-height: 1.15; letter-spacing: .025em; text-transform: uppercase; }
.la-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.la-svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px 24px;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.la-svc-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.09); border-color: var(--gold); transform: translateY(-3px); }
.la-svc-icon {
  width: 46px; height: 46px;
  background: var(--dark);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--gold2);
  flex-shrink: 0;
}
.la-svc-icon svg { width: 20px; height: 20px; }
.la-svc-name { font-family: var(--fd); font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.1; letter-spacing: .025em; text-transform: uppercase; }
.la-svc-desc { font-size: .86rem; color: var(--text-mid); line-height: 1.68; margin-bottom: 18px; flex: 1; }
.la-svc-link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s, color .2s;
}
.la-svc-link:hover { color: var(--dark); gap: 8px; text-decoration: none; }
.la-svc-link::after { content: '→'; }

/* ── REVIEWS ── */
.la-reviews { padding: 88px 0; background: var(--dark); }
.la-reviews-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; text-align: center; }
.la-reviews-inner .la-svc-h2 { color: #fff; margin-bottom: 52px; }
.la-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 36px; text-align: left; }
.la-review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 30px 26px;
  position: relative;
}
.la-review-card::before {
  content: '\201C';
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}
.la-review-stars { color: var(--gold); font-size: 1rem; letter-spacing: .08em; margin-bottom: 16px; }
.la-review-text { font-size: .87rem; color: rgba(255,255,255,.62); line-height: 1.78; margin-bottom: 18px; font-style: italic; }
.la-review-author { font-size: .76rem; font-weight: 700; color: var(--gold2); letter-spacing: .05em; }
.la-reviews-source { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: .81rem; color: rgba(255,255,255,.3); }
.la-reviews-aggregate { color: var(--gold2); font-weight: 700; }

/* ── FAQ ── */
.la-faq { padding: 88px 0; background: var(--white); }
.la-faq-inner { max-width: 900px; margin: 0 auto; padding: 0 28px; }
.la-faq-head { text-align: center; margin-bottom: 44px; }
.la-faq-item {
  background: var(--off-white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.la-faq-item.open { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,149,12,.1); }
.la-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--fd);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  user-select: none;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  letter-spacing: .02em;
}
.la-faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.la-faq-icon svg { width: 12px; height: 12px; transition: transform .25s; color: var(--text-mid); }
.la-faq-item.open .la-faq-icon { background: var(--gold); border-color: var(--gold); }
.la-faq-item.open .la-faq-icon svg { transform: rotate(45deg); color: var(--dark); }
.la-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.la-faq-item.open .la-faq-a { max-height: 600px; }
.la-faq-a-inner { padding: 0 24px 22px; font-size: .94rem; color: var(--text-mid); line-height: 1.82; }

/* ── NEARBY ── */
.la-nearby { padding: 64px 0; background: var(--dark2); }
.la-nearby-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.la-nearby-h { font-family: var(--fd); font-size: 1.35rem; font-weight: 900; color: #fff; margin-bottom: 22px; text-transform: uppercase; letter-spacing: .04em; }
.la-nearby-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.la-nearby-pill, .la-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 40px;
  color: rgba(255,255,255,.7);
  font-size: .86rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.la-nearby-pill:hover, .la-pill:hover { background: rgba(201,149,12,.14); border-color: rgba(201,149,12,.4); color: var(--gold2); text-decoration: none; }
.la-nearby-pill::before, .la-pill::before { content: '→'; font-size: .72rem; color: var(--gold2); opacity: .7; }
.la-all-areas { margin-top: 22px; }
.la-all-areas a { font-size: .86rem; color: var(--gold2); text-decoration: underline; text-underline-offset: 3px; }
.la-all-areas a:hover { color: var(--gold3); }

/* ── CTA BAND ── */
.la-cta {
  background: var(--dark);
  border-top: 3px solid var(--gold);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.la-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.la-cta::after {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,149,12,.14) 0%, transparent 65%);
  pointer-events: none;
}
.la-cta-inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.la-cta-eyebrow { font-family: var(--fb); font-size: .69rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.la-cta h2 { font-family: var(--fd); font-size: clamp(1.9rem, 3.5vw, 3.2rem); font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .03em; }
.la-cta p { font-size: .95rem; color: rgba(255,255,255,.48); max-width: 460px; line-height: 1.72; }
.la-cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; flex-shrink: 0; }
.la-cta-phone {
  font-family: var(--fd);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold2);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: .03em;
  transition: color .2s;
}
.la-cta-phone:hover { color: var(--gold3); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .la-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .la-call-panel { max-width: 440px; }
  .la-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .la-strip-item:nth-child(2) { border-right: none; }
  .la-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .la-stat-item:nth-child(2) { border-right: none; }
  .la-why-grid { grid-template-columns: repeat(2, 1fr); }
  .la-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .la-steps::before { display: none; }
  .la-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .la-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .la-reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .la-cta-inner { grid-template-columns: 1fr; }
  .la-cta-actions { align-items: flex-start; }
}
@media (max-width: 860px) {
  .la-editorial-inner { grid-template-columns: 1fr; }
  .la-profile-panel { position: static; }
}
@media (max-width: 640px) {
  .la-hero { padding: 46px 0 40px; }
  .la-trust-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
  .la-trust-item { flex-shrink: 0; padding: 12px 16px; }
  .la-strip-inner { grid-template-columns: 1fr 1fr; }
  .la-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .la-stat-item:nth-child(even) { border-right: none; }
  .la-why-grid { grid-template-columns: 1fr; }
  .la-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .la-svc-grid { grid-template-columns: 1fr; }
  .la-reviews-grid { grid-template-columns: 1fr; max-width: 100%; }
  .la-editorial, .la-services, .la-faq, .la-why, .la-pricing, .la-reviews, .la-process { padding: 60px 0; }
  .la-nearby { padding: 52px 0; }
  .la-cta { padding: 58px 0; }
  .la-cta-phone { font-size: 2.1rem; }
  .la-hero-btns { flex-direction: column; }
}

/* Blog */
.blog-hero { background: var(--dark); padding: 72px 0 56px; }
.blog-hero-inner { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }
.blog-eyebrow { font-family: var(--fb); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.blog-hero h1 { font-family: var(--fd); font-size: clamp(2.2rem,4vw,3.4rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 14px; }
.blog-hero p { font-size: 1rem; color: rgba(255,255,255,.65); max-width: 540px; }
.blog-grid-section { padding: 72px 0; background: var(--off-white); }
.blog-grid-inner { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: box-shadow .2s, border-color .2s;
}
.blog-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.09); border-color: var(--gold); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; background: var(--dark3); display: block; }
.blog-card-img-placeholder { width: 100%; height: 180px; background: var(--dark3); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.blog-card-body { padding: 22px 20px 24px; }
.blog-card-cat { font-family: var(--fb); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-card-title { font-family: var(--fd); font-size: 1.15rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 10px; }
.blog-card-excerpt { font-size: .84rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.blog-card-meta { font-size: .75rem; color: var(--text-mid); display: flex; gap: 12px; align-items: center; border-top: 1px solid var(--border); padding-top: 12px; }
.blog-card-link { font-size: .78rem; font-weight: 700; color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: .05em; }
/* Blog single */
.blog-single-hero { background: var(--dark); padding: 72px 0 52px; }
.blog-single-inner { max-width: var(--mw); margin: 0 auto; padding: 0 24px; }
.blog-single-cat { font-family: var(--fb); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.blog-single-title { font-family: var(--fd); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; }
.blog-single-meta { font-size: .82rem; color: rgba(255,255,255,.5); display: flex; gap: 18px; align-items: center; }
.blog-content { padding: 72px 0; background: #fff; }
.blog-content-inner { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.blog-content-inner h2 { font-family: var(--fd); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; color: var(--text); margin: 36px 0 14px; line-height: 1.25; }
.blog-content-inner h3 { font-family: var(--fd); font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.blog-content-inner p { font-size: .97rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 20px; }
.blog-content-inner a { color: var(--gold); text-underline-offset: 3px; }
.blog-content-inner ul, .blog-content-inner ol { padding-left: 24px; margin-bottom: 20px; }
.blog-content-inner li { font-size: .95rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.blog-content-inner blockquote { border-left: 4px solid var(--gold); padding: 14px 20px; background: var(--off-white); border-radius: 0 var(--r) var(--r) 0; margin: 28px 0; font-style: italic; color: var(--text); }
.blog-post-cta { background: var(--dark); padding: 60px 0; }
.blog-post-cta-inner { max-width: 780px; margin: 0 auto; padding: 0 24px; display: flex; gap: 32px; align-items: center; justify-content: space-between; }
.blog-post-cta h3 { font-family: var(--fd); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 8px; }
.blog-post-cta p { font-size: .9rem; color: rgba(255,255,255,.6); }
.blog-post-cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; flex-shrink: 0; }
@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post-cta-inner { flex-direction: column; align-items: flex-start; }
  .blog-post-cta-actions { align-items: flex-start; }
}
@media (max-width: 540px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-single-meta { flex-wrap: wrap; gap: 10px; }
}

/* ============================================================
   EDITORIAL — responsive
   ============================================================ */
@media (max-width: 860px) {
  .la-editorial-inner { grid-template-columns: 1fr; }
  .la-profile-panel { position: static; }
}

/* ============================================================
   LOCATION HUB — new visual design
   ============================================================ */

/* Services strip */
.loc-services { padding: 80px 0; background: var(--dark); }
.loc-services-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; text-align: center; }
.loc-services-inner .la-svc-eyebrow { margin-bottom: 8px; }
.loc-services-inner .la-svc-h2 { color: var(--white); margin-bottom: 46px; }
.loc-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.loc-svc-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-decoration: none;
  transition: all .3s;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loc-svc-item:hover {
  background: rgba(201,149,12,.08);
  border-color: rgba(201,149,12,.35);
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}
.loc-svc-icon {
  width: 44px; height: 44px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,149,12,.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.loc-svc-icon svg { width: 20px; height: 20px; }
.loc-svc-name {
  font-family: var(--fd);
  font-size: 1.12rem; font-weight: 800;
  color: var(--white);
  letter-spacing: .04em; text-transform: uppercase; line-height: 1.1;
}
.loc-svc-desc { font-size: .81rem; color: rgba(255,255,255,.42); line-height: 1.55; flex: 1; }
.loc-svc-arrow { font-size: .75rem; font-weight: 700; color: var(--gold); letter-spacing: .05em; text-transform: uppercase; margin-top: auto; }

/* Zone sections */
.loc-zone { padding: 72px 0; background: var(--white); }
.loc-zone--alt { background: var(--off-white); }
.loc-zone-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.loc-zone-head {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 36px; padding-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.loc-zone-compass {
  font-family: var(--fd); font-size: 3.8rem; font-weight: 900;
  color: var(--gold); line-height: 1; opacity: .18; flex-shrink: 0; user-select: none;
}
.loc-zone-label {
  font-family: var(--fb); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px;
}
.loc-zone-h2 {
  font-family: var(--fd); font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 900;
  color: var(--text); letter-spacing: .03em; text-transform: uppercase; line-height: 1.05; margin-bottom: 7px;
}
.loc-zone-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.65; margin: 0; }
.loc-area-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.loc-area-card {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 14px 16px;
  text-decoration: none; transition: all .22s; gap: 10px;
}
.loc-zone--alt .loc-area-card { background: var(--white); }
.loc-area-card:hover {
  border-color: var(--gold); box-shadow: 0 5px 18px rgba(0,0,0,.08);
  transform: translateY(-2px); text-decoration: none;
}
.loc-area-card-left { flex: 1; min-width: 0; }
.loc-area-name {
  font-family: var(--fb); font-size: .9rem; font-weight: 700; color: var(--text);
  line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.loc-area-card:hover .loc-area-name { color: var(--dark); }
.loc-area-zip { font-size: .72rem; color: var(--text-mid); margin-top: 2px; }
.loc-pipe-badge {
  font-size: .62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}
.loc-pipe-badge--clay { background: rgba(201,149,12,.1); color: var(--gold); border: 1px solid rgba(201,149,12,.25); }
.loc-pipe-badge--iron { background: rgba(30,45,64,.07); color: #3a526b; border: 1px solid rgba(30,45,64,.16); }
.loc-pipe-badge--pvc  { background: rgba(16,185,129,.07); color: #047857; border: 1px solid rgba(16,185,129,.18); }
.loc-area-arrow { font-size: .9rem; color: var(--gold); font-weight: 700; flex-shrink: 0; transition: transform .2s; }
.loc-area-card:hover .loc-area-arrow { transform: translateX(3px); }

/* Pipe era explainer */
.loc-eras { padding: 80px 0; background: var(--dark); }
.loc-eras-inner { max-width: var(--mw); margin: 0 auto; padding: 0 28px; text-align: center; }
.loc-eras-inner .la-svc-h2 { color: var(--white); margin-bottom: 46px; }
.loc-era-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.loc-era-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg); padding: 30px 26px;
}
.loc-era-badge {
  display: inline-block; font-family: var(--fb); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 5px 13px; border-radius: 100px; margin-bottom: 16px;
}
.loc-era-card h3 {
  font-family: var(--fd); font-size: 1.25rem; font-weight: 800; color: var(--white);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; line-height: 1.15;
}
.loc-era-card > p { font-size: .82rem; color: rgba(255,255,255,.38); margin-bottom: 18px; line-height: 1.55; }
.loc-era-list { list-style: none; padding: 0; margin: 0; }
.loc-era-list li {
  font-size: .83rem; color: rgba(255,255,255,.58); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; margin: 0;
}
.loc-era-list li:last-child { border-bottom: none; }
.loc-era-list li::before { content: '→'; color: var(--gold); font-size: .78rem; flex-shrink: 0; margin-top: 1px; font-weight: 700; }

/* Location hub responsive */
@media (max-width: 960px) {
  .loc-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-era-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .loc-svc-grid { grid-template-columns: 1fr; }
  .loc-era-cards { grid-template-columns: 1fr; }
  .loc-area-cards { grid-template-columns: 1fr 1fr; }
  .loc-zone-compass { display: none; }
}
@media (max-width: 400px) {
  .loc-area-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Internal-linking module: sibling-coverage + area pills
   ============================================================ */
.sv3-siblings {
  background: var(--off-white);
  padding: 84px 0;
}
.sv3-siblings .sv3-h2 { color: var(--text); }
.sv3-siblings .sv3-sub {
  color: var(--text-mid);
  max-width: 760px;
  margin: 12px 0 32px;
  font-size: 1.02rem;
  line-height: 1.6;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
.area-pill {
  display: inline-flex;
  flex-direction: column;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--fb);
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.area-pill strong {
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -.01em;
}
.area-pill small {
  display: block;
  font-size: .78rem;
  color: var(--text-mid);
  margin-top: 2px;
  font-weight: 400;
}
.area-pill:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-1px);
  text-decoration: none;
}
@media (max-width: 720px) {
  .sv3-siblings { padding: 56px 0; }
  .area-pill { padding: 12px 16px; }
  .area-pill strong { font-size: .9rem; }
}

/* ============================================================
   Mobile drawer — the existing .hamburger + .main-nav.open JS
   was wired up but had no CSS. Activate at ≤960px.
   ============================================================ */
.hamburger { display: none; }
@media (max-width: 960px) {
  /* Page-level: never allow horizontal scroll on mobile. */
  html, body { overflow-x: hidden; }

  /* On sv3 pages the About link + Call Now button live as direct children of
     .nav-inner (siblings of .main-nav), so the .main-nav opacity-trick alone
     doesn't hide them. Hide every direct child of .nav-inner that isn't the
     logo, the nav, or the hamburger. */
  .nav-inner > a:not(.logo),
  .nav-inner > .btn,
  .nav-inner > .nav-cta { display: none; }

  .nav-inner { padding: 0 16px; gap: 12px; }
  .logo { flex: 1 1 auto; min-width: 0; }

  .hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex: 0 0 40px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--r);
    cursor: pointer;
    margin-left: auto;
    order: 2;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform .2s ease, opacity .2s ease;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px;
    box-shadow: var(--sh-lg);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
    z-index: 50;
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
    color: var(--text);
    background: transparent;
  }
  .main-nav a:hover, .main-nav a.active {
    color: var(--gold);
    background: var(--gold-dim);
  }
  .main-nav a.nav-cta {
    margin-top: 8px;
    padding: 14px;
    background: var(--gold);
    color: var(--dark);
    border-radius: var(--r);
    border-bottom: none;
    text-align: center;
    font-weight: 700;
  }
  .main-nav a:last-child { border-bottom: none; }
  .nav-inner { position: relative; flex-wrap: nowrap; }
}
