/* Sync marker: 2026-02-23 */
/* Force main content to stay within viewport on mobile */
.container,
.section,
footer,
main,
body > div:not(.hero) {  /* adjust selectors to match your structure */
  max-width: 100%;
  overflow-x: hidden;     /* prevents horizontal scroll */
  box-sizing: border-box;
}

/* Specifically target the bottom split cards that were overflowing */
@media (max-width: 768px) {
  /* Narrow selectors to the two side-by-side soft-cards in the .split layout */
  .split .soft-card {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;   /* match your .container padding */
    padding-right: 18px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: visible;
    box-sizing: border-box;
  }
  
  .split .soft-card .review-card {
    width: 100%;
    max-width: 100vw;
    padding-left: 18px;   /* match your .container padding */
    padding-right: 18px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  .split .soft-card .review-strip {
    width: 100%;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
    box-sizing: border-box;
  }

  /* Extra safety: only target inline width/min-width on elements inside the split soft-cards */
  .split .soft-card [style*="width:"],
  .split .soft-card [style*="min-width:"] {
    max-width: 100% !important;
  }
}
/* Tahoma Pest - lightweight static site */
:root{
  --bg:#ffffff;
  --card:#f6f8fb;
  --text:#0b1220;
  --muted:#546174;
  --border:#dbe3ee;
  --accent:#1fc510;
  --accent2:#38d93a;
}

*{box-sizing:border-box}
html,body{
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1080px;margin:0 auto;padding:0 18px}

.header-inner{display:flex;gap:16px;align-items:center;justify-content:space-between;padding:14px 0}

.nav{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.nav a{font-size:14px;color:var(--muted);padding:6px 8px;border-radius:10px}
.nav a:hover{background:color-mix(in srgb, var(--card) 85%, transparent);color:var(--text);text-decoration:none}

.header-cta{display:flex;gap:10px;align-items:center}
.btn{display:inline-flex;align-items:center;justify-content:center;border-radius:14px;padding:10px 14px;font-weight:650;font-size:14px;border:1px solid var(--border);cursor:pointer}
.btn-primary{background:var(--accent);color:#061007;border-color:color-mix(in srgb, var(--accent) 60%, #000)}
.btn-primary:hover{text-decoration:none;filter:brightness(1.05)}
.btn-ghost{background:transparent;color:var(--text)}
.btn-ghost:hover{text-decoration:none;background:color-mix(in srgb, var(--card) 85%, transparent)}
.hero h1{margin:0 0 10px 0;font-size:34px;line-height:1.15;letter-spacing:-.3px}
.home-hero-headline{
  margin:0 0 4px 0;
  font-size:clamp(13px, 1.3vw, 17px);
  line-height:1.2;
  letter-spacing:0;
  font-weight:500;
  color:var(--muted);
  text-align:center;
}
.lead{margin:0 0 16px 0;font-size:18px;color:var(--muted);max-width:80ch}
.micro{margin:10px 0 0 0;font-size:12px}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.residential-hero-meta,
.commercial-hero-meta,
.service-area-hero-meta,
.about-hero-meta{
  margin-top:6px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) clamp(320px, 36vw, 520px);
  align-items:start;
  gap:20px;
}

.residential-service-areas,
.commercial-service-areas,
.service-area-service-areas,
.about-service-areas{
  margin:0;
  max-width:58ch;
}

.residential-hero-figure,
.commercial-hero-figure,
.service-area-hero-figure,
.about-hero-figure{
  margin:0;
  justify-self:end;
  align-self:start;
  width:100%;
}

.residential-hero-figure img,
.commercial-hero-figure img,
.service-area-hero-figure img,
.about-hero-figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid var(--border);
}

.about-hero-meta{
  grid-template-columns:minmax(0, 1fr) clamp(360px, 40vw, 560px);
}

.about-hero-copy-wrap{
  min-width:0;
}

.about-owner-card{
  width:clamp(240px, 30vw, 340px);
  min-height:clamp(190px, 24vw, 250px);
  margin-top:18px;
  padding:16px 18px;
  border:1px solid var(--border);
  border-radius:14px;
  background:var(--card);
}

.about-owner-name{
  margin:0 0 4px;
  font-size:32px;
  line-height:1.05;
  font-weight:700;
  font-family:"Brush Script MT","Segoe Script",cursive;
}

.about-owner-title{
  margin:0 0 8px;
  font-size:17px;
  line-height:1.2;
  font-weight:500;
}

.about-owner-cred{
  margin:0 0 4px;
  font-size:15px;
  line-height:1.25;
}

.about-owner-links{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.about-owner-linkedin{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
}

.about-owner-linkedin svg{
  width:28px;
  height:28px;
}

.about-owner-linkedin rect{
  fill:#0A66C2;
}

.about-owner-linkedin path{
  fill:#ffffff;
}

.about-owner-email-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
}

.about-owner-email-icon svg{
  width:28px;
  height:28px;
}

.about-owner-email-icon rect{
  fill:#2b5aa2;
}

.about-owner-email-icon path{
  fill:#ffffff;
}

.home-problems-card{
  position:relative;
}

.home-csg-logo-wrap{
  position:absolute;
  right:72px;
  top:96px;
  width:clamp(220px, 24vw, 320px);
  margin:0;
  pointer-events:none;
}

.home-csg-logo{
  width:100%;
  height:auto;
  display:block;
}

main{
  flex: 1 0 auto;
  padding-top: 80px;
}

footer{
  flex-shrink: 0;
}

.section{padding:28px 0}
.card{background:var(--card);border:1px solid var(--border);border-radius:18px;padding:18px}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}
.col-6{grid-column:span 6}
.col-12{grid-column:span 12}
@media (max-width:820px){
  .col-6{grid-column:span 12}
  .hero h1{font-size:30px}
}
@media (max-width:768px){
  .residential-hero-meta,
  .commercial-hero-meta,
  .service-area-hero-meta,
  .about-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(96px, 34vw, 138px);
    align-items:start;
    gap:10px;
  }

  .residential-service-areas,
  .commercial-service-areas,
  .service-area-service-areas,
  .about-service-areas{
    max-width:34ch;
    line-height:1.35;
  }

  .residential-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(190px, 52vw, 310px);
    gap:12px;
  }

  .commercial-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(190px, 52vw, 310px);
    gap:12px;
  }

  .service-area-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(190px, 52vw, 310px);
    gap:12px;
  }

  .about-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(220px, 58vw, 340px);
    grid-template-areas:
      "service image"
      "owner owner";
    gap:10px 12px;
  }

  .about-hero-copy-wrap{
    display:contents;
  }

  .about-owner-card{
    grid-area:owner;
    width:100%;
    max-width:none;
    min-height:0;
    margin-top:2px;
    padding:10px 12px;
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    column-gap:10px;
    row-gap:2px;
    align-items:center;
  }

  .about-owner-name{
    font-size:28px;
    margin:0;
    line-height:1;
  }

  .about-owner-title{
    font-size:16px;
    margin:0;
  }

  .about-owner-cred{
    font-size:14px;
    margin:0;
  }

  .about-owner-links{
    margin-top:0;
    grid-column:2;
    grid-row:1 / span 4;
    align-self:center;
  }

  .about-service-areas{
    grid-area:service;
  }

  .about-hero-figure{
    grid-area:image;
  }

  .residential-hero-figure{
    margin-top:10px;
  }

  .commercial-hero-figure{
    margin-top:10px;
  }

  .service-area-hero-figure{
    margin-top:10px;
  }

  .about-hero-figure{
    margin-top:10px;
  }

  .residential-service-areas{
    margin-top:10px;
  }

  .commercial-service-areas{
    margin-top:10px;
  }

  .service-area-service-areas{
    margin-top:10px;
  }

  .about-service-areas{
    margin-top:10px;
  }

  .home-csg-logo-wrap{
    right:20px;
    top:82px;
    width:clamp(130px, 34vw, 190px);
  }
}
h2{margin:0 0 10px 0;font-size:20px}
p{margin:0 0 12px 0}
ul{margin:0;padding-left:18px}
li{margin:6px 0}
.muted{color:var(--muted)}
.kicker{font-size:12px;letter-spacing:.15em;text-transform:uppercase;color:var(--muted);margin-bottom:8px}

