/* =========================================================
   NEVADA LEAK DETECTION v5
   Locked palette · custom SVG icons · zero emojis
   ========================================================= */
:root {
  /* Brand */
  --navy:        #0F1F3B;
  --navy-mid:    #142A4D;
  --navy-deep:   #0A1628;
  --sky:         #7BAFCC;
  --sky-light:   #A8C8DA;
  --ocean:       #0E7C9C;
  --ocean-dark:  #095770;
  /* Neutrals */
  --cream:       #F5F1E8;
  --soft:        #FBFAF6;
  --white:       #FFFFFF;
  --gray-100:    #E5E7EB;
  --gray-200:    #D1D5DB;
  --gray-400:    #6B7280;
  --gray-600:    #475569;
  --charcoal:    #1E293B;
  /* Accent */
  --orange:      #E66B2C;
  --orange-dark: #C9551A;
  --emergency:   #B91C1C;
  --gold:        #C9A03A;
  /* Util */
  --shadow-sm:   0 1px 2px rgba(15,31,59,.06), 0 1px 3px rgba(15,31,59,.08);
  --shadow:      0 4px 14px rgba(15,31,59,.10);
  --shadow-lg:   0 22px 50px rgba(15,31,59,.22), 0 6px 14px rgba(15,31,59,.08);
  --radius:      4px;
  --radius-lg:   10px;
  --t:           all .25s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--charcoal); background: var(--white);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1,h2,h3,h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700; line-height: 1.05; color: var(--navy);
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.8rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { line-height: 1.7; color: var(--gray-600); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  display: inline-block;
  font-size: .76rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ocean);
  margin-bottom: 14px; font-family: 'Inter', sans-serif;
}
.eyebrow-light { color: var(--sky); }

/* SVG icon helper */
.icon-svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; vertical-align: middle; }
.icon-svg.lg { width: 24px; height: 24px; }
.icon-svg.xl { width: 28px; height: 28px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: .94rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: var(--radius);
  cursor: pointer; transition: var(--t);
  white-space: nowrap;
}
.btn-orange { background: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(230,107,44,.32); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(230,107,44,.4); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-ocean { background: var(--ocean); color: var(--white); }
.btn-ocean:hover { background: var(--ocean-dark); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-ghost:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-sm { padding: 10px 18px; font-size: .8rem; }
.btn-lg { padding: 19px 34px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* =========================================================
   UTILITY BAR
   ========================================================= */
.util-bar {
  background: var(--navy-deep); color: rgba(255,255,255,.7);
  font-size: .8rem; padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.util-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.util-left { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.util-item { display: inline-flex; align-items: center; gap: 7px; }
.util-item .icon-svg { width: 14px; height: 14px; stroke: var(--sky); }
.util-right { display: flex; gap: 8px; align-items: center; }
.util-social {
  display: flex; gap: 6px; align-items: center; padding-left: 8px;
  border-left: 1px solid rgba(255,255,255,.1); margin-left: 4px;
}
.util-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  display: inline-flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.util-social a:hover { background: var(--ocean); color: var(--white); }
.util-social a svg { width: 12px; height: 12px; fill: currentColor; }
.util-right > a.util-email { color: rgba(255,255,255,.7); display: inline-flex; align-items: center; gap: 6px; transition: var(--t); font-weight: 500; }
.util-right > a.util-email:hover { color: var(--sky-light); }
.util-rating { color: var(--gold); letter-spacing: 2px; }

/* =========================================================
   HEADER
   ========================================================= */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
}
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 30px;
}
.logo { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.logo img { width: 76px; height: 70px; object-fit: contain; transition: var(--t); }
.logo:hover img { transform: scale(1.03); }
.logo-text {
  font-family: 'Oswald', sans-serif; line-height: 1.05;
  border-left: 2px solid var(--gray-100); padding-left: 14px;
}
.logo-text .name { display: block; font-size: 1rem; color: var(--navy); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.logo-text .sub { display: block; font-size: .66rem; color: var(--ocean); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin-top: 3px; }

nav.main { display: flex; align-items: center; gap: 0; }
nav.main > a, nav.main > .dd > a {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal); font-weight: 600; font-size: .88rem;
  padding: 10px 11px; border-radius: var(--radius);
  position: relative; transition: var(--t);
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
  letter-spacing: -.005em;
}
nav.main > a:hover, nav.main > .dd:hover > a { color: var(--ocean); background: rgba(123,175,204,.08); }
.dd { position: relative; }
.dd > a::after { content: ""; display: inline-block; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-left: 6px; margin-top: -3px; opacity: .55; }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 10px 0; min-width: 280px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: var(--t);
  border-top: 3px solid var(--ocean);
}
.dd:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 22px;
  color: var(--charcoal); font-size: .9rem; font-weight: 500;
  transition: var(--t);
}
.dropdown a:hover { background: var(--cream); color: var(--ocean); padding-left: 28px; }

.hdr-cta { display: flex; gap: 14px; align-items: center; flex-shrink: 0; }
.hdr-phone {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy); font-family: 'Oswald', sans-serif;
  font-size: 1.18rem; font-weight: 700; letter-spacing: .02em;
  transition: var(--t);
}
.hdr-phone .ph-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.hdr-phone:hover { color: var(--ocean); }
.hdr-phone:hover .ph-circle { background: var(--ocean); }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 3px; background: var(--navy); margin: 5px 0; transition: var(--t); border-radius: 2px; }

