@charset "utf-8";

:root{
  --brand: #213E7A;
  --brand-dark: #1b3466;
  --bg: #f3f4f6;
  --white: #ffffff;
  --text: #0b1220;
  --muted: #667085;
  --line: rgba(15, 23, 42, 0.08);
  --gold: #d7b46a;
}

*,
*::before,
*::after{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

img{
  max-width: 100%;
  display: block;
}

a{
  color: inherit;
  text-decoration: none;
}

.shell{
  width: min(1740px, calc(100% - 56px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-row{
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name{
  font-weight: 800;
  font-size: 15px;
  line-height: 1.05;
}

.brand-tag{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.desktop-nav{
  display: flex;
  gap: 24px;
  font-weight: 700;
}

.nav-actions{
  display: flex;
  gap: 12px;
}

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: .15s ease;
  white-space: nowrap;
}

.btn-eq{
  width: 210px;
}

.btn-lg{
  height: 54px;
  font-size: 16px;
}

.btn-solid{
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(33,62,122,.20);
}

.btn-solid:hover{
  background: var(--brand-dark);
  color: #fff;
}

.btn-outline{
  background: rgba(255,255,255,0.94);
  border-color: rgba(33,62,122,.25);
  color: var(--brand);
}

.btn-outline:hover{
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Hero */
.hero{
  position: relative;
  background: url("../img/hero.jpg") center center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58));
  pointer-events: none;
}

.hero-inner{
  position: relative;
  z-index: 1;
  padding: 92px 0 72px;
  color: #fff;
}

.hero-pill{
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero h1{
  margin: 0 0 14px;
  max-width: 16ch;
  font-size: clamp(40px, 4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-sub{
  margin: 0 0 20px;
  max-width: 70ch;
  font-size: clamp(19px, 1.35vw, 24px);
  line-height: 1.45;
  color: rgba(255,255,255,.94);
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note{
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
}

.hero-note a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Trust band */
.trust-band{
  background: linear-gradient(180deg, #2f3136, #0b1220);
  color: #fff;
  padding: 18px 0 22px;
}

.trust-top{
  display: grid;
  grid-template-columns: 230px 420px 1fr;
  gap: 0;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.trust-top > *{
  padding: 0 18px;
}

.trust-top > * + *{
  border-left: 1px solid rgba(255,255,255,.10);
}

.trust-reviews{
  display: block;
}

.trust-label{
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.trust-stars{
  display: block;
  margin-top: 10px;
  font-size: 26px;
  letter-spacing: 3px;
  color: var(--gold);
}

.gold-star{
  color: var(--gold);
}

.trust-google{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.trust-google-main{
  display: inline-block;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.trust-google-sub{
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.trust-copy{
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  text-align: right;
}

.trust-cards{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(215,180,106,.18);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.26);
}

.trust-card strong{
  display: block;
  font-size: 16px;
  font-weight: 900;
}

.trust-card span{
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255,255,255,.80);
  font-weight: 700;
}

/* Shared sections */
.section{
  padding: 72px 0;
}

.section-white{
  background: #fff;
  border-top: 1px solid var(--line);
}

.section-head{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 28px;
}

.section-head.single{
  grid-template-columns: 1fr;
}

.section-head h2{
  margin: 0;
  font-size: clamp(36px, 3vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-copy{
  margin: 0;
  font-size: clamp(19px, 1.2vw, 23px);
  line-height: 1.45;
  font-weight: 700;
  color: var(--muted);
}

/* Process */
.process-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card{
  background: #e9eef6;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px;
  padding: 22px 20px;
  min-height: 185px;
}

.process-num{
  font-weight: 900;
  opacity: .75;
  margin-bottom: 10px;
}

.process-card h3{
  margin: 0 0 10px;
  font-size: 22px;
}

.process-card p{
  margin: 0;
  color: #334155;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

/* Services */
.services-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.service-media{
  height: 120px;
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.service-body{
  padding: 18px 18px 20px;
}

.service-card h3{
  margin: 0 0 10px;
  font-size: 22px;
}

.service-card p{
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 650;
}

.section-cta{
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.section-cta.no-margin{
  margin-top: 0;
}

/* Why */
.why-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.why-card{
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.why-icon{
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 10px 20px rgba(33,62,122,.18);
}

.why-icon svg{
  width: 24px;
  height: 24px;
  display: block;
}

.why-icon svg,
.why-icon rect,
.why-icon path{
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3{
  margin: 0 0 10px;
  font-size: 22px;
}

.why-card p{
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

/* CTA band */
.cta-band{
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 56px 0 72px;
}

.cta-band-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta-band h2{
  margin: 0 0 8px;
  font-size: clamp(34px, 2.6vw, 46px);
}

.cta-band p{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 650;
}

/* Footer */
.site-footer{
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 20px 0 24px;
}

.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-name{
  font-weight: 800;
  font-size: 15px;
}

.footer-contact{
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
}

.footer-contact a{
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Placeholder colors */
.service-home{ background: linear-gradient(135deg, #dfe7f5, #b9c8e8); }
.service-sewer{ background: linear-gradient(135deg, #d9dde5, #aeb6c5); }
.service-septic{ background: linear-gradient(135deg, #e6e1d6, #c8baa0); }
.service-well{ background: linear-gradient(135deg, #d7e7f0, #abc9d7); }
.service-mold{ background: linear-gradient(135deg, #dce7df, #b1c6b5); }
.service-radon{ background: linear-gradient(135deg, #d7e2f8, #a8bce9); }
.service-wdo{ background: linear-gradient(135deg, #ebe0d4, #caa88c); }
.service-commercial{ background: linear-gradient(135deg, #d9dde3, #b6c0cb); }

/* Responsive */
@media (max-width: 1150px){
  .section-head{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-copy{
    font-size: 18px;
  }

  .process-grid{
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-top{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trust-top > *{
    padding: 0;
    border-left: none !important;
  }

  .trust-copy{
    text-align: left;
  }

  .cta-band-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
  .shell{
    width: calc(100% - 28px);
  }

  .nav-row{
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 12px 0;
  }

  .desktop-nav{
    display: none;
  }

  .nav-actions,
  .hero-actions,
  .section-cta{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
  }

  .btn-eq{
    width: 100%;
  }

  .hero{
    min-height: auto;
  }

  .hero-inner{
    padding: 42px 0 34px;
  }

  .hero h1{
    font-size: 32px;
    max-width: none;
  }

  .hero-sub,
  .section-copy{
    font-size: 17px;
  }

  .trust-cards,
  .services-grid,
  .why-grid{
    grid-template-columns: 1fr;
  }

  .section{
    padding: 48px 0;
  }

  .service-media{
    height: 110px;
  }

  .cta-band{
    padding: 48px 0;
  }

  .footer-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact span{
    display: none;
  }
}/* ===== Service page ===== */
.service-hero{
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  color: #fff;
}

.service-hero-home{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    url("../img/hero.jpg") center center / cover no-repeat;
}

.service-hero-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-hero-inner{
  position: relative;
  z-index: 1;
  padding: 92px 0 70px;
}

.service-hero-pill{
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 800;
  margin-bottom: 16px;
}

.service-hero h1{
  margin: 0 0 14px;
  max-width: 14ch;
  font-size: clamp(38px, 3.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.service-hero-sub{
  margin: 0 0 20px;
  max-width: 70ch;
  font-size: clamp(19px, 1.3vw, 23px);
  line-height: 1.45;
  color: rgba(255,255,255,.94);
}

.service-hero-note{
  margin-top: 14px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}

.service-grid-two{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-panel{
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.service-panel-wide{
  padding: 26px 24px;
}

.service-panel h3{
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.08;
}

.service-list{
  margin: 0;
  padding-left: 20px;
}

.service-list li{
  margin-bottom: 10px;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.service-audience-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-audience-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.service-audience-card h3{
  margin: 0 0 10px;
  font-size: 22px;
}

.service-audience-card p{
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.service-lead-copy{
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
  color: #475569;
}

.faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.faq-card h3{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.faq-card p{
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

@media (max-width: 1150px){
  .service-grid-two,
  .service-audience-grid,
  .faq-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .service-hero{
    min-height: auto;
  }

  .service-hero-inner{
    padding: 42px 0 34px;
  }

  .service-hero h1{
    max-width: none;
    font-size: 32px;
  }

  .service-hero-sub{
    font-size: 17px;
  }

  .service-panel,
  .service-audience-card,
  .faq-card{
    padding: 18px;
  }
}
.service-hero-septic{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #e6e1d6, #c8baa0);
}
/* ===== Service page trust strip ===== */
.gold-star{
  color: #d7b46a;
}

.service-trust-strip{
  background: #0f1520;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.service-trust-inner-two-line{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 0 18px;
  text-align: center;
}

.service-trust-reviews{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
}

.service-trust-reviews:hover{
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-trust-label{
  white-space: nowrap;
}

.service-trust-line-two{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.90);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
}

.service-trust-line-two span{
  position: relative;
}

.service-trust-line-two span + span::before{
  content: "•";
  color: #d7b46a;
  margin-right: 18px;
}

@media (max-width: 640px){
  .service-trust-reviews{
    font-size: 17px;
  }

  .service-trust-label{
    white-space: normal;
  }

  .service-trust-line-two{
    font-size: 14px;
    gap: 12px;
  }

  .service-trust-line-two span + span::before{
    margin-right: 12px;
  }
}.service-hero-well{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d7e7f0, #abc9d7);
}
.service-hero-mold-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #dce7df, #b1c6b5);
}
.service-hero-radon{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d7e2f8, #a8bce9);
}
.service-hero-wdo-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #ebe0d4, #caa88c);
}
.service-hero-commercial-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d9dde3, #b6c0cb);
}
/* clickable service cards */
.service-link-card{
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.service-link-card:hover{
  text-decoration: none;
}

.service-link-card .service-body{
  flex: 1;
}

.service-link-card h3{
  transition: color .15s ease;
}

.service-link-card:hover h3{
  color: var(--brand);
}
.service-hero-about-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d9dde3, #b6c0cb);
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-panel{
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.about-panel h3{
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.08;
}

.about-panel p{
  margin: 0 0 14px;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}

.about-panel p:last-child{
  margin-bottom: 0;
}

.about-value-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-value-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.about-value-card h3{
  margin: 0 0 10px;
  font-size: 22px;
}

.about-value-card p{
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

@media (max-width: 1150px){
  .about-grid,
  .about-value-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .about-panel,
  .about-value-card{
    padding: 18px;
  }
}
.service-hero-contact-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d9dde3, #b6c0cb);
}

.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.contact-card-primary{
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-color: rgba(33,62,122,.14);
}

.contact-kicker{
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(33,62,122,.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.contact-card h3{
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.contact-card p{
  margin: 0 0 16px;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.contact-action-group{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-info-card{
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.contact-info-card h3{
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.08;
}

@media (max-width: 1150px){
  .contact-grid,
  .contact-info-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .contact-card,
  .contact-info-card{
    padding: 18px;
  }

  .contact-action-group{
    display: grid;
    grid-template-columns: 1fr;
  }
}
html{
  scroll-behavior: smooth;
}

#services,
#why,
#contact,
#how{
  scroll-margin-top: 100px;
}

.desktop-nav a{
  position: relative;
}

.desktop-nav a:hover{
  color: var(--brand);
}

.desktop-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width .18s ease;
}

.desktop-nav a:hover::after{
  width: 100%;
}
/* ===== Premium mobile menu: single clean version ===== */
.mobile-menu{
  display: none;
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
  z-index: 120;
}

.mobile-menu summary{
  list-style: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: 0 14px 30px rgba(15,23,42,.10);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.mobile-menu summary:hover{
  background: #fff;
  box-shadow: 0 18px 38px rgba(15,23,42,.14);
}

.mobile-menu summary::-webkit-details-marker{
  display: none;
}

.mobile-menu summary::marker{
  content: "";
  display: none;
}

.mobile-menu summary .burger{
  width: 22px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu summary .burger span{
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand);
  transition: transform .22s ease, opacity .18s ease;
}

.mobile-menu[open] summary .burger span:nth-child(1){
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu[open] summary .burger span:nth-child(2){
  opacity: 0;
}

.mobile-menu[open] summary .burger span:nth-child(3){
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu-panel{
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: min(380px, calc(100vw - 28px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.97);
  border: 1px solid rgba(15,23,42,.07);
  box-shadow: 0 28px 60px rgba(15,23,42,.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 140;
}

.mobile-menu[open] .mobile-menu-panel{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav-links{
  display: grid;
  gap: 8px;
}

.mobile-nav-links a{
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.mobile-nav-links a:hover{
  background: rgba(33,62,122,.06);
  color: var(--brand);
  transform: translateX(2px);
}

.mobile-menu-cta{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(15,23,42,.08);
}

.mobile-menu-cta .btn{
  width: 100%;
  height: 50px;
}

/* desktop/mobile behavior */
@media (max-width: 900px){
  .desktop-nav,
  .nav-actions{
    display: none !important;
  }

  .mobile-menu{
    display: block;
  }

  .nav-row{
    min-height: 76px;
    align-items: center;
  }

  .brand{
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .brand-logo{
    width: 40px;
    height: 40px;
  }

  .brand-name{
    font-size: 18px;
    font-weight: 800;
    line-height: 1.08;
  }

  .brand-tag{
    display: none;
  }
}

@media (max-width: 640px){
  .mobile-menu-panel{
    width: calc(100vw - 28px);
    right: -2px;
  }

  .brand-name{
    font-size: 17px;
  }
}/* ===== FINAL mobile header layout fix ===== */
@media (max-width: 900px){
  .nav-row{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    min-height: 76px !important;
    flex-wrap: nowrap !important;
  }

  .brand{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }

  .brand-copy{
    min-width: 0 !important;
  }

  .brand-name{
    font-size: 16px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .brand-tag{
    display: none !important;
  }

  .brand-logo{
    width: 40px !important;
    height: 40px !important;
    flex: 0 0 auto !important;
  }

  .mobile-menu{
    display: block !important;
    margin-left: 0 !important;
    flex: 0 0 auto !important;
    align-self: center !important;
  }

  .mobile-menu summary{
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}.site-header{
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
}/* subtle scroll reveal */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .6s ease, transform .6s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}.service-card{
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}.btn{
  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}.trust-stars{
  animation:starPulse 4s infinite;
}

@keyframes starPulse{
  0%,100%{opacity:1}
  50%{opacity:.85}
}/* ===== Blog page ===== */
.service-hero-blog-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d9dde3, #b6c0cb);
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.blog-card{
  display: block;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
  color: inherit;
  text-decoration: none;
  min-width: 0;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.blog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  border-color: rgba(33,62,122,.12);
}

.blog-card-featured{
  grid-column: span 2;
}

.blog-card-media{
  height: 160px;
  border-bottom: 1px solid rgba(15,23,42,.06);
}

.blog-card-home{ background: linear-gradient(135deg, #dfe7f5, #b9c8e8); }
.blog-card-septic{ background: linear-gradient(135deg, #e6e1d6, #c8baa0); }
.blog-card-well{ background: linear-gradient(135deg, #d7e7f0, #abc9d7); }
.blog-card-radon{ background: linear-gradient(135deg, #d7e2f8, #a8bce9); }
.blog-card-sewer{ background: linear-gradient(135deg, #d9dde5, #aeb6c5); }
.blog-card-mold{ background: linear-gradient(135deg, #dce7df, #b1c6b5); }

.blog-card-body{
  padding: 20px;
}

.blog-tag{
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(33,62,122,.08);
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.blog-card h3{
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.12;
  transition: color .16s ease;
}

.blog-card:hover h3{
  color: var(--brand);
}

.blog-card p{
  margin: 0 0 14px;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}

.blog-meta{
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1150px){
  .blog-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card-featured{
    grid-column: span 2;
  }
}

@media (max-width: 640px){
  .blog-grid{
    grid-template-columns: 1fr;
  }

  .blog-card-featured{
    grid-column: span 1;
  }

  .blog-card-body{
    padding: 18px;
  }

  .blog-card-media{
    height: 140px;
  }
}
}.service-hero-blog-post-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d9dde3, #b6c0cb);
}

.blog-post-meta-hero{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.90);
  font-size: 15px;
  font-weight: 700;
}

.blog-post-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 28px;
  align-items: start;
}

.blog-post-main{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 28px 26px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.blog-post-intro p{
  margin-top: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
  font-weight: 650;
}

.blog-post-main h2{
  margin: 32px 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.blog-post-main p{
  margin: 0 0 16px;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.blog-pullquote{
  margin: 28px 0;
  padding: 22px 22px;
  border-left: 4px solid var(--brand);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border-radius: 0 18px 18px 0;
  color: #1f2937;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 750;
}

.blog-post-sidebar{
  display: grid;
  gap: 18px;
}

.blog-side-card{
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
}

.blog-side-card h3{
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.12;
}

.blog-side-card p{
  margin: 0 0 16px;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 650;
}

.blog-side-actions{
  display: grid;
  gap: 10px;
}

.blog-side-actions .btn{
  width: 100%;
}

.blog-side-links{
  display: grid;
  gap: 10px;
}

.blog-side-links a{
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  color: #334155;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(33,62,122,.04);
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.blog-side-links a:hover{
  background: rgba(33,62,122,.08);
  color: var(--brand);
  transform: translateX(2px);
}

@media (max-width: 1150px){
  .blog-post-layout{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .blog-post-main,
  .blog-side-card{
    padding: 18px;
  }

  .blog-post-main h2{
    font-size: 26px;
  }

  .blog-pullquote{
    font-size: 20px;
    padding: 18px;
  }
}
/* ===== Reviews page highlight boxes restore ===== */
.review-highlight-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.review-highlight-card{
  display: block !important;
  background: linear-gradient(180deg, #ffffff, #f8fafc) !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  border-radius: 22px !important;
  padding: 22px 20px !important;
  box-shadow: 0 14px 34px rgba(15,23,42,.05) !important;
}

.review-highlight-card h3{
  margin: 0 0 10px !important;
  font-size: 22px !important;
  line-height: 1.12 !important;
}

.review-highlight-card p{
  margin: 0 !important;
  color: #475569 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 650 !important;
}

@media (max-width: 1150px){
  .review-highlight-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px){
  .review-highlight-grid{
    grid-template-columns: 1fr !important;
  }

  .review-highlight-card{
    padding: 18px !important;
  }
}
.review-meta{
  margin-top:6px;
  color:#64748b;
  font-size:14px;
  font-weight:700;
}
/* ===== Reviews page: actual review cards restore ===== */
.reviews-grid{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.review-card{
  display: block !important;
  background: #fff !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  border-radius: 22px !important;
  padding: 22px 20px !important;
  box-shadow: 0 14px 34px rgba(15,23,42,.05) !important;
}

.review-stars{
  color: var(--gold) !important;
  font-size: 22px !important;
  letter-spacing: 2px !important;
  margin-bottom: 14px !important;
}

.review-quote{
  margin: 0 0 14px !important;
  color: #334155 !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  font-weight: 650 !important;
}

.review-meta{
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #64748b !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

.review-meta svg{
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 auto !important;
}

@media (max-width: 1150px){
  .reviews-grid{
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 640px){
  .reviews-grid{
    grid-template-columns: 1fr !important;
  }

  .review-card{
    padding: 18px !important;
  }
}
/* ===== Premium review card hover ===== */
.review-card{
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

.review-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  border-color: rgba(33,62,122,.12);
}
.service-hero-location-page{
  background:
    linear-gradient(to bottom, rgba(9,14,30,.34), rgba(9,14,30,.58)),
    linear-gradient(135deg, #d9dde3, #b6c0cb);
}

.location-links-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-link-card{
  display: block;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 22px;
  padding: 22px 20px;
  box-shadow: 0 14px 34px rgba(15,23,42,.05);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.location-link-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  border-color: rgba(33,62,122,.12);
}

.location-link-card h3{
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.location-link-card p{
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

@media (max-width: 1150px){
  .location-links-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .location-links-grid{
    grid-template-columns: 1fr;
  }

  .location-link-card{
    padding: 18px;
  }
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:10px;
}

.footer-links a{
  color:inherit;
  text-decoration:none;
  font-weight:700;
  opacity:.9;
}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
.blog-card-link{
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