.site-footer{margin-top:30px;border-top:1px solid var(--border);padding:22px 0}
.footer-inner{display:flex;gap:18px;justify-content:space-between;align-items:flex-start;flex-wrap:wrap}
.footer-title{font-weight:750;margin-bottom:6px}
.footer-actions{display:flex;gap:10px;flex-wrap:wrap}
.footer-bottom{padding-top:12px}
.note{font-size:13px;color:var(--muted)}


/* --- Human touches / imagery --- */
.caption {
  font-size: 0.95rem;
  color: #444;
  margin-top: 8px;
}
.soft-card {
  background: #fbfbfb;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px;
  overflow: visible;
}
.field-notes {
  border-left: 4px solid #1fc510;
}
.field-notes h3 {
  margin-top: 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.photo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.photo-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid #ececec;
}

/* Reviews scroller */
.review-strip {
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  gap: 12px;
  padding: 6px 2px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-strip::-webkit-scrollbar {
  height: 8px;
}

.review-strip::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.review-strip::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.review-strip::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.review-card {
  min-width: 260px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}
.review-card .meta {
  font-size: 0.9rem;
  color: #555;
  margin-top: 10px;
}
.badge-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.badge-row img {
  height: 32px;
  width: auto;
  opacity: 0.9;
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .photo-block { grid-template-columns: 1fr; }
}

/* Reviews page: keep top review CTA + illustration side-by-side without shifting other blocks */
.review-hero{ display:flex; align-items:flex-start; gap:28px; margin-top:18px; }
.review-hero-left{ flex: 1 1 520px; min-width: 320px; }
.review-hero-right{ flex: 0 0 420px; max-width: 420px; }
.page-illus{ width:100%; height:auto; display:block; border-radius:14px; box-shadow: 0 10px 26px rgba(0,0,0,.10); }
@media (max-width: 980px){
  .review-hero{ flex-direction: column; }
  .review-hero-right{ max-width: 520px; width:100%; }
}

/* HomeAdvisor review cards */
.reviews-grid{ display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 12px; }
.review-card{ background:#fff; border:1px solid rgba(0,0,0,.08); border-radius:14px; padding:14px; }
.review-head{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; margin-bottom:8px; }
.stars{ letter-spacing: 1px; }
.review-quote{ line-height:1.45; }
.review-source{ margin-top:10px; font-size:12px; opacity:.8; }
@media (max-width: 860px){
  .reviews-grid{ grid-template-columns: 1fr; }
}



/* --- TSPS header/logo sizing (override) --- */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0; /* allows text to wrap instead of overlap */
}

.brand img{
  width: 48px;         /* "about twice" typical small logo */
  height: auto;
  flex: 0 0 auto;      /* never shrink into the text */
  display: block;
}

.brand span{
  display: block;
  min-width: 0;
}

@media (max-width: 768px){
  .brand img{
    width: 42px;
  }
  .brand{
    gap: 10px;
  }
}
.nav{display:flex;gap:18px;flex-wrap:wrap;justify-content:flex-end}

@media (min-width: 769px){
  .nav{
    display:grid;
    grid-template-columns:repeat(4, max-content);
    justify-content:end;
    column-gap:18px;
    row-gap:6px;
  }

  .nav-link-residential{grid-column:1;grid-row:1}
  .nav-link-service-area{grid-column:2;grid-row:1}
  .nav-link-faq{grid-column:3;grid-row:1}
  .nav-link-about{grid-column:4;grid-row:1}
  .nav-link-commercial{grid-column:1;grid-row:2}
  .nav-link-wildlife{grid-column:2;grid-row:2}
  .nav-link-reviews{grid-column:3;grid-row:2}
}





/* --- Footer --- */
.site-footer{margin-top:auto;border-top:1px solid var(--border);padding:22px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:nowrap;max-width:1080px;margin:0 auto;padding:8px 16px}
.footer-copy{font-size:12px;opacity:.72;white-space:nowrap}
.footer-copy a{opacity:.9;text-decoration:none}
.footer-copy a:hover{text-decoration:underline}
.footer-icons{display:flex;flex-direction:row;align-items:center;gap:12px;flex-wrap:nowrap}
.footer-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;height:20px;opacity:.9;color:inherit;text-decoration:none}
.footer-icon:hover{opacity:1}
.footer-icon svg{width:20px;height:20px;fill:currentColor}
.footer-icon.x{color:#000}
.footer-icon.blog{color:#21759b}
.footer-icon.fb{color:#1877F2}
.footer-icon.yt{color:#FF0000}
.footer-icon.mail{color:#111}
.footer-icon.li{color:#0A66C2}
@media (max-width:520px){
  .footer-inner{flex-wrap:wrap;justify-content:center}
  .footer-icons{order:1;width:100%;justify-content:center}
  .footer-inner .footer-copy{order:2;width:100%;text-align:center}
  .footer-copy{white-space:normal;text-align:center}
}




/* --- Reviews hero layout --- */
.review-hero{display:flex;align-items:flex-start;gap:24px;margin-top:18px}
.review-hero-left{flex:1 1 520px;min-width:320px}
.review-hero-right{flex:0 0 420px;max-width:420px}
.page-illus{width:100%;height:auto;display:block;border-radius:14px;box-shadow:0 10px 26px rgba(0,0,0,.10)}
@media (max-width:980px){
  .review-hero{flex-direction:column}
  .review-hero-right{max-width:520px;width:100%}
}


/* ===== HERO (baked image + invisible clickable hotspots) ===== */
.hero{
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 18px;
  position: relative;
}

.hero img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

/* Make hotspots reliably clickable */
.hero a[class^="hero-hotspot"]{
  position: absolute;
  display: block;
  z-index: 20;
  pointer-events: auto;
  background: rgba(0,0,0,0); /* invisible but "real" */
}

/* Desktop hotspot geometry (based on your magenta screenshot) */
.hero-hotspot-call{
  left: 14.5%;
  width: 20.8%;
  bottom: 18%;
  height: 14%;
}

.hero-hotspot-text{
  left: 49.5%;
  width: 20.8%;
  bottom: 18%;
  height: 14%;
}

.hero-hotspot-reviews{
  left: 75.5%;
  width: 20.8%;
  bottom: 8%;
  height: 10%;
}

/* Mobile: make tap targets slightly bigger */
@media (max-width: 768px){
  .hero{
    padding: 22px 14px;
  }
  .hero img{
    border-radius: 18px;
  }

  .hero-hotspot-call,
  .hero-hotspot-text{
    bottom: 16%;
    height: 16%;
  }

  .hero-hotspot-reviews{
    bottom: 6%;
    height: 12%;
  }
}

/* ================================================
   Header - General
   ================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  height: 80px;
  box-sizing: border-box;
}

.brand-logo {
  height: 68px;
  width: auto;
  max-width: 280px;
  display: block;
  transition: transform 0.2s ease;
}

.brand-logo:hover {
  transform: scale(1.28);
}

.brand-logo-link:focus-visible .brand-logo {
  transform: scale(1.28);
}

.brand-logo-link:active .brand-logo {
  transform: scale(1.34);
}

.brand-logo-link {
  display: block;
  line-height: 0;
}

.header-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: auto;
  height: 40px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #eef2f5;
  color: #111111;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle:hover {
  background: color-mix(in srgb, var(--card) 85%, transparent);
}

.nav-toggle:focus,
.nav-toggle:active {
  background: #eef2f5;
  color: #111111;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.nav-toggle-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle-bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  border-radius: 2px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn-call {
  background: #2f8f3a;
  color: #ffffff;
  border-color: #256f2d;
  text-decoration: none;
}

.btn-call:hover {
  filter: brightness(1.06);
  text-decoration: none;
}

.btn-text {
  background: #2b5aa2;
  color: #ffffff;
  border-color: #224882;
  text-decoration: none;
}

.btn-text:hover {
  filter: brightness(1.06);
  text-decoration: none;
}

.sms-link {
  color: #2b5aa2;
  text-decoration: underline;
  cursor: pointer;
}

.sms-link:hover {
  color: #1f4580;
}

.license-tooltip {
  position: relative;
  cursor: help;
  text-decoration: underline dotted;
  text-decoration-color: var(--muted);
}

.license-bubble {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2a36;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 100;
  transition: opacity 0.2s, visibility 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.license-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #1f2a36 transparent transparent transparent;
}

.license-tooltip:hover .license-bubble,
.license-tooltip:focus .license-bubble,
.license-tooltip:active .license-bubble {
  visibility: visible;
  opacity: 1;
}

.inline-action-link {
  color: #2b5aa2;
  text-decoration: underline;
  cursor: pointer;
}

.inline-action-link:hover {
  color: #1f4580;
  text-decoration: underline;
}

.btn-client-login {
  background: #6c757d;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-client-login-label {
  display: inline;
}

.btn-client-login:hover {
  background: #5a6268;
}

/* ================================================
   Mobile adjustments (below 768px)
   ================================================ */

@media (max-width: 768px) {
  .site-header {
    padding: 10px 14px;
    min-height: 70px;
    height: auto;
    flex-wrap: wrap;
  }

  .header-inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
  }

  .header-text,
  .site-title-text,
  .header-subtitle,
  .site-header p,
  .site-header span:not(.brand-logo):not(.nav-toggle-label):not(.btn-client-login-label) {
    display: none !important;
  }

  .brand-logo {
    height: 48px;
    max-width: 240px;
  }

  .brand {
    order: 1;
  }

  .header-buttons {
    order: 2;
    flex-direction: row;
    gap: 8px;
    margin-top: 0;
    width: auto;
    align-items: center;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
    display: none;
    flex-wrap: wrap;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .btn-client-login,
  .btn-call,
  .btn-text {
    width: auto;
    padding: 8px 16px;
    font-size: 13px;
    text-align: center;
  }

  .btn-client-login {
    padding: 6px 10px;
    font-size: 12px;
    min-width: 76px;
  }

  .btn-client-login-label {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 8px 10px;
  }

  .site-header .container {
    padding-left: 0;
    padding-right: 0;
  }

  .header-inner {
    row-gap: 8px;
    column-gap: 8px;
  }

  .brand-logo {
    height: 42px;
    max-width: 200px;
  }

  .header-buttons {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .nav-toggle,
  .btn-call,
  .btn-text,
  .btn-client-login {
    flex: 1 1 0;
    min-width: 0;
    padding: 7px 6px;
    font-size: 12px;
  }

  .nav-toggle {
    justify-content: center;
  }

  .nav-toggle-label {
    font-size: 11px;
  }

  .btn-client-login-label {
    line-height: 1.05;
  }
}

@media (max-width: 768px) {
  .reviews-intro-section {
    padding-bottom: 8px;
  }

  .reviews-intro-section .review-hero {
    margin-top: 12px;
    gap: 10px;
  }

  .reviews-intro-section .review-hero-left {
    flex: 0 0 auto;
    min-width: 0;
  }

  .reviews-intro-section .review-hero-right {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .reviews-google-section {
    padding-top: 8px;
  }
}

@media (max-width: 520px) {
  .section {
    padding: 22px 0;
  }

  .grid {
    gap: 12px;
  }

  .card,
  .soft-card {
    padding: 16px;
  }

  .lead {
    font-size: 17px;
    margin-bottom: 14px;
  }

  p {
    margin-bottom: 10px;
  }

  li {
    margin: 5px 0;
  }

  .residential-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(180px, 56vw, 292px);
    gap:10px;
  }

  .commercial-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(180px, 56vw, 292px);
    gap:10px;
  }

  .service-area-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(180px, 56vw, 292px);
    gap:10px;
  }

  .about-hero-meta{
    grid-template-columns:minmax(0, 1fr) clamp(210px, 62vw, 330px);
    gap:10px;
  }

  .about-owner-card{
    margin-top:0;
    padding:9px 10px;
    column-gap:8px;
    row-gap:1px;
  }

  .about-owner-name{
    font-size:22px;
  }

  .about-owner-title{
    font-size:14px;
  }

  .about-owner-cred{
    font-size:12px;
  }

  .about-owner-linkedin,
  .about-owner-linkedin svg,
  .about-owner-email-icon,
  .about-owner-email-icon svg{
    width:24px;
    height:24px;
  }

  .residential-hero-figure{
    margin-top:8px;
  }

  .commercial-hero-figure{
    margin-top:8px;
  }

  .service-area-hero-figure{
    margin-top:8px;
  }

  .about-hero-figure{
    margin-top:8px;
  }

  .residential-service-areas{
    margin-top:12px;
  }

  .commercial-service-areas{
    margin-top:12px;
  }

  .service-area-service-areas{
    margin-top:12px;
  }

  .about-service-areas{
    margin-top:12px;
  }

  .home-csg-logo-wrap{
    right:14px;
    top:78px;
    width:clamp(120px, 36vw, 175px);
  }
}

.faq-more {
  display: inline;
  position: relative;
}

.faq-intro {
  margin-top: 6px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(320px, 36vw, 520px);
  align-items: start;
  gap: 20px;
}

.faq-intro-copy {
  margin: 0;
  min-width: 0;
}

.faq-intro-figure {
  justify-self: end;
  align-self: start;
  width: 100%;
  margin: 0;
}

.faq-main-section{
  padding-top: 22px;
}

.faq-intro-figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.faq-tagline-break {
  display: inline;
}

.faq-more summary {
  display: inline;
  color: #2b5aa2;
  text-decoration: underline;
  cursor: pointer;
  list-style: none;
}

.faq-more summary::-webkit-details-marker {
  display: none;
}

.faq-more .faq-more-bubble {
  display: block;
  position: absolute;
  left: 0;
  top: 1.4em;
  z-index: 300;
  width: min(620px, calc(100vw - 48px));
  max-height: 60vh;
  overflow: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  padding: 12px 14px;
}

.faq-more .faq-more-bubble p:last-child {
  margin-bottom: 0;
}

@media (max-width: 520px) {
  .faq-more .faq-more-bubble {
    width: min(94vw, 520px);
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .faq-more {
    display: block;
    position: static;
    margin-top: 8px;
  }

  .faq-more summary {
    display: inline-block;
  }

  .faq-more .faq-more-bubble {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    margin-top: 10px;
    left: auto;
    top: auto;
    transform: none;
  }
}

@media (max-width: 768px) {
  .faq-intro {
    grid-template-columns: minmax(0, 1fr) clamp(180px, 48vw, 300px);
    align-items: flex-start;
    gap: 12px;
  }

  .faq-intro-figure {
    width: 100%;
    margin-top: 18px;
  }

  .faq-main-section{
    padding-top: 0;
  }

  .faq-tagline-break {
    display: block;
  }
}

@media (max-width: 520px) {
  .faq-intro-figure {
    margin-top: 24px;
  }
}

.marching-bottom-strip{
  padding: 0 0 2px;
}

.marching-bottom-image{
  display:block;
  width:min(100%, 740px);
  margin: 0 auto;
  height:auto;
}

@media (max-width: 768px){
  .marching-bottom-image{
    width:min(100%, 520px);
  }
}