/* =========================================================
   HERO with Vegas sunset background
   ========================================================= */
.hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15,31,59,.72) 0%, rgba(10,22,40,.55) 55%, rgba(20,42,77,.65) 100%),
    url('/img/vegas-sunset-strip.jpg') center 60% / cover no-repeat;
  color: var(--white);
  overflow: hidden;
  padding: 100px 0 110px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(230,107,44,.18), transparent 55%),
    radial-gradient(circle at 15% 75%, rgba(123,175,204,.12), transparent 55%);
  pointer-events: none;
}
.hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(230,107,44,.16); border: 1px solid rgba(230,107,44,.5);
  color: var(--white); padding: 8px 16px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: .84rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-tag .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: blink 1.6s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
.hero h1 {
  color: var(--white); margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--sky); display: block; font-size: .82em; margin-top: 4px; }
.hero-lead {
  font-size: 1.16rem; color: rgba(255,255,255,.85);
  max-width: 580px; margin-bottom: 32px; line-height: 1.65;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust .tt strong {
  display: block; color: var(--white);
  font-family: 'Oswald', sans-serif; font-size: 1.4rem;
  font-weight: 700; line-height: 1; letter-spacing: .02em;
}
.hero-trust .tt small {
  display: block; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 6px;
}

/* Hero form — compact */
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.2);
}
.lead-form::before {
  content: ""; position: absolute; top: -2px; left: 22px; right: 22px;
  height: 4px;
  background: linear-gradient(90deg, var(--ocean) 0%, var(--orange) 100%);
  border-radius: 4px 4px 0 0;
}
.lead-form-head { text-align: center; margin-bottom: 16px; }
.lead-form-head .label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(230,107,44,.12); color: var(--orange-dark);
  padding: 4px 11px; border-radius: 99px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 10px;
}
.lead-form-head h3 { color: var(--navy); font-size: 1.35rem; line-height: 1.15; margin-bottom: 4px; }
.lead-form-head p { color: var(--gray-600); font-size: .84rem; }
.field { margin-bottom: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.field-row .field { margin-bottom: 0; }
.field label {
  display: block; font-size: .7rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 4px;
  letter-spacing: .04em; text-transform: uppercase;
}
.field input, .field select {
  width: 100%; padding: 11px 13px;
  border: 2px solid var(--gray-100); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: .92rem;
  background: var(--soft); color: var(--charcoal); transition: var(--t);
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(14,124,156,.15);
}
.lead-form .btn { padding: 14px 22px; font-size: .9rem; margin-top: 6px; }
.form-foot { text-align: center; font-size: .74rem; color: var(--gray-400); margin-top: 10px; line-height: 1.5; }
.form-foot strong { color: var(--navy); }

/* =========================================================
   TRUST STRIP (no emojis, custom icons)
   ========================================================= */
.trust-strip {
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 30px 0;
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.trust-badge { display: flex; align-items: center; gap: 14px; }
.trust-badge .badge-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--ocean);
  color: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-badge strong {
  display: block; font-family: 'Oswald', sans-serif;
  color: var(--navy); font-size: 1.02rem; line-height: 1.1;
  letter-spacing: .02em; text-transform: uppercase;
}
.trust-badge small {
  display: block; font-size: .76rem; color: var(--gray-600);
  margin-top: 3px; letter-spacing: .03em;
}

/* =========================================================
   CREDIBILITY BAR — combined promise + stats
   ========================================================= */
.cred-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white); padding: 72px 0;
  position: relative; overflow: hidden;
}
.cred-bar::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(230,107,44,.12), transparent 55%),
    radial-gradient(circle at 85% 50%, rgba(123,175,204,.14), transparent 55%);
  pointer-events: none;
}
.cred-head { text-align: center; margin-bottom: 48px; position: relative; z-index: 2; }
.cred-head .tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 700;
  color: var(--white); letter-spacing: .04em;
  text-transform: uppercase; line-height: 1.1;
}
.cred-head .tagline em { font-style: normal; color: var(--orange); }
.cred-head p {
  color: rgba(255,255,255,.78); font-size: 1rem;
  margin-top: 12px; max-width: 620px; margin-left: auto; margin-right: auto;
}
.cred-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
.cred-item {
  text-align: center; padding: 28px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  transition: var(--t);
}
.cred-item:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(123,175,204,.4);
  transform: translateY(-4px);
}
.cred-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(230,107,44,.15);
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cred-icon .icon-svg { width: 26px; height: 26px; stroke-width: 2; }
.cred-stat {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--sky-light); line-height: 1;
  margin-bottom: 6px;
}
.cred-stat .plus { color: var(--orange); }
.cred-label {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: .82rem; font-weight: 600;
  color: var(--white); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 4px;
}
.cred-sub { display: block; color: rgba(255,255,255,.6); font-size: .76rem; line-height: 1.45; }

/* =========================================================
   PRICING TRANSPARENCY
   ========================================================= */
.pricing { background: var(--cream); position: relative; }
.pricing-card {
  max-width: 980px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr;
}
.pricing-card-left {
  padding: 50px 44px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.pricing-card-left::after {
  content: ""; position: absolute; right: -80px; bottom: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,107,44,.18), transparent 70%);
}
.pricing-card-left h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.pricing-card-left h2 em { color: var(--orange); font-style: normal; display: block; }
.pricing-card-left p { color: rgba(255,255,255,.85); font-size: 1.02rem; line-height: 1.65; }
.pricing-card-left .promise {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.15);
  display: flex; gap: 14px; align-items: flex-start;
}
.pricing-card-left .promise .ic {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(230,107,44,.18); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pricing-card-left .promise strong { display: block; color: var(--white); margin-bottom: 4px; }
.pricing-card-left .promise span { color: rgba(255,255,255,.75); font-size: .92rem; }
.pricing-card-right { padding: 50px 44px; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--gray-100);
}
.price-row:last-child { border-bottom: none; }
.price-row strong { color: var(--navy); font-family: 'Oswald', sans-serif; font-size: 1.04rem; letter-spacing: .01em; }
.price-row span { color: var(--ocean); font-weight: 700; font-family: 'Oswald', sans-serif; font-size: 1.2rem; }
.price-callout {
  background: var(--cream); padding: 18px 22px;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  margin-top: 22px;
}
.price-callout strong { color: var(--navy); display: block; margin-bottom: 4px; font-family: 'Oswald', sans-serif; font-size: .92rem; letter-spacing: .04em; text-transform: uppercase; }
.price-callout p { color: var(--charcoal); margin: 0; font-size: .94rem; }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare {
  background: var(--white);
  position: relative;
}
.compare-table {
  max-width: 1080px; margin: 0 auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.compare-row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
}
.compare-row > div {
  padding: 18px 24px; font-size: .96rem;
}
.compare-row.head {
  background: var(--navy); color: var(--white);
}
.compare-row.head > div {
  font-family: 'Oswald', sans-serif; font-size: 1rem;
  font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; text-align: center; padding: 22px 24px;
}
.compare-row.head > div:first-child { text-align: left; }
.compare-row.head .us {
  background: var(--orange); position: relative;
}
.compare-row.head .us::before {
  content: "★"; position: absolute; top: 6px; right: 12px;
  color: rgba(255,255,255,.6); font-size: 1rem;
}
.compare-row.alt { background: var(--soft); }
.compare-row .feature { color: var(--navy); font-weight: 600; }
.compare-row .col-us, .compare-row .col-them { text-align: center; }
.compare-row .col-us {
  background: rgba(230,107,44,.06);
  color: var(--navy);
}
.compare-row .yes {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--ocean); color: var(--white);
  vertical-align: middle;
}
.compare-row .yes-note {
  display: block;
  margin-top: 6px;
  font-size: .8rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: .02em;
}
.compare-row .no {
  color: var(--gray-400); font-style: italic; font-size: .9rem;
}

/* =========================================================
   RECENT JOBS — list-style log, distinct from services grid
   ========================================================= */
.recent-jobs {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.recent-jobs::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(123,175,204,.15), transparent 55%);
  pointer-events: none;
}
.recent-jobs .section-head h2 { color: var(--white); }
.recent-jobs .section-head h2 em { color: var(--orange); }
.recent-jobs .section-head p { color: rgba(255,255,255,.75); }
.jobs-list {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px;
  position: relative; z-index: 2;
}
.job-row {
  display: flex; gap: 16px; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--t);
}
.job-row:hover { background: rgba(255,255,255,.07); border-color: rgba(123,175,204,.4); transform: translateX(4px); }
.job-row .row-thumb {
  width: 60px; height: 60px;
  flex-shrink: 0; border-radius: var(--radius);
  overflow: hidden; background: var(--ocean-dark);
  position: relative;
}
.job-row .row-thumb img { width: 100%; height: 100%; object-fit: cover; }
.job-row .row-body { flex: 1; min-width: 0; }
.job-row .row-meta {
  display: flex; gap: 8px; align-items: center;
  font-size: .72rem; color: var(--orange);
  font-family: 'Oswald', sans-serif; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 4px;
}
.job-row .row-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.job-row .row-meta .where { color: rgba(255,255,255,.55); }
.job-row h4 {
  color: var(--white); font-size: .95rem;
  margin-bottom: 2px; line-height: 1.3; font-family: 'Inter', sans-serif;
  font-weight: 600; letter-spacing: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.job-row p {
  color: rgba(255,255,255,.6); font-size: .82rem;
  line-height: 1.45; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.jobs-cta {
  grid-column: 1 / -1; text-align: center; padding-top: 18px;
}
.jobs-cta .count {
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: 'Oswald', sans-serif;
}
.jobs-cta .count-num { font-size: 2.5rem; color: var(--orange); font-weight: 700; line-height: 1; }
.jobs-cta .count-label { font-size: 1rem; color: rgba(255,255,255,.78); letter-spacing: .04em; text-transform: uppercase; }
.jobs-cta a {
  display: inline-block; margin-top: 12px;
  color: var(--sky-light); font-weight: 700;
  font-family: 'Oswald', sans-serif; letter-spacing: .08em;
  text-transform: uppercase; font-size: .9rem;
}
.jobs-cta a:hover { color: var(--orange); }

/* =========================================================
   EMERGENCY BAND (single use)
   ========================================================= */
.emergency-band {
  background: var(--emergency); color: var(--white);
  padding: 22px 0;
  border-bottom: 4px solid #7E1212;
}
.emergency-band .container {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; text-align: center;
}
.emergency-band .pulse-dot {
  width: 12px; height: 12px; background: var(--white); border-radius: 50%;
  animation: epulse 1.6s ease-in-out infinite;
}
@keyframes epulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.emergency-band strong {
  font-family: 'Oswald', sans-serif; font-size: 1.05rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.emergency-band a {
  background: var(--white); color: var(--emergency);
  padding: 10px 22px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  font-size: .88rem; transition: var(--t);
  display: inline-flex; align-items: center; gap: 8px;
}
.emergency-band a:hover { background: var(--navy); color: var(--white); }

/* =========================================================
   SECTION HEAD
   ========================================================= */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--gray-600); font-size: 1.06rem; }
.section-head h2 em { font-style: normal; color: var(--ocean); display: block; }

/* =========================================================
   SERVICES GRID — subtle Vegas texture
   ========================================================= */
.services {
  position: relative;
  background:
    linear-gradient(180deg, rgba(251,250,246,.97) 0%, rgba(245,241,232,.94) 100%),
    url('/img/vegas-downtown-rays.jpg') center / cover no-repeat;
  background-attachment: fixed;
}
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 0; border: 1px solid var(--gray-100);
  transition: var(--t); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.svc-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--navy) 100%);
}
.svc-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.svc-card:hover .svc-photo img { transform: scale(1.06); }
.svc-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,31,59,.45) 0%, transparent 55%);
  pointer-events: none;
}
.svc-icon { display: none; }
.svc-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.22rem; }
.svc-card p { font-size: .92rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ocean); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
.svc-link::after { content: "→"; transition: transform .25s; }
.svc-card:hover .svc-link::after { transform: translateX(4px); }
.svc-featured { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); }
.svc-featured .svc-body h3 { color: var(--white); }
.svc-featured .svc-body p { color: rgba(255,255,255,.78); }
.svc-featured .svc-icon { background: var(--orange); border-color: var(--navy); }
.svc-featured .svc-link { color: var(--sky); }
.svc-featured .new-tag {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--orange); color: var(--white);
  padding: 4px 10px; border-radius: 99px;
  font-family: 'Oswald', sans-serif; font-size: .68rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

/* =========================================================
   WHY MATT (with portrait)
   ========================================================= */
.why { background: var(--white); padding: 100px 0; }
.why .container { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.why-photo {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.why-photo .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,31,59,.7) 0%, transparent 50%);
  pointer-events: none;
}
.why-photo .photo-tag {
  position: absolute; top: 22px; left: 22px;
  background: var(--orange); color: var(--white);
  padding: 8px 16px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(230,107,44,.45);
}
.why-photo .photo-license {
  position: absolute; top: 22px; right: 22px;
  background: var(--white); color: var(--navy);
  padding: 9px 14px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  text-align: center; line-height: 1.2;
}
.why-photo .photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 26px; color: var(--white); z-index: 2;
}
.why-photo .photo-caption h3 { color: var(--white); font-size: 1.9rem; line-height: 1; margin-bottom: 6px; }
.why-photo .photo-caption p { color: rgba(255,255,255,.88); font-size: .94rem; margin: 0; }
.why-photo .photo-caption .signature {
  margin-top: 14px; font-style: italic; color: var(--sky-light);
  font-size: 1.15rem; font-weight: 600;
}
.why-features { list-style: none; margin-top: 26px; }
.why-features li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--gray-100);
}
.why-features li:last-child { border-bottom: none; }
.why-features .check-circle {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14,124,156,.1); color: var(--ocean);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-features .check-circle .icon-svg { width: 16px; height: 16px; stroke: var(--ocean); stroke-width: 3; }
.why-features strong { color: var(--navy); font-weight: 700; display: block; margin-bottom: 4px; font-size: 1.04rem; }
.why-features span { color: var(--gray-600); font-size: .94rem; line-height: 1.6; }
.why-promise {
  background: var(--cream); border-left: 4px solid var(--orange);
  padding: 18px 22px; margin-top: 26px; border-radius: var(--radius);
}
.why-promise strong { color: var(--navy); display: block; margin-bottom: 4px; font-family: 'Oswald', sans-serif; letter-spacing: .04em; text-transform: uppercase; font-size: .92rem; }
.why-promise p { color: var(--charcoal); margin: 0; font-size: .94rem; }

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.beforeafter { background: var(--cream); }
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px; max-width: 1100px; margin: 0 auto;
}
.ba-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-lg);
}
.ba-card img { width: 100%; height: 100%; object-fit: cover; }
.ba-label {
  position: absolute; top: 20px; left: 20px;
  padding: 8px 16px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--white);
}
.ba-label.before { background: var(--emergency); }
.ba-label.after { background: var(--ocean); }
.ba-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 24px; color: var(--white);
  background: linear-gradient(0deg, rgba(15,31,59,.92) 0%, transparent 100%);
}
.ba-caption h4 { color: var(--white); font-size: 1.18rem; margin-bottom: 4px; }
.ba-caption p { color: rgba(255,255,255,.85); font-size: .9rem; margin: 0; }

/* =========================================================
   MOEN SECTION
   ========================================================= */
.moen {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-deep) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.moen::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(123,175,204,.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(230,107,44,.12), transparent 50%);
  pointer-events: none;
}
.moen .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; }
.moen-img-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.08);
}
.moen-img-wrap img { width: 100%; height: auto; display: block; }
.moen-img-wrap .new-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--orange); color: var(--white);
  padding: 7px 16px; border-radius: 99px;
  font-family: 'Oswald', sans-serif; font-size: .76rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(230,107,44,.5);
}
.moen-content h2 { color: var(--white); }
.moen-content h2 em { color: var(--sky); font-style: normal; display: block; }
.moen-features { list-style: none; margin: 28px 0; }
.moen-features li {
  display: flex; gap: 14px; align-items: flex-start; padding: 12px 0;
  font-size: 1rem; color: rgba(255,255,255,.86);
}
.moen-features .micon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(123,175,204,.18); color: var(--sky);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.moen-features strong { color: var(--white); font-weight: 700; }

/* =========================================================
   REVIEWS — with subtle dusk Strip backdrop
   ========================================================= */
.reviews {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(251,250,246,.96) 100%),
    url('/img/vegas-strip-dusk.jpg') center / cover no-repeat;
  background-attachment: fixed;
}
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review {
  background: var(--soft); border-radius: var(--radius-lg);
  padding: 30px 28px;
  border-top: 3px solid var(--ocean); transition: var(--t);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); background: var(--white); border-color: var(--orange); }
.review .stars { color: var(--gold); font-size: 1.04rem; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-size: .98rem; color: var(--charcoal); line-height: 1.65; margin-bottom: 22px; }
.review-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--gray-100); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--ocean) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-family: 'Oswald', sans-serif;
}
.review-author .name { font-weight: 700; color: var(--navy); display: block; font-size: .94rem; }
.review-author .src { font-size: .76rem; color: var(--gray-400); letter-spacing: .04em; text-transform: uppercase; }
.review-cta {
  background: var(--navy); color: var(--white);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; border-top: none;
  border: 1px solid rgba(255,255,255,.08);
}
.review-cta:hover { background: var(--navy-mid); transform: translateY(-4px); }
.review-cta h3 { color: var(--white); margin-bottom: 10px; }
.review-cta p { color: rgba(255,255,255,.78); margin-bottom: 22px; font-size: .92rem; }

/* =========================================================
   JOBS MAP — interactive Leaflet map of completed jobs
   ========================================================= */
.jobs-map-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-deep) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.jobs-map-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(230,107,44,.12), transparent 50%);
  pointer-events: none;
}
.jobs-map-section .container { position: relative; z-index: 2; }
.jobs-map-section .section-head h2 { color: var(--white); }
.jobs-map-section .section-head h2 em { color: var(--orange); }
.jobs-map-section .section-head p { color: rgba(255,255,255,.78); }
.jobs-map-wrap {
  max-width: 1180px; margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--orange);
  padding: 12px;
  box-shadow: 0 26px 60px rgba(0,0,0,.4);
}
#jobs-map {
  width: 100%; height: 520px;
  border-radius: var(--radius);
  background: #e8ecf1;
  z-index: 1;
}
.jobs-map-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 16px 8px;
  flex-wrap: wrap;
  font-family: 'Courier New', monospace;
  font-size: .78rem;
  color: var(--gray-600);
  letter-spacing: .04em;
}
.jobs-map-footer .legend-item { display: inline-flex; align-items: center; gap: 8px; }
.jobs-map-footer .legend-pin {
  display: inline-block; width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--white);
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}
.jobs-map-footer .legend-pin.hq { background: var(--ocean); }
/* Leaflet popup branding */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  border-top: 3px solid var(--orange) !important;
  box-shadow: 0 12px 30px rgba(10,22,40,.25) !important;
  padding: 0 !important;
}
.leaflet-popup-content { margin: 14px 18px !important; font-family: 'Inter', sans-serif; min-width: 200px; }
.leaflet-popup-content .pop-tag {
  display: inline-block;
  color: var(--orange); font-family: 'Oswald', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 4px;
}
.leaflet-popup-content .pop-where {
  color: var(--gray-400); font-size: .7rem;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.leaflet-popup-content h4 {
  color: var(--navy); font-family: 'Oswald', sans-serif;
  font-size: 1rem; margin-bottom: 4px; letter-spacing: .01em;
}
.leaflet-popup-content p {
  color: var(--gray-600); font-size: .82rem;
  line-height: 1.5; margin: 0;
}
.nv-pin {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--orange); border: 3px solid var(--white);
  box-shadow: 0 3px 8px rgba(214,107,44,.4);
  cursor: pointer; transition: var(--t);
}
.nv-pin:hover { transform: scale(1.3); background: var(--ocean); }
.nv-pin.hq { width: 28px; height: 28px; background: var(--ocean); border-width: 4px; }
.leaflet-control-attribution { font-size: 9px !important; }

/* =========================================================
   AREAS (with Vegas background)
   ========================================================= */
.areas {
  position: relative;
  background:
    linear-gradient(180deg, rgba(245,241,232,.72) 0%, rgba(245,241,232,.82) 100%),
    url('/img/vegas-suburbs.jpg') center / cover no-repeat;
  background-attachment: fixed;
}
.areas-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; max-width: 1080px; margin: 0 auto; }
.area-chip {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 16px 18px;
  text-align: center; transition: var(--t);
  font-weight: 600; color: var(--navy); font-size: .94rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.area-chip .icon-svg { width: 14px; height: 14px; stroke: var(--ocean); }
.area-chip:hover {
  background: var(--navy); color: var(--white); border-color: var(--navy);
  transform: translateY(-3px); box-shadow: 0 10px 24px rgba(15,31,59,.25);
}
.area-chip:hover .icon-svg { stroke: var(--sky); }

/* =========================================================
   FAQ — with subtle Red Rock background
   ========================================================= */
.faq {
  position: relative;
  background:
    linear-gradient(180deg, rgba(251,250,246,.94) 0%, rgba(245,241,232,.92) 100%),
    url('/img/vegas-red-rock.jpg') center / cover no-repeat;
  background-attachment: fixed;
}
.faq-grid { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 28px; margin-bottom: 14px;
  border-left: 4px solid var(--ocean);
  transition: var(--t);
}
.faq-item:hover { background: var(--cream); border-left-color: var(--orange); }
.faq-item h4 { color: var(--navy); font-size: 1.06rem; margin-bottom: 10px; font-family: 'Oswald', sans-serif; letter-spacing: .01em; }
.faq-item p { color: var(--gray-600); font-size: .96rem; line-height: 1.65; margin: 0; }
.faq-item a { color: var(--ocean); font-weight: 600; }

/* =========================================================
   BIG CTA with Vegas dusk bg
   ========================================================= */
.cta-band {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15,31,59,.68) 0%, rgba(10,22,40,.78) 100%),
    url('/img/vegas-strip-bluehour.jpg') center / cover no-repeat;
  color: var(--white); padding: 100px 0; text-align: center; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(230,107,44,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band h2 em { font-style: normal; color: var(--orange); display: block; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-phone {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white); color: var(--navy);
  padding: 22px 38px; border-radius: var(--radius);
  font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 700;
  letter-spacing: .02em; transition: var(--t);
  box-shadow: 0 16px 38px rgba(0,0,0,.35);
}
.cta-phone:hover { transform: translateY(-3px) scale(1.02); color: var(--ocean); }
.cta-phone .ph-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: var(--white); display: flex; align-items: center; justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: #060B16; color: rgba(255,255,255,.7); padding: 80px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }
.foot-brand .foot-logo-row { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.foot-brand .foot-logo-row img { width: 64px; height: 64px; object-fit: contain; }
.foot-brand .foot-logo-row .b-text { line-height: 1.1; }
.foot-brand .foot-logo-row .b-name { display: block; font-family: 'Oswald', sans-serif; color: var(--white); font-size: 1.15rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.foot-brand .foot-logo-row .b-est { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 4px; }
.foot-brand p { color: rgba(255,255,255,.55); font-size: .92rem; line-height: 1.7; max-width: 380px; margin: 18px 0; }
.foot-tagline { color: var(--orange); font-family: 'Oswald', sans-serif; font-weight: 700; font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; margin: 22px 0 18px; }
.foot-featured { display: inline-block; color: rgba(255,255,255,.6); font-size: .88rem; border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 2px; margin-bottom: 24px; transition: var(--t); }
.foot-featured:hover { color: var(--orange); border-color: var(--orange); }
.foot-social { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.foot-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); transition: var(--t);
}
.foot-social a:hover { background: var(--ocean); color: var(--white); transform: translateY(-2px); }
.foot-social a svg { width: 16px; height: 16px; fill: currentColor; }
.foot-quicklinks-label { display: block; font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 14px; }
.foot-quicklinks { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-quicklinks a {
  display: inline-block; padding: 7px 16px;
  border: 1px solid rgba(255,255,255,.15); border-radius: 99px;
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.7); transition: var(--t);
}
.foot-quicklinks a:hover { border-color: var(--ocean); color: var(--sky-light); background: rgba(14,124,156,.12); }

footer h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: .76rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul a { color: rgba(255,255,255,.55); font-size: .92rem; transition: var(--t); }
footer ul a:hover { color: var(--sky-light); }
footer ul a.see-all { color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; }
footer ul a.see-all:hover { color: var(--sky-light); }

.foot-contact .loc-block { margin-bottom: 22px; }
.foot-contact .loc-block strong { display: block; color: var(--white); font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: .03em; margin-bottom: 8px; }
.foot-contact .loc-block p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; margin: 0; }
.foot-contact .foot-phone { display: block; color: var(--white); font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: .02em; margin-bottom: 10px; }
.foot-contact .foot-phone:hover { color: var(--sky-light); }
.foot-contact .foot-email { display: block; color: rgba(255,255,255,.6); font-size: .9rem; margin-bottom: 10px; }
.foot-contact .foot-email:hover { color: var(--sky-light); }
.foot-contact .foot-hours { color: rgba(255,255,255,.5); font-size: .85rem; line-height: 1.6; }

.foot-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: .82rem; color: rgba(255,255,255,.4); align-items: center; }
.foot-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-bottom-links a { color: rgba(255,255,255,.5); transition: var(--t); }
.foot-bottom-links a:hover { color: var(--sky-light); }
.foot-built { text-align: center; padding-top: 18px; font-family: 'Courier New', monospace; font-size: .74rem; color: rgba(255,255,255,.25); letter-spacing: .04em; }
.foot-built a { color: rgba(255,255,255,.45); }
.foot-built a:hover { color: var(--sky-light); }

/* =========================================================
   MOBILE STICKY CALL BAR
   ========================================================= */
.sticky-call {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); z-index: 90; border-top: 3px solid var(--ocean);
  box-shadow: 0 -8px 20px rgba(0,0,0,.25);
}
.sticky-call a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 12px;
  color: var(--white); font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: .9rem; letter-spacing: .06em;
  text-transform: uppercase;
}
.sticky-call a:first-child { background: var(--orange); }
.sticky-call a:last-child { background: var(--navy); border-left: 1px solid rgba(255,255,255,.1); }
@media (min-width: 768px) { .sticky-call { display: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .review-grid { grid-template-columns: repeat(2,1fr); }
  .why .container { grid-template-columns: 1fr; gap: 40px; }
  .moen .container { grid-template-columns: 1fr; gap: 40px; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-contact { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .util-bar { font-size: .76rem; }
  .util-right { display: none; }
  .util-left > *:nth-child(n+3) { display: none; }
  nav.main, .hdr-cta .btn { display: none; }
  .hamburger { display: block; }
  .hdr-phone { font-size: 1rem; }
  .hdr-phone .ph-circle { width: 34px; height: 34px; }
  .logo img { width: 60px; height: 56px; }
  .logo-text { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 72px; }
  .services-grid, .review-grid, .areas-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .pricing-card { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; }
  .compare-row > div { padding: 14px 16px; font-size: .88rem; }
  #jobs-map { height: 420px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .trust-strip .container { gap: 18px; justify-content: center; }
  .cta-phone { font-size: 1.3rem; padding: 18px 24px; }
  #jobs-map { height: 360px; }
  .cred-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cred-item { padding: 20px 12px; }
  .compare-row { grid-template-columns: 1fr; text-align: center; }
  .compare-row > div { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); }
  .compare-row .feature { background: var(--off-white); font-size: .85rem; }
  .compare-row.head > div { padding: 14px 16px; }
  .compare-row.head .us::before { display: none; }
  .lead-form { padding: 20px 18px; }
  .lead-form-head h3 { font-size: 1.2rem; }
  .lead-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form .field-row .field { margin-bottom: 10px; }
}
/* === MOBILE-FIX-2026: Lift ADA widget + Drip + tighter sticky bar === */
@media (max-width: 768px) {
  /* Push ADA accessibility launcher above the sticky-call bar */
  #paws-a11y-trigger { bottom: 80px !important; left: 12px !important; width: 44px !important; height: 44px !important; }
  /* Tighten sticky-call bar height slightly so it competes less for screen space */
  .sticky-call a { padding: 13px 8px !important; font-size: .82rem !important; }
  /* Tighten Drip chatbot button position to align with ADA */
  #nv-chat-btn { bottom: 80px !important; right: 12px !important; width: 54px !important; height: 54px !important; }
  /* Match chat window above the sticky bar */
  #nv-chat-win { bottom: 145px !important; }
}
/* === END MOBILE-FIX-2026 === */
