/* ==================================================================
   sasquatch-chrome.css — REFRESHED NAV v2 (Sept 6 2026)
   Fixes: hamburger on RIGHT, mobile drawer full-screen, rebate promo
   contrast, desktop CTA layout, nav text Poppins SemiBold.
   ================================================================== */

/* ==================================================================
   BATCH 74 — Poppins font-weight rescue (Sept 10 2026)
   -----
   PROBLEM: A font-optimization plugin cached Google Fonts locally
   with WRONG weight-to-file mappings. What the browser was serving:
     weight 500 slot → actual Bold (700) file
     weight 600 slot → actual ExtraBold or wider file
     weight 700 slot → actual Medium (500) file
   Result: our `font-weight: 600` (SemiBold) requests rendered as Bold.
   -----
   FIX: Declare `SQ-Poppins` family from Google's own CDN with the
   correct file-to-weight mapping, then force it as the primary
   family sitewide. Falls back to `Poppins` and system fonts if the
   CDN is blocked.
   -----
   TODO (post-launch, non-blocker): identify which plugin owns the
   /wp-content/cache/fonts/ dir (likely OMGF, WP Rocket, Autoptimize,
   or Perfmatters) and either purge/regenerate its cache with correct
   weights, or disable its Google Fonts handling entirely. Once the
   underlying cache is fixed, this batch can be removed.
   ================================================================== */
@font-face { font-family:'SQ-Poppins'; font-style:normal; font-weight:400; font-display:swap;
  src:url('https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrJJfecnFHGPc.woff2') format('woff2'); }
@font-face { font-family:'SQ-Poppins'; font-style:normal; font-weight:500; font-display:swap;
  src:url('https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2') format('woff2'); }
@font-face { font-family:'SQ-Poppins'; font-style:normal; font-weight:600; font-display:swap;
  src:url('https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2') format('woff2'); }
@font-face { font-family:'SQ-Poppins'; font-style:normal; font-weight:700; font-display:swap;
  src:url('https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2') format('woff2'); }

/* Force SQ-Poppins as the primary family site-wide.
   Three layers, each stronger than the last, so we catch elements
   with any level of parent-theme specificity:
     Layer 1: html body                             (0,0,2)
     Layer 2: html body :not(icons...)              (0,~3,~4) — the workhorse
     Layer 3: nuclear selectors for known-fighting  (varies, >= (0,3,1))
   Layer 2 caught most things previously but lost the specificity fight
   with rules like `.site-nav .nav-menu .nav-item > a` — hence Layer 3. */
html body{
  font-family:'SQ-Poppins','Poppins',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif !important;
}
html body :not(i):not(.fa):not([class*="fa-"]):not([class*="icon-"]):not([class*="dashicons"]):not(svg):not(svg *){
  font-family:'SQ-Poppins','Poppins',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif !important;
}
/* Icomoon icon font (parent theme's custom icon set — .icon-thumbs-shield, etc.)
   Nuclear specificity: 4× [class*="icon-"] beats Layer 2's (0,3,5) with (0,4,2). */
html body [class*="icon-"][class*="icon-"][class*="icon-"][class*="icon-"]{
  font-family:'icomoon' !important;
}
html body .site-nav .nav-menu .nav-item > a,
html body .site-nav .nav-menu .nav-item > a:link,
html body .site-nav .nav-menu .nav-item > a:visited,
html body .site-nav .nav-menu .nav-item > button,
html body header .site-nav .nav-item > a,
html body .nav-item > a,
html body .nav-item > button,
html body .site-nav .nav-dropdown a,
html body .site-nav .nav-dropdown a:link,
html body .site-nav .nav-dropdown a:visited,
html body .nav-dropdown a,
html body .nav-dropdown .dd-col a,
html body .nav-dropdown .dd-promo,
html body .nav-cta, html body a.nav-cta,
html body .drawer-cta, html body a.drawer-cta,
html body .tb-inner, html body .tb-inner *,
html body .tb-item, html body .tb-item *,
html body .tb-item strong{
  font-family:'SQ-Poppins','Poppins',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif !important;
}
/* Icon fonts — restore their native family so FontAwesome/Dashicons keep working */
html body .fa, html body .fas, html body .far, html body .fal, html body .fab,
html body [class^="fa-"], html body [class*=" fa-"]{
  font-family:"Font Awesome 5 Free","Font Awesome 5 Pro","Font Awesome 5 Brands",FontAwesome !important;
}
html body [class*="dashicons"]{
  font-family: dashicons !important;
}

:root{
  --sq-teal:#007363;
  --sq-teal-dark:#005044;
  --sq-gold:#d6a172;
  --sq-gold-dark:#c18043;
  --sq-cream:#f9f6ef;
  --sq-border:#eee5d3;
  --sq-muted:#5b6a65;
  --sq-ink:#005044;
  --sq-ease:cubic-bezier(.4,0,.2,1);
  --sq-radius-pill:999px;
}

/* Kill any lingering old-chrome floating pills */
.float-btn,
.float-btn-text,
button.float-btn{ display:none !important; }

/* ==================================================================
   TOP NAV (site-nav) — desktop
   ================================================================== */
/* Nuclear sticky: force BOTH the outer header AND the nav to be sticky.
   Some parent theme rules were breaking sticky context on the inner nav. */
html body #masthead,
html body header#masthead.site-header{
  position:sticky !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  z-index:200 !important;
  background:#fff !important;
}
.site-nav{
  position:sticky;
  top:0;
  left:0;
  right:0;
  z-index:100;
  background:#fff;
  box-shadow:0 2px 12px rgba(0,35,30,.06);
}
/* Any parent between body and header must not clip or transform, or sticky breaks */
html body #page,
html body #page.site,
html body .site{
  overflow:visible !important;
  transform:none !important;
}
.nav-inner{
  max-width:1280px;
  margin:0 auto;
  padding:14px 28px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
}
.nav-logo{ display:inline-flex; align-items:center }
.nav-logo img{ height:60px; width:auto; display:block }
.nav-menu{
  display:flex;
  gap:6px;
  justify-content:center;
  align-items:center;
}
.nav-item{ position:relative }
.nav-item > a,
.nav-item > button{
  background:transparent;
  border:0;
  font-family:Poppins,system-ui,sans-serif;
  cursor:pointer;
  color:#005044;
  font-weight:600;
  font-size:.95rem;
  padding:10px 14px;
  border-radius:var(--sq-radius-pill);
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
  transition:background .2s var(--sq-ease), color .2s var(--sq-ease);
}
.nav-item > a:hover,
.nav-item > button:hover{ background:rgba(0,70,61,.08) }
.nav-item > a:focus-visible,
.nav-item > button:focus-visible{
  outline:2px solid var(--sq-gold);
  outline-offset:3px;
}
.nav-item .arrow{
  font-size:.65rem;
  opacity:.75;
  transition:transform .2s var(--sq-ease);
  display:inline-block;
}
.nav-item.open .arrow{ transform:rotate(180deg) }

/* Nav CTA — matches hero button dark teal fill + WHITE calendar icon.
   Gold border 3px (1px thicker than hero CTAs' 2px) for standout differentiation. */
.nav-cta,
header .nav-cta,
#masthead .nav-cta,
html body #masthead .nav-cta{
  background:linear-gradient(#005044,#005044) padding-box, linear-gradient(135deg,#f1d5a2 0%,#e8b380 100%) border-box !important;
  color:#fff !important;
  padding:0 22px !important;
  border:3px solid transparent !important;
  border-radius:999px !important;
  font-family:Poppins,system-ui,sans-serif !important;
  font-weight:600 !important;
  font-size:.92rem !important;
  letter-spacing:.01em !important;
  text-decoration:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  transition:transform .2s ease, background .2s ease, border-color .2s ease !important;
  white-space:nowrap !important;
  height:48px !important;
  min-height:48px !important;
  box-sizing:border-box !important;
  box-shadow:none !important;
  -webkit-box-shadow:none !important;
  cursor:pointer !important;
  line-height:1 !important;
}
.nav-cta-icon{
  width:18px;
  height:18px;
  flex-shrink:0;
  color:#ffffff;
  display:block;
}
.nav-cta-icon-img{
  width:18px;
  height:18px;
  flex-shrink:0;
  display:block;
  object-fit:contain;
}
.nav-cta-label{
  display:inline-block;
  font-weight:600;
}
.nav-cta:hover,
.nav-cta:focus-visible,
header .nav-cta:hover,
#masthead .nav-cta:hover,
html body #masthead .nav-cta:hover{
  background:linear-gradient(#004840,#004840) padding-box, linear-gradient(135deg,#f1d5a2 0%,#e8b380 100%) border-box !important;
  color:#fff !important;
  transform:translateY(-1px) !important;
  box-shadow:none !important;
  -webkit-box-shadow:none !important;
}
.nav-cta:focus-visible{
  outline:2px solid var(--sq-gold) !important;
  outline-offset:3px !important;
}

/* Mobile hamburger + tel — HIDDEN by default at desktop */
.nav-toggle,
.nav-tel-mobile{
  display:none !important;
  background:transparent;
  border:0;
  color:var(--sq-teal-dark);
  padding:10px;
  border-radius:12px;
  cursor:pointer;
  min-width:44px;
  min-height:44px;
  align-items:center;
  justify-content:center;
}
.nav-toggle svg{
  width:26px;
  height:26px;
  stroke:currentColor;
  fill:none;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.nav-tel-mobile svg{
  width:22px;
  height:22px;
  fill:currentColor;
}
.nav-toggle:focus-visible,
.nav-tel-mobile:focus-visible{
  outline:2px solid var(--sq-gold);
  outline-offset:2px;
}

/* ==================================================================
   DESKTOP MEGA DROPDOWNS
   ================================================================== */
.nav-item.has-dropdown{ position:relative }
.nav-item.has-dropdown > a{ cursor:pointer }
.nav-dropdown{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  background:#fff;
  padding:22px 26px;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,35,30,.15);
  border:1px solid var(--sq-border);
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .18s var(--sq-ease), transform .18s var(--sq-ease), visibility .18s;
  z-index:1000;
  pointer-events:none;
}
.nav-item.open .nav-dropdown{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.nav-dropdown a:not(.dd-promo){
  display:flex;
  align-items:center;
  color:var(--sq-teal-dark);
  text-decoration:none;
  padding:10px 14px;
  border-radius:8px;
  font-family:Poppins,system-ui,sans-serif;
  font-size:.95rem;
  font-weight:500;
  line-height:1.35;
  min-height:44px;
  white-space:nowrap;
  transition:background .15s var(--sq-ease);
}
.nav-dropdown a:not(.dd-promo):hover,
.nav-dropdown a:not(.dd-promo):focus-visible{
  background:rgba(0,70,61,.06);
  color:var(--sq-teal-dark);
  outline:none;
}
.dd-columns{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 32px;
  min-width:560px;
}
.dd-col{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.dd-heading{
  font-family:Poppins,system-ui,sans-serif;
  color:var(--sq-muted);
  font-size:.7rem;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  padding:0 14px 8px;
}
.dd-single{
  min-width:260px;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.dd-footer{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--sq-border);
}
/* Rebate promo — Option G: cream chip + LEAF icon in teal + arrow right */
.dd-promo{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  background:#f9f6ef !important;
  color:#005044 !important;
  padding:14px 20px !important;
  height:auto !important;
  min-height:0 !important;
  border:0 !important;
  border-radius:12px !important;
  font-family:Poppins,system-ui,sans-serif !important;
  font-weight:600 !important;
  font-size:.9rem !important;
  letter-spacing:.01em !important;
  line-height:1.35 !important;
  text-decoration:none !important;
  box-sizing:border-box !important;
  box-shadow:0 2px 8px rgba(0,0,0,.06) !important;
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease !important;
}
.dd-promo:hover,
.dd-promo:focus-visible{
  background:#ffffff !important;
  color:#005044 !important;
  transform:translateY(-1px) !important;
  box-shadow:0 4px 14px rgba(0,0,0,.10) !important;
  outline:none !important;
}
.dd-promo svg{
  width:20px !important;
  height:20px !important;
  flex-shrink:0 !important;
  fill:none !important;
  stroke:#005044 !important;
  color:#005044 !important;
}
.dd-promo strong{
  font-weight:700 !important;
  color:#005044 !important;
}
.dd-promo .dd-promo-arrow{
  margin-left:auto !important;
  color:#005044 !important;
  font-weight:600 !important;
  padding-left:10px !important;
}

/* ==================================================================
   NAV BREAKPOINT — collapse to hamburger + tel + hide desktop menu
   ================================================================== */
@media (max-width:960px){
  .nav-menu{ display:none !important }
  .nav-inner{
    grid-template-columns:auto 1fr auto auto;
    padding:10px 16px;
    gap:6px;
  }
  /* HAMBURGER ON THE RIGHT (was order:-1 = left, now order:99) */
  .nav-toggle{
    display:inline-flex !important;
    order:99;
    color:var(--sq-teal-dark);
  }
  .nav-tel-mobile{
    display:inline-flex !important;
    color:var(--sq-teal-dark);
    order:5;
  }
  .nav-cta{ display:none !important }
  .nav-logo{ order:1 }
  .nav-logo img{ height:38px }
}

/* ==================================================================
   MOBILE DRAWER — FULL SCREEN, better use of space
   ================================================================== */
.mobile-drawer{
  position:fixed;
  inset:0;
  background:rgba(0,35,30,.55);
  backdrop-filter:blur(4px);
  z-index:200;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s var(--sq-ease);
}
.mobile-drawer[aria-hidden="false"]{
  opacity:1;
  pointer-events:auto;
}
.mobile-drawer-panel{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:100vw;
  max-width:100vw;
  background:var(--sq-cream, #f9f6ef);
  box-shadow:none;
  transform:translateX(100%);
  transition:transform .3s var(--sq-ease);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.mobile-drawer[aria-hidden="false"] .mobile-drawer-panel{
  transform:translateX(0);
}

/* ================================================================
   MOBILE DRAWER — Option D "Mascot hero" (Sept 9 2026)
   Warm cream drawer with a dark-teal hero band up top carrying brand
   voice and the phone CTA, live status line, minimal nav list with
   gold-dot indicators, sticky Book Online at bottom.
   ================================================================ */

/* Close button — floats over the hero, top-right */
.drawer-close{
  position:absolute;
  top:14px;
  right:14px;
  z-index:20;
  background:rgba(0,0,0,.25);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:0;
  padding:0;
  width:40px;
  height:40px;
  min-width:40px;
  min-height:40px;
  cursor:pointer;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.drawer-close:focus-visible{
  outline:2px solid var(--sq-gold);
  outline-offset:2px;
}
.drawer-close svg{
  width:22px;
  height:22px;
}

/* Hero band — dark teal gradient with brand copy + phone CTA */
.drawer-hero{
  position:relative;
  padding:56px 22px 22px;
  background:linear-gradient(160deg,#003934 0%,#005044 60%,#00695a 100%);
  color:#fff;
  overflow:hidden;
  flex-shrink:0;
}
.drawer-hero::before{
  content:'';
  position:absolute;
  top:-40px;
  right:-40px;
  width:200px;
  height:200px;
  background:radial-gradient(circle,rgba(241,213,162,.18) 0%,transparent 70%);
  pointer-events:none;
}
.drawer-hero-eyebrow{
  display:inline-flex;
  align-items:center;
  background:rgba(241,213,162,.15);
  color:#f1d5a2;
  border:1px solid rgba(241,213,162,.45);
  padding:5px 12px;
  border-radius:999px;
  font-family:Poppins,system-ui,sans-serif;
  font-size:.62rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:12px;
  position:relative;
  z-index:1;
}
.drawer-hero-headline{
  font-family:Poppins,system-ui,sans-serif;
  font-size:1.5rem;
  font-weight:600;
  line-height:1.15;
  color:#fff;
  margin-bottom:8px;
  max-width:78%;
  position:relative;
  z-index:1;
}
.drawer-hero-headline em{
  color:#f1d5a2;
  font-style:normal;
}
.drawer-hero-sub{
  font-family:Poppins,system-ui,sans-serif;
  font-size:.85rem;
  color:rgba(255,255,255,.85);
  line-height:1.45;
  margin-bottom:16px;
  max-width:80%;
  position:relative;
  z-index:1;
}
.drawer-hero-phone{
  position:relative;
  z-index:2;
  display:inline-flex !important;
  align-items:center !important;
  gap:10px !important;
  padding:12px 22px !important;
  background:linear-gradient(#005044,#005044) padding-box, linear-gradient(135deg,#f1d5a2 0%,#e8b380 100%) border-box !important;
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  border:2px solid transparent !important;
  border-radius:999px !important;
  font-family:Poppins,system-ui,sans-serif !important;
  font-weight:600 !important;
  font-size:1rem !important;
  text-decoration:none !important;
  transition:transform .18s ease;
}
.drawer-hero-phone span{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
  font-weight:600 !important;
  font-size:1rem !important;
}
.drawer-hero-phone svg{
  width:18px !important;
  height:18px !important;
  fill:#e8b380 !important;
  stroke:#e8b380 !important;
  flex-shrink:0 !important;
}
.drawer-hero-phone:hover,
.drawer-hero-phone:focus-visible{
  transform:translateY(-1px);
  outline:none;
}

/* Status line — cream bg, muted text, live dot */
.drawer-status{
  padding:12px 22px;
  background:#fff;
  border-bottom:1px solid var(--sq-border);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:Poppins,system-ui,sans-serif;
  font-size:.74rem;
  color:var(--sq-muted);
  flex-shrink:0;
}
.drawer-status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#3fb87c;
  box-shadow:0 0 0 3px rgba(63,184,124,.22);
  flex-shrink:0;
}

/* Nav list — minimal rows with gold dot indicator */
.drawer-scroll{
  flex:1;
  overflow-y:auto;
  padding:6px 22px 20px;
  display:flex;
  flex-direction:column;
  gap:0;
  -webkit-overflow-scrolling:touch;
  background:var(--sq-cream, #f9f6ef);
}
.drawer-link,
.drawer-group summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  padding:16px 8px;
  color:var(--sq-teal-dark);
  font-family:Poppins,system-ui,sans-serif;
  font-weight:600;
  font-size:1.05rem;
  text-decoration:none;
  min-height:52px;
  border-bottom:1px solid var(--sq-border);
  transition:padding .15s ease;
}
/* Gold-dot indicator on the left of every top-level item */
.drawer-link::before,
.drawer-group > summary::before{
  content:'';
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(0,80,68,.25);
  margin-right:14px;
  flex-shrink:0;
  transition:background .15s ease, box-shadow .15s ease;
}
.drawer-link:hover::before,
.drawer-link:focus-visible::before,
.drawer-group[open] > summary::before,
.drawer-group > summary:hover::before,
.drawer-group > summary:focus-visible::before{
  background:var(--sq-gold);
  box-shadow:0 0 0 3px rgba(232,179,128,.25);
}
.drawer-link:hover,
.drawer-link:focus-visible,
.drawer-group > summary:hover,
.drawer-group > summary:focus-visible{
  outline:none;
}
.drawer-link > span[aria-hidden],
.drawer-group summary .arrow{
  margin-left:auto;
  color:var(--sq-gold);
  font-size:1rem;
  font-weight:400;
  transition:transform .2s var(--sq-ease);
}
.drawer-group[open] > summary .arrow{
  transform:rotate(180deg);
}
.drawer-group summary::-webkit-details-marker{ display:none }
.drawer-group{ border:0 }
.drawer-scroll > .drawer-link:last-child,
.drawer-scroll > .drawer-group:last-of-type > summary{
  border-bottom:0;
}

/* Sub-list — reveals on accordion expand */
.drawer-sub{
  padding:4px 0 12px 22px;
  display:flex;
  flex-direction:column;
  gap:2px;
  background:rgba(0,80,68,.03);
  margin:0 -8px;
  padding-left:34px;
  padding-right:16px;
  border-radius:8px;
}
.drawer-sub a{
  padding:10px 12px;
  color:var(--sq-teal-dark);
  text-decoration:none;
  font-family:Poppins,system-ui,sans-serif;
  font-weight:500;
  font-size:.95rem;
  border-radius:8px;
  min-height:40px;
  display:flex;
  align-items:center;
  opacity:.85;
}
.drawer-sub a:hover,
.drawer-sub a:focus-visible{
  background:rgba(232,179,128,.10);
  color:var(--sq-teal-dark);
  opacity:1;
  outline:none;
}

/* Sticky bottom CTA — dark teal with gold border */
.drawer-cta{
  margin:0;
  background:var(--sq-teal-dark);
  color:#fff;
  text-align:center;
  padding:18px 24px;
  border-top:1px solid var(--sq-border);
  border-top:3px solid var(--sq-gold);
  font-family:Poppins,system-ui,sans-serif;
  font-weight:600;
  text-decoration:none;
  min-height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-shrink:0;
  font-size:1.05rem;
  letter-spacing:.01em;
  box-shadow:0 -8px 20px rgba(0,0,0,.10);
}
.drawer-cta::before{
  content:'';
  width:18px;
  height:18px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8b380' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  display:inline-block;
  flex-shrink:0;
}
.drawer-cta:hover,
.drawer-cta:focus-visible{
  background:#004840;
  color:#fff;
  outline:none;
}

/* Lock body scroll while drawer open */
body.mobile-drawer-open,
html.mobile-drawer-open{ overflow:hidden }

/* Prefer-reduced-motion */
@media (prefers-reduced-motion:reduce){
  .site-nav,
  .nav-logo img,
  .nav-item > a,
  .nav-cta,
  .mobile-drawer,
  .mobile-drawer-panel,
  .nav-item .arrow{
    transition:none;
  }
}

/* ==================================================================
   NAV FONT-WEIGHT HARD-OVERRIDE (Sept 6 2026)
   Parent theme (plumberseo-bootstrap) had higher-specificity rules
   pinning nav link weight to 400. Bumping specificity + !important
   to force Poppins SemiBold across every nav surface.
   ================================================================== */
.site-nav .nav-menu .nav-item > a,
.site-nav .nav-menu .nav-item > button,
.site-nav .nav-menu .nav-item > a:link,
.site-nav .nav-menu .nav-item > a:visited,
.site-nav .nav-menu .nav-item > a:hover,
.site-nav .nav-cta,
header .site-nav .nav-item > a,
header .site-nav .nav-item > button,
header .site-nav .nav-cta{
  font-family:Poppins,system-ui,sans-serif !important;
  font-weight:600 !important;
}
/* Nav link color — nuclear override, beats parent-theme's higher-specificity rules */
html body #masthead .site-nav .nav-menu .nav-item > a,
html body #masthead .site-nav .nav-menu .nav-item > a:link,
html body #masthead .site-nav .nav-menu .nav-item > a:visited,
html body #masthead .site-nav .nav-menu .nav-item > button,
html body header#masthead .site-nav .nav-item > a,
html body header#masthead .site-nav .nav-item > button{
  color:#005044 !important;
  -webkit-text-fill-color:#005044 !important;
}
html body #masthead .site-nav .nav-menu .nav-item > a:hover,
html body #masthead .site-nav .nav-menu .nav-item > button:hover{
  color:#005044 !important;
  -webkit-text-fill-color:#005044 !important;
}
/* Mega dropdown links */
.site-nav .nav-dropdown a,
.site-nav .dd-col a,
.site-nav .dd-heading{
  font-family:Poppins,system-ui,sans-serif !important;
  font-weight:600 !important;
}
/* Mobile drawer links */
.mobile-drawer .drawer-link,
.mobile-drawer .drawer-summary,
.mobile-drawer .drawer-cta,
.mobile-drawer .drawer-phone,
.mobile-drawer summary{
  font-family:Poppins,system-ui,sans-serif !important;
  font-weight:600 !important;
}

/* ==================================================================
   SITE FOOTER v2 (Sept 6 2026) — 2026-2027 UX best-practices redesign
   Structure: trust bar → CTA card → 3-col nav → impact → legal
   Priorities: proof-first, single-CTA moment, reduced cognitive load,
   warmer geographic voice, WCAG AA compliant.
   ================================================================== */
/* Desktop nav logo — override any parent theme rule with higher specificity */
@media (min-width:961px){
  html body .site-nav .nav-logo img,
  html body header .site-nav .nav-logo img{
    height:60px !important;
    width:auto !important;
    max-width:none !important;
  }
  /* Give the taller logo a little more vertical breathing room in the nav */
  html body .site-nav .nav-inner{
    padding-top:14px !important;
    padding-bottom:14px !important;
  }
}

/* Nuclear specificity — beats a WPCode-injected inline <style> block that
   sets `body:not(.sasquatch-lp-body) footer.site-footer { visibility:hidden;
   height:540px; overflow:hidden; padding:0 !important; }`. Also breaks
   out of the `#page.site { max-width:1700px }` clamp so the footer
   extends edge-to-edge on wide viewports. */
html body footer.site-footer,
html body footer.site-footer.site-footer,
body:not(.sasquatch-lp-body) footer.site-footer.site-footer{
  background:linear-gradient(180deg,#005044 0%,#001f1b 100%) !important;
  color:#fff !important;
  position:relative !important;
  visibility:visible !important;
  height:auto !important;
  min-height:auto !important;
  max-height:none !important;
  overflow:visible !important;
  padding:56px 24px 28px !important;
  margin:0 !important;
  margin-top:0 !important;
  font-family:Poppins,system-ui,sans-serif !important;
  display:block !important;
  contain:none !important;
  /* Full-viewport breakout — beats plumberseo #page.site max-width:1700px */
  width:100vw !important;
  max-width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  left:0 !important;
  right:0 !important;
  box-sizing:border-box !important;
}

/* FORCE white text on CTA card headline — dark teal was inheriting from parent */
html body .site-footer .footer-cta-h3,
html body footer.site-footer .footer-cta-h3{
  color:#ffffff !important;
  -webkit-text-fill-color:#ffffff !important;
}
html body .site-footer .footer-cta-sub{
  color:rgba(255,255,255,.85) !important;
  -webkit-text-fill-color:rgba(255,255,255,.85) !important;
}

/* Trust icon — swap emoji font-size sizing for SVG dimensions */
.footer-trust-icon{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  flex-shrink:0;
  background:rgba(232,179,128,.14);
  border:1px solid rgba(232,179,128,.28);
  border-radius:10px;
  color:#e8b380;
  filter:none !important;
}
.footer-trust-icon svg{
  width:20px;
  height:20px;
  fill:currentColor;
}
/* Tree pattern overlay removed — was reading as a harsh dark shadow patch
   at the top edge of the footer (silhouettes bleeding through the .10
   opacity). Clean gradient background is enough visual interest.
   Nuclear override — a ghost rule was setting content:'' again. */
.site-footer::before,
html body footer.site-footer::before,
body:not(.sasquatch-lp-body) footer.site-footer::before{
  content:none !important;
  display:none !important;
  background:none !important;
  background-image:none !important;
  opacity:0 !important;
}
/* ALSO kill the 36px black box-shadow glow around the footer that was
   reading as "harsh shadow" on every edge — that's the real culprit, not
   the tree pattern. */
html body footer.site-footer,
html body footer.site-footer.site-footer{
  box-shadow:none !important;
  filter:none !important;
}
.footer-inner{
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:44px;
}

/* ========== 1. TRUST BAR — proof-first, above the fold of the footer ========== */
.footer-trust-bar{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  padding:20px 24px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
}
.footer-trust-item{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
  text-decoration:none;
  font-size:.92rem;
  line-height:1.35;
  padding:6px 10px;
  border-radius:12px;
  transition:background .18s var(--sq-ease);
}
a.footer-trust-item:hover,
a.footer-trust-item:focus-visible{
  background:rgba(255,255,255,.07);
  outline:none;
}
.footer-trust-item strong{
  font-weight:600;
  color:#fff;
  display:block;
  font-size:.95rem;
}
.footer-trust-sub{
  color:rgba(255,255,255,.62);
  font-size:.78rem;
  font-weight:400;
}
.footer-trust-icon{
  font-size:1.6rem;
  line-height:1;
  color:#e8b380;
  flex-shrink:0;
  filter:drop-shadow(0 1px 3px rgba(0,0,0,.35));
}
@media (max-width:900px){
  .footer-trust-bar{ grid-template-columns:repeat(2, 1fr); gap:12px; padding:16px }
}
@media (max-width:520px){
  .footer-trust-bar{ grid-template-columns:1fr; padding:14px }
}

/* ========== 2. CTA CARD — single clear conversion moment ========== */
.footer-cta-card{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:24px;
  align-items:center;
  padding:28px 32px;
  background:linear-gradient(135deg, rgba(0,115,99,.28) 0%, rgba(214,161,114,.14) 100%);
  border:1px solid rgba(232,179,128,.24);
  border-radius:20px;
  box-shadow:0 8px 32px rgba(0,0,0,.20);
}
.footer-cta-mascot{
  width:82px;
  height:auto;
  flex-shrink:0;
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.35));
}
.footer-cta-copy{ min-width:0 }
.footer-cta-h3{
  color:#fff;
  font-family:Poppins,system-ui,sans-serif;
  font-weight:700;
  font-size:1.5rem;
  line-height:1.2;
  letter-spacing:-.01em;
  margin:0 0 6px;
}
.footer-cta-sub{
  color:rgba(255,255,255,.82);
  font-size:.95rem;
  line-height:1.5;
  margin:0;
}
.footer-cta-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.footer-cta-primary{
  display:inline-flex;
  align-items:center;
  padding:14px 26px;
  background:#fff;
  color:var(--sq-teal-dark) !important;
  border-radius:var(--sq-radius-pill);
  font-weight:700;
  font-size:1rem;
  text-decoration:none;
  min-height:52px;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
  transition:transform .15s var(--sq-ease), box-shadow .15s var(--sq-ease);
}
.footer-cta-primary:hover,
.footer-cta-primary:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 8px 22px rgba(0,0,0,.28);
  outline:none;
}
.footer-cta-secondary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border:2px solid rgba(255,255,255,.32);
  color:#fff;
  border-radius:var(--sq-radius-pill);
  font-weight:600;
  font-size:1rem;
  text-decoration:none;
  min-height:52px;
  transition:border-color .15s var(--sq-ease), background .15s var(--sq-ease);
}
.footer-cta-secondary svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.footer-cta-secondary:hover,
.footer-cta-secondary:focus-visible{
  border-color:#fff;
  background:rgba(255,255,255,.08);
  outline:none;
}
@media (max-width:820px){
  .footer-cta-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:26px 22px;
    gap:16px;
  }
  .footer-cta-mascot{ margin:0 auto; width:70px }
  .footer-cta-actions{ flex-direction:column; align-items:stretch; width:100% }
  .footer-cta-primary, .footer-cta-secondary{ justify-content:center }
}

/* ========== 3. MAIN GRID — 4 cols (brand + 3 nav) ========== */
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:44px;
  padding-top:8px;
}
@media (max-width:960px){ .footer-grid{ grid-template-columns:1fr 1fr; gap:36px 28px } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; gap:32px } }

.footer-logo{
  height:48px;
  width:auto;
  margin-bottom:14px;
}
.footer-tagline{
  color:#e8b380;
  font-size:1rem;
  font-weight:600;
  letter-spacing:.01em;
  margin:0 0 10px;
}
.footer-brand-desc{
  color:rgba(255,255,255,.78);
  font-size:.92rem;
  line-height:1.6;
  margin:0 0 20px;
  max-width:340px;
}
.footer-address,
.footer-hours{
  font-style:normal;
  color:rgba(255,255,255,.82);
  font-size:.9rem;
  line-height:1.55;
  margin-bottom:16px;
}
.footer-address-label,
.footer-hours-label{
  display:block;
  color:#e8b380;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:6px;
}

/* Nav columns */
.footer-col h4{
  color:#e8b380;
  font-family:Poppins,system-ui,sans-serif;
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin:0 0 18px;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.footer-col li{
  display:flex;
  align-items:center;
  gap:8px;
}
.footer-col li a{
  color:rgba(255,255,255,.88);
  text-decoration:none;
  font-size:.94rem;
  font-weight:500;
  line-height:1.4;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  padding:8px 0;
  border-bottom:1px solid transparent;
  transition:color .15s var(--sq-ease), border-color .15s var(--sq-ease);
}
.footer-col li a:hover,
.footer-col li a:focus-visible{
  color:#e8b380;
  border-color:#e8b380;
  outline:none;
}
/* Inline-align li so link + badge sit on the same baseline, tighter gap */
.footer-col li{
  display:flex !important;
  align-items:baseline !important;
  gap:8px !important;
  flex-wrap:nowrap !important;
}
.footer-col li a{
  border-bottom:1px solid transparent !important;
  min-height:auto !important;
  padding:6px 0 !important;
  line-height:1.4 !important;
}
/* Small chip badge (Hiring / $27 off) — align baseline with link text */
.footer-badge{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
  align-self:center;
  transform:translateY(-1px);
  background:#e8b380;
  color:var(--sq-teal-dark);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:3px 8px;
  border-radius:999px;
  line-height:1.2;
}

/* ========== 4. IMPACT LINE — sustainability micro-moment ========== */
.footer-impact{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:18px 24px;
  background:rgba(232,179,128,.08);
  border:1px solid rgba(232,179,128,.20);
  border-radius:14px;
  color:rgba(255,255,255,.90);
  font-size:.92rem;
  line-height:1.5;
  text-align:center;
}
.footer-impact strong{
  color:#e8b380;
  font-weight:700;
}
.footer-impact a{
  color:#e8b380;
  text-decoration:underline;
  text-decoration-color:rgba(232,179,128,.5);
  text-underline-offset:2px;
  font-weight:600;
  white-space:nowrap;
}
.footer-impact a:hover,
.footer-impact a:focus-visible{
  color:#fff;
  text-decoration-color:#fff;
  outline:none;
}
.footer-impact-icon{
  font-size:1.4rem;
  flex-shrink:0;
}
@media (max-width:600px){
  .footer-impact{ flex-direction:column; gap:6px; text-align:center }
}

/* ========== 5. LEGAL BOTTOM BAR ========== */
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px 24px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.60);
  font-size:.84rem;
}
.footer-bottom-left{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.footer-licences{
  color:rgba(255,255,255,.45);
  font-size:.78rem;
}
.footer-bottom-nav{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}
.footer-bottom-nav a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  padding:8px 4px;
  transition:color .15s var(--sq-ease);
}
.footer-bottom-nav a:hover,
.footer-bottom-nav a:focus-visible{
  color:#e8b380;
  outline:none;
}
.footer-social{
  display:flex;
  gap:10px;
}
.footer-social a{
  width:44px;
  height:44px;
  background:rgba(255,255,255,.10);
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:background .2s var(--sq-ease), transform .2s var(--sq-ease);
}
.footer-social a:hover,
.footer-social a:focus-visible{
  background:#e8b380;
  transform:translateY(-2px);
  outline:none;
}
.footer-social svg{
  width:18px;
  height:18px;
  fill:#fff;
  transition:fill .2s var(--sq-ease);
}
.footer-social a:hover svg,
.footer-social a:focus-visible svg{
  fill:var(--sq-teal-dark);
}
@media (max-width:720px){
  .footer-bottom{ justify-content:center; text-align:center }
  .footer-bottom-left{ align-items:center }
  .footer-bottom-nav{ justify-content:center }
}

/* Kill legacy plumberseo-bootstrap footer chrome that used to sit here */
.sq-cta-banner,
.sched-row,
#sq-footer{
  display:none !important;
}

/* ==================================================================
   MOBILE NAV REFRESH (Sept 6 2026)
   - Kill phone icon (redundant with drawer + Book Online)
   - Bigger logo (was 38px, now 52px)
   - Bigger, styled hamburger (48px pill with teal border)
   ================================================================== */
@media (max-width:960px){
  /* Kill mobile phone icon everywhere */
  .site-nav .nav-tel-mobile,
  header .site-nav .nav-tel-mobile{
    display:none !important;
  }

  /* Bigger logo on mobile — bumped 52 → 64px, aspect preserved */
  .site-nav .nav-logo img,
  header .site-nav .nav-logo img{
    height:64px !important;
    width:auto !important;
    max-width:none !important;
    object-fit:contain !important;
    display:block !important;
  }
  .site-nav .nav-logo,
  header .site-nav .nav-logo{
    display:inline-flex !important;
    align-items:center !important;
    line-height:0 !important;
  }

  /* Hamburger: bigger + styled pill */
  .site-nav .nav-toggle,
  header .site-nav .nav-toggle{
    display:inline-flex !important;
    width:52px !important;
    height:52px !important;
    min-width:52px !important;
    min-height:52px !important;
    background:var(--sq-teal-dark) !important;
    border:0 !important;
    border-radius:14px !important;
    color:#fff !important;
    padding:0 !important;
    align-items:center;
    justify-content:center;
    box-shadow:0 2px 8px rgba(0,70,61,.18);
    transition:background .18s var(--sq-ease), transform .18s var(--sq-ease);
  }
  .site-nav .nav-toggle:hover,
  .site-nav .nav-toggle:focus-visible{
    background:var(--sq-teal) !important;
    outline:none !important;
    transform:scale(1.03);
  }
  .site-nav .nav-toggle svg{
    width:26px !important;
    height:26px !important;
    stroke:#fff !important;
    stroke-width:2.4 !important;
    fill:none !important;
  }

  /* Simpler grid without the tel column: logo → spacer → hamburger */
  .site-nav .nav-inner{
    grid-template-columns:auto 1fr auto !important;
    padding:12px 16px !important;
    gap:12px !important;
    align-items:center !important;
  }
  /* Force hamburger into the LAST grid column regardless of DOM order/flow.
     grid-column:-1 = last line; -1/-1 with justify-self:end pins it to the right edge. */
  .site-nav .nav-toggle,
  header .site-nav .nav-toggle{
    grid-column:3 / -1 !important;
    justify-self:end !important;
    margin-left:auto !important;
  }
  /* Logo pinned to the first column */
  .site-nav .nav-logo,
  header .site-nav .nav-logo{
    grid-column:1 !important;
    justify-self:start !important;
  }
}

/* ==================================================================
   NAV DROPDOWN OPEN — hover (desktop) + focus-within (keyboard) + .open class
   (Sept 6 2026) — was invisible because no trigger was wired up.
   ================================================================== */
@media (min-width:961px){
  .site-nav .nav-item.has-dropdown:hover > .nav-dropdown,
  .site-nav .nav-item.has-dropdown:focus-within > .nav-dropdown,
  .site-nav .nav-item.has-dropdown.open > .nav-dropdown{
    opacity:1 !important;
    visibility:visible !important;
    transform:translateY(0) !important;
    pointer-events:auto !important;
  }
  /* Rotate the arrow when open */
  .site-nav .nav-item.has-dropdown:hover .arrow,
  .site-nav .nav-item.has-dropdown:focus-within .arrow,
  .site-nav .nav-item.has-dropdown.open .arrow{
    transform:rotate(180deg) !important;
  }
  /* Small hover-safety zone so cursor can travel from trigger → dropdown
     without the menu closing when crossing the gap */
  .site-nav .nav-item.has-dropdown > .nav-dropdown{
    margin-top:-6px;
    padding-top:6px;
  }
}

/* ==================================================================
   ACCESSIBILITY REMEDIATION (Sept 6 2026) — WCAG 2.1 AA fixes
   1. Skip-to-content link (WCAG 2.4.1)
   2. Tap targets ≥44×44px (WCAG 2.5.5)
   3. Visible focus rings on all interactive (WCAG 2.4.7)
   4. Gold contrast buffer (WCAG 1.4.3)
   ================================================================== */

/* 1) SKIP LINK — off-screen until focused, then teal pill top-left */
.skip-link{
  position:absolute;
  top:-100px;
  left:16px;
  z-index:9999;
  background:#005044;
  color:#fff;
  padding:14px 22px;
  border-radius:12px;
  font-family:Poppins,system-ui,sans-serif;
  font-weight:600;
  font-size:1rem;
  text-decoration:none;
  box-shadow:0 4px 16px rgba(0,0,0,.3);
  transition:top .2s cubic-bezier(.4,0,.2,1);
}
.skip-link:focus,
.skip-link:focus-visible{
  top:16px;
  outline:3px solid #e8b380;
  outline-offset:2px;
}
/* Ensure the target <main> can receive keyboard focus without visible ring on click */
main[tabindex="-1"]:focus{ outline:none }

/* 2) TAP TARGETS — bump nav dropdown, footer, and small link tap zones to 44+px */
.site-nav .nav-dropdown a,
.site-nav .dd-col a,
.site-nav .dd-single a{
  min-height:44px !important;
  display:flex !important;
  align-items:center !important;
  padding:10px 14px !important;
}
.site-footer .footer-col li a{
  min-height:44px;
  padding:10px 0;
  display:inline-flex;
  align-items:center;
}
.site-footer .footer-bottom a,
.site-footer .footer-bottom nav a{
  min-height:44px;
  padding:10px 4px;
  display:inline-flex;
  align-items:center;
}
.site-footer .footer-social a{
  /* social icons already 38px — bump to 44 */
  width:44px !important;
  height:44px !important;
}

/* 3) FOCUS RINGS — sitewide visible ring for keyboard users */
.site-nav a:focus-visible,
.site-nav button:focus-visible,
.site-footer a:focus-visible,
.site-footer button:focus-visible,
.mobile-drawer a:focus-visible,
.mobile-drawer button:focus-visible,
.mobile-drawer summary:focus-visible{
  outline:3px solid #e8b380 !important;
  outline-offset:2px !important;
  border-radius:6px;
}
/* Kill outline:none anti-patterns from parent theme */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible){ outline:none }

/* Rebate promo text — teal on cream (was gold on dark teal in the old design) */
.site-nav .dd-promo strong,
.site-nav .dd-promo span,
html body .site-nav .dd-promo strong,
html body .site-nav .dd-promo span{
  color:#005044 !important;
  -webkit-text-fill-color:#005044 !important;
}
.footer-veritree-line,
.footer-col h4{
  color:#e8b380 !important;
}

/* ==================================================================
   FOOTER MOBILE OPTIMIZATION (Sept 7 2026)
   - Tighter padding on mobile (54px 20px 22px → less scroll fatigue)
   - Brand block full-width, then nav cols in 2-col grid (better density)
   - Bottom bar center-stacked
   ================================================================== */
@media (max-width:720px){
  html body footer.site-footer,
  html body footer.site-footer.site-footer{
    padding:44px 20px 24px !important;
  }
  .site-footer .footer-inner{
    gap:32px !important;
  }
  .site-footer .footer-grid{
    grid-template-columns:1fr 1fr !important;
    gap:28px 20px !important;
  }
  /* Brand column spans full width above the 2-col nav grid */
  .site-footer .footer-brand{
    grid-column:1 / -1 !important;
  }
  .site-footer .footer-brand p,
  .site-footer .footer-brand .footer-brand-desc{
    max-width:none !important;
  }
  /* Tighter list gap inside cols on mobile */
  .site-footer .footer-col ul{
    gap:2px !important;
  }
  .site-footer .footer-col li a{
    font-size:.9rem !important;
    padding:4px 0 !important;
  }
  .site-footer .footer-col h4{
    margin:0 0 12px !important;
    font-size:.72rem !important;
    letter-spacing:.16em !important;
  }
  /* Impact line: two lines instead of one */
  .site-footer .footer-impact{
    padding:14px 18px !important;
    font-size:.86rem !important;
  }
  /* Bottom bar: center-stack */
  .site-footer .footer-bottom{
    flex-direction:column !important;
    align-items:center !important;
    text-align:center !important;
    gap:18px !important;
  }
  .site-footer .footer-bottom-left{
    align-items:center !important;
  }
  .site-footer .footer-bottom-nav{
    justify-content:center !important;
    gap:14px 20px !important;
  }
  .site-footer .footer-social{
    justify-content:center !important;
  }
  /* Trust bar (if it comes back later) — one col on mobile */
  .site-footer .footer-trust-bar{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }
}
@media (max-width:400px){
  .site-footer .footer-grid{
    grid-template-columns:1fr !important;
  }
}

/* ==================================================================
   CONDENSING STICKY NAV (Sept 8 2026)
   Adds .nav-condensed class to #masthead after user scrolls past hero
   (JS handles the scroll listener via IntersectionObserver on a hero
   sentinel — see homepage-2026.js).
   ================================================================== */

/* Base transitions so the collapse feels smooth */
.site-nav{
  transition:box-shadow .25s ease, background .25s ease;
}
.nav-inner{
  transition:padding .25s ease, gap .2s ease;
}
.nav-logo img{
  transition:height .25s ease;
}
.nav-cta{
  transition:transform .2s ease, background .2s ease, border-color .2s ease, height .25s ease, min-height .25s ease, padding .25s ease, font-size .2s ease;
}

/* CONDENSED state — smaller logo + slimmer padding + persistent CTA */
#masthead.nav-condensed .site-nav{
  box-shadow:0 4px 20px rgba(0,35,30,.12);
}
#masthead.nav-condensed .nav-inner{
  padding-top:8px !important;
  padding-bottom:8px !important;
}
#masthead.nav-condensed .nav-logo img{
  height:44px !important;
}
#masthead.nav-condensed .nav-cta{
  height:40px !important;
  min-height:40px !important;
  padding:0 18px !important;
  font-size:.86rem !important;
}
#masthead.nav-condensed .nav-cta .nav-cta-icon{
  width:16px !important;
  height:16px !important;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion:reduce){
  .site-nav, .nav-inner, .nav-logo img, .nav-cta{ transition:none !important }
}

/* ==================================================================
   MOBILE OVERRIDE — hide nav CTA below 960px (nuclear)
   The base .nav-cta rule was setting display:inline-flex !important
   which beat the earlier mobile hide rule. Force it hidden here.
   ================================================================== */
@media (max-width:960px){
  html body #masthead .nav-cta,
  html body header#masthead .nav-cta,
  html body header .nav-cta{
    display:none !important;
  }
}

/* ==================================================================
   BATCH 70 (Sept 10 2026) — Nav CTA + drawer hover: Lift + shadow bloom
   Matches the sitewide button hover treatment applied in homepage-2026.css.
   Universal 2px rise with a soft teal shadow bloom.
   ================================================================== */
header .nav-cta,
#masthead .nav-cta,
.drawer-close,
.drawer-hero-phone,
.drawer-cta,
.drawer-sub a{
  transition:transform .22s cubic-bezier(.22,.61,.36,1),
             box-shadow .22s cubic-bezier(.22,.61,.36,1),
             background .22s cubic-bezier(.22,.61,.36,1),
             border-color .22s cubic-bezier(.22,.61,.36,1),
             color .22s cubic-bezier(.22,.61,.36,1) !important;
  will-change:transform, box-shadow !important;
}
header .nav-cta:hover,
header .nav-cta:focus-visible,
#masthead .nav-cta:hover,
#masthead .nav-cta:focus-visible,
html body #masthead .nav-cta:hover,
html body #masthead .nav-cta:focus-visible{
  transform:translateY(-2px) !important;
  box-shadow:0 8px 20px rgba(0,80,68,.25) !important;
}
.drawer-hero-phone:hover,
.drawer-hero-phone:focus-visible,
.drawer-cta:hover,
.drawer-cta:focus-visible{
  transform:translateY(-2px) !important;
  box-shadow:0 8px 20px rgba(0,80,68,.20) !important;
}
header .nav-cta:active,
#masthead .nav-cta:active,
.drawer-hero-phone:active,
.drawer-cta:active{
  transform:translateY(0) !important;
  box-shadow:0 2px 6px rgba(0,80,68,.15) !important;
}

@media (prefers-reduced-motion:reduce){
  header .nav-cta:hover,
  header .nav-cta:focus-visible,
  #masthead .nav-cta:hover,
  #masthead .nav-cta:focus-visible,
  .drawer-hero-phone:hover,
  .drawer-hero-phone:focus-visible,
  .drawer-cta:hover,
  .drawer-cta:focus-visible{
    transform:none !important;
  }
}


/* ==================================================================
   BATCH 75 — Plumbing hub + subpages styling (Sept 10 2026)
   -----
   Scoped to .pg-* classes used on /plumbing/, /plumbing/water-heaters/,
   /plumbing/drain-cleaning/, /plumbing/leak-repair/,
   /plumbing/fixture-installation/, /plumbing/sewer-installation/.
   Namespace prevents bleed into homepage-2026 or other pages.
   Source: plumbing-pages-drafts/plumbing-pages.css v2 (Sept 6 2026).
   ================================================================== */
.pg-intro{margin:0 0 32px;padding:0 0 24px;border-bottom:1px solid #eee5d3}
.pg-intro h1{font-family:Poppins,system-ui,sans-serif;font-weight:600;font-size:2rem;line-height:1.2;color:#00463d;margin:0 0 12px;text-wrap:balance}
.pg-intro .pg-lede{color:#3a4844;font-size:1.1rem;line-height:1.55;margin:0}
.pg-container{max-width:100%;margin:0;padding:0}
.pg-center{text-align:left;max-width:100%;margin:0 0 24px}
.pg-eyebrow{display:inline-block;color:#007363;font-family:Poppins,system-ui,sans-serif;font-weight:600;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;margin-bottom:10px}
.pg-lede{color:#5b6a65;font-size:1rem;line-height:1.6;margin:0 0 20px}
.pg-fine{font-size:.82rem;color:#7a8580;margin-top:14px}
.pg-list{padding:0;margin:0 0 32px;list-style:none}
.pg-list li{padding:12px 14px 12px 38px;position:relative;border-bottom:1px solid #eee5d3;color:#3a4844;line-height:1.55}
.pg-list li:last-child{border-bottom:0}
.pg-list li::before{content:'';position:absolute;left:6px;top:15px;width:20px;height:20px;border-radius:50%;background:#007363 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px 13px no-repeat}
.pg-services,.pg-content,.pg-why,.pg-related{padding:32px 0;background:transparent;border-top:1px solid #eee5d3}
.pg-services:first-of-type,.pg-content:first-of-type{border-top:0;padding-top:0}
.pg-content h2,.pg-services h2,.pg-why h2,.pg-related h2{color:#00463d;font-family:Poppins,system-ui,sans-serif;font-weight:600;font-size:1.55rem;line-height:1.25;margin:24px 0 14px}
.pg-content h2:first-child,.pg-services h2:first-child,.pg-why h2:first-child,.pg-related h2:first-child{margin-top:0}
.pg-content p,.pg-services p,.pg-why p{color:#3a4844;font-size:1rem;line-height:1.65;margin:0 0 16px}
.pg-grid{display:grid;gap:16px}
.pg-grid-3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.pg-card{background:#f9f6ef;border-radius:14px;padding:20px 20px;border:1px solid #eee5d3;transition:transform .2s ease,box-shadow .2s ease}
.pg-card:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.08)}
.pg-card h3{color:#00463d;font-family:Poppins,system-ui,sans-serif;font-weight:600;font-size:1.05rem;margin:0 0 8px}
.pg-card p{color:#5b6a65;font-size:.92rem;line-height:1.55;margin:0 0 12px}
.pg-card-alt{background:#007363;color:#fff;border-color:#007363}
.pg-card-alt h3,.pg-card-alt p{color:#fff}
.pg-link{display:inline-flex;align-items:center;color:#007363;font-weight:600;font-size:.9rem;text-decoration:none;transition:color .15s ease}
.pg-link:hover{color:#00463d}
.pg-card-alt .pg-link{color:#fff}
.pg-card-alt .pg-link:hover{color:#f9b50b}
.pg-why-card{background:transparent;padding:16px 0;border-bottom:1px solid #eee5d3}
.pg-why-card:last-child{border-bottom:0}
.pg-why-card h3{color:#00463d;font-family:Poppins,system-ui,sans-serif;font-weight:600;font-size:1rem;margin:0 0 6px}
.pg-why-card p{color:#5b6a65;font-size:.92rem;line-height:1.55;margin:0}
.pg-related-card{display:block;padding:16px 18px;background:#f9f6ef;border-radius:10px;color:#00463d;font-family:Poppins,system-ui,sans-serif;font-weight:600;font-size:.95rem;text-decoration:none;border:1px solid #eee5d3;transition:background .15s ease,color .15s ease,transform .15s ease}
.pg-related-card:hover{background:#007363;color:#fff;transform:translateY(-2px)}
@media (max-width:600px){
  .pg-intro h1{font-size:1.6rem}
  .pg-intro .pg-lede{font-size:1rem}
  .pg-content h2,.pg-services h2,.pg-why h2,.pg-related h2{font-size:1.3rem}
  .pg-grid-3{grid-template-columns:1fr}
}

/* ==================================================================
   BATCH 76 — Service-page text left-align (Sept 10 2026)
   -----
   PROBLEM: shp-a11y-fixes.css right-aligns the first column of every
   `.tree-section > .row` and `[class*="inside-section"] > .row` layout
   used by parent-theme service pages. Emma flagged it as unreadable.
   Fix: force left alignment sitewide on those columns and their children.
   ================================================================== */
html body [class*="inside-section"] > .row > .col-sm-12:first-child,
html body [class*="inside-section"] > .row > .col-md-6:first-child,
html body [class*="inside-section"] > .row > .col-sm-12:first-child *,
html body [class*="inside-section"] > .row > .col-md-6:first-child *,
html body .tree-section > .row > .col-sm-12:first-child,
html body .tree-section > .row > .col-md-6:first-child,
html body .tree-section > .row > .col-sm-12:first-child *,
html body .tree-section > .row > .col-md-6:first-child *{
  text-align:left !important;
}
/* Bullet lists inside those columns — outside markers, left padding for room */
html body [class*="inside-section"] > .row > .col-sm-12:first-child ul,
html body [class*="inside-section"] > .row > .col-md-6:first-child ul,
html body .tree-section > .row > .col-sm-12:first-child ul,
html body .tree-section > .row > .col-md-6:first-child ul{
  list-style-position:outside !important;
  padding-left:20px !important;
  margin-left:0 !important;
}

/* ==================================================================
   BATCH 77 — Service Areas page layout (Sept 10 2026)
   Scoped to .sa-* classes — hero, region cards, city chips, service grid.
   ================================================================== */
.sa-hero{max-width:900px;margin:0 auto 32px;text-align:center;padding:32px 20px 0}
.sa-eyebrow{display:inline-block;color:#007363;font-family:'SQ-Poppins',Poppins,sans-serif;font-weight:600;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;margin-bottom:10px}
.sa-hero h1{font-family:'SQ-Poppins',Poppins,sans-serif;font-weight:600;font-size:2.2rem;line-height:1.15;color:#005044;margin:0 0 14px;text-wrap:balance}
.sa-lede{color:#3a4844;font-size:1.1rem;line-height:1.55;margin:0 auto 24px;max-width:640px}
.sa-cta-row{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin:0 0 20px}
.sa-cta-row .btn-primary,.sa-cta-row .btn-secondary{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;border-radius:999px;font-family:'SQ-Poppins',Poppins,sans-serif;font-weight:600;font-size:.98rem;text-decoration:none;border:2px solid transparent;transition:transform .15s ease,box-shadow .15s ease}
.sa-cta-row .btn-primary{background:linear-gradient(#005044,#005044) padding-box,linear-gradient(135deg,#f1d5a2 0%,#e8b380 100%) border-box;color:#fff;border:2px solid transparent}
.sa-cta-row .btn-secondary{background:#fff;color:#005044;border:2px solid #005044}
.sa-cta-row .btn-primary:hover,.sa-cta-row .btn-secondary:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(0,80,68,.18)}
.sa-trust{display:flex;flex-wrap:wrap;justify-content:center;gap:14px 22px;color:#5b6a65;font-size:.9rem;font-weight:600}
.sa-trust .rating-star{color:#f9b50b}

.sa-regions,.sa-services,.sa-check{max-width:1180px;margin:56px auto;padding:0 20px}
.sa-center{text-align:center;margin:0 0 28px}
.sa-center h2{color:#005044;font-family:'SQ-Poppins',Poppins,sans-serif;font-weight:600;font-size:1.7rem;line-height:1.2;margin:0 0 12px}
.sa-grid{display:grid;gap:20px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
.sa-region-card{background:#f9f6ef;border:1px solid #eee5d3;border-radius:16px;padding:24px}
.sa-region-card h3{margin:0 0 8px;font-family:'SQ-Poppins',Poppins,sans-serif;font-weight:600;font-size:1.2rem}
.sa-region-card h3 a{color:#005044;text-decoration:none}
.sa-region-card h3 a:hover{color:#007363}
.sa-region-card > p{color:#3a4844;font-size:.98rem;margin:0 0 14px}
.sa-chips{display:flex;flex-wrap:wrap;gap:6px;margin:0 0 14px}
.sa-chips span{background:#fff;border:1px solid #eee5d3;color:#005044;font-size:.82rem;font-weight:600;padding:5px 10px;border-radius:999px}
.sa-region-cta{color:#007363;font-weight:600;font-size:.92rem;text-decoration:none}
.sa-region-cta:hover{color:#005044}
.sa-service-grid{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.sa-service-tile{display:flex;flex-direction:column;gap:6px;background:#fff;border:1px solid #eee5d3;border-radius:12px;padding:18px 20px;text-decoration:none;transition:transform .15s ease,box-shadow .15s ease}
.sa-service-tile strong{color:#005044;font-family:'SQ-Poppins',Poppins,sans-serif;font-weight:600;font-size:1.05rem}
.sa-service-tile span{color:#5b6a65;font-size:.9rem;line-height:1.45}
.sa-service-tile:hover{transform:translateY(-2px);box-shadow:0 6px 16px rgba(0,80,68,.1)}
.sa-check{background:#005044;color:#f9f6ef;border-radius:20px;padding:40px 24px;text-align:center}
.sa-check-inner{max-width:720px;margin:0 auto}
.sa-check h2{color:#fff;margin:0 0 12px}
.sa-check p{color:#e6ded0;font-size:1.05rem;line-height:1.55;margin:0 0 20px}
.sa-check .btn-secondary{background:transparent;color:#f9f6ef;border-color:#f9f6ef}
.sa-check .btn-secondary:hover{background:#f9f6ef;color:#005044}
.sa-check .sa-fine{color:#c8bea8;font-size:.88rem;margin-top:14px}
.sa-check .sa-fine a{color:#fff;font-weight:600}
@media (max-width:600px){
  .sa-hero h1{font-size:1.65rem}
  .sa-center h2{font-size:1.3rem}
  .sa-region-card{padding:18px}
  .sa-check{padding:28px 18px;margin:32px 14px}
}

/* Hide parent theme's dynamic "Call Sasquatch Heat Pumps at X for assistance in Y" trailer
   on /service-areas/ — added by an auto-content filter using the page's ACF location.
   The .sa-check section already IS the closing CTA, we don't need the duplicate. */
body.page-id-1247 p.text-highlight2,
body.page-id-1247 p.text-highlight2.v3,
body.page-id-1247 hr + p.text-highlight2,
body.page-id-1247 img[src*="sasbtbn"],
body.page-id-1247 hr:last-of-type{
  display:none !important;
}

/* /service-areas/ overrides — beat parent theme's inline a{display:unset} + hide banner-usp trust tiles that duplicate our own trust bar */
html body.page-id-1247 .sa-service-tile,
html body.page-id-1247 a.sa-service-tile{
  display:flex !important;
  flex-direction:column !important;
  gap:6px !important;
}
html body.page-id-1247 .sa-region-cta,
html body.page-id-1247 a.sa-region-cta{
  display:inline-block !important;
}
/* Hide the parent theme's default usp-label / usp-box / inner-bottom trust tiles that
   render duplicate "Trustworthy Technicians / Full-Service Heat Pump / Straightforward Pricing"
   right in the middle of our own content. */
html body.page-id-1247 .inner-bottom,
html body.page-id-1247 .usp-box,
html body.page-id-1247 .usp-label{
  display:none !important;
}

/* /service-areas/ additional overrides:
   1. Force map container to have visible height so MapLibre pins render.
   2. Re-center section headings that got left-aligned by BATCH 76's tree-section rule.
   3. Ban uppercase text-transform on our custom CTA buttons on this page. */
html body.page-id-1247 .area-map,
html body.page-id-1247 #hp-service-map{
  width:100% !important;
  min-height:520px !important;
  height:520px !important;
  max-width:1180px !important;
  margin:36px auto !important;
  border-radius:16px !important;
  overflow:hidden !important;
  display:block !important;
}
html body.page-id-1247 .sa-center,
html body.page-id-1247 .sa-hero,
html body.page-id-1247 .sa-check{
  text-align:center !important;
}
html body.page-id-1247 .sa-center *,
html body.page-id-1247 .sa-hero *,
html body.page-id-1247 .sa-check *{
  text-align:center !important;
}
html body.page-id-1247 .sa-region-card,
html body.page-id-1247 .sa-region-card *,
html body.page-id-1247 .sa-service-tile,
html body.page-id-1247 .sa-service-tile *{
  text-align:left !important;
}
html body.page-id-1247 .sa-cta-row .btn-primary,
html body.page-id-1247 .sa-cta-row .btn-secondary{
  text-transform:none !important;
  letter-spacing:normal !important;
  font-family:'SQ-Poppins',Poppins,sans-serif !important;
  font-weight:600 !important;
  font-size:1rem !important;
}

/* Sasquatch map pin styling — mirrors homepage-2026.css.
   Needed sitewide so the /service-areas/ MapLibre map renders pins at the
   correct size (was rendering the mascot at 100vh before this was added). */
.sas-pin-wrap{position:relative;width:36px;height:44px;cursor:pointer}
.sas-pin-drop{position:absolute;inset:0 0 6px 0;width:36px;height:36px;border-radius:50% 50% 50% 0;background:#005044;border:3px solid #fff;box-shadow:0 4px 12px rgba(0,35,30,.40);transform:rotate(-45deg);transition:transform .2s ease, background .2s ease}
.sas-pin-squatch{position:absolute;top:7px;left:50%;transform:translateX(-50%);width:22px;height:22px;color:#fff;pointer-events:none}
.sas-pin-squatch img,
.sas-pin-squatch svg{width:100%;height:100%;display:block;object-fit:contain}
.sas-pin-wrap:hover .sas-pin-drop{transform:rotate(-45deg) scale(1.18);background:#007363}
.maplibregl-popup.shp-tt-popup .maplibregl-popup-content{background:#005044 !important;color:#fff !important;padding:8px 14px !important;border-radius:8px !important;font-family:'SQ-Poppins',Poppins,sans-serif !important;font-weight:600 !important;font-size:.85rem !important}
.maplibregl-popup.shp-tt-popup .maplibregl-popup-tip{border-top-color:#005044 !important;border-bottom-color:#005044 !important}

/* /service-areas/ — nuclear alignment + dark-teal CTA visibility.
   Uses #page (ID) so specificity beats BATCH 76's text-align:left rule.
   Also gives .sa-check's primary CTA a cream fill so it doesn't blend into
   the dark teal section background. */
#page .sa-hero,
#page .sa-hero *,
#page .sa-center,
#page .sa-center *,
#page .sa-check,
#page .sa-check *{
  text-align:center !important;
}
#page .sa-region-card,
#page .sa-region-card *,
#page .sa-service-tile,
#page .sa-service-tile *{
  text-align:left !important;
}
#page .sa-check .btn-primary{
  background:#f9f6ef !important;
  color:#005044 !important;
  border:2px solid #d6a172 !important;
}
#page .sa-check .btn-primary:hover{
  background:#fff !important;
  transform:translateY(-2px) !important;
}
#page .sa-check .btn-secondary{
  background:transparent !important;
  color:#f9f6ef !important;
  border:2px solid #f9f6ef !important;
}
#page .sa-check .btn-secondary:hover{
  background:#f9f6ef !important;
  color:#005044 !important;
}

/* /service-areas/ hero button text colors — parent theme was overriding to black */
#page .sa-hero .btn-primary,
#page .sa-hero a.btn-primary{
  color:#fff !important;
}
#page .sa-hero .btn-secondary,
#page .sa-hero a.btn-secondary{
  color:#005044 !important;
}

/* /service-areas/ button HOVER states — Bootstrap's default .btn-secondary:hover
   inverts colors making our outline pill go dark on hover. Force our own hover
   look: subtle lift + shadow, colors that match resting state harmony. */
#page .sa-hero .btn-primary:hover,
#page .sa-hero a.btn-primary:hover{
  background:linear-gradient(#00463d,#00463d) padding-box,linear-gradient(135deg,#f1d5a2 0%,#e8b380 100%) border-box !important;
  color:#fff !important;
  transform:translateY(-2px) !important;
  box-shadow:0 6px 16px rgba(0,80,68,.2) !important;
}
#page .sa-hero .btn-secondary:hover,
#page .sa-hero a.btn-secondary:hover{
  background:#005044 !important;
  color:#fff !important;
  border-color:#005044 !important;
  transform:translateY(-2px) !important;
  box-shadow:0 6px 16px rgba(0,80,68,.2) !important;
}
#page .sa-check .btn-primary:hover,
#page .sa-check a.btn-primary:hover{
  background:#fff !important;
  color:#005044 !important;
  transform:translateY(-2px) !important;
}
#page .sa-check .btn-secondary:hover,
#page .sa-check a.btn-secondary:hover{
  background:#f9f6ef !important;
  color:#005044 !important;
  border-color:#f9f6ef !important;
  transform:translateY(-2px) !important;
}

/* /service-areas/ layout refinements — kill wpautop <br> tags in grids/rows,
   force 3-column service grid, ensure dark-section headings are truly white. */
#page .sa-service-grid br,
#page .sa-hero br,
#page .sa-check br,
#page .sa-cta-row br{
  display:none !important;
}
#page .sa-service-grid{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:20px !important;
  max-width:1080px !important;
  margin:0 auto !important;
}
#page .sa-hero .sa-cta-row,
#page .sa-check .sa-cta-row{
  gap:16px !important;
  justify-content:center !important;
  display:inline-flex !important;
  max-width:100% !important;
}
#page .sa-hero,
#page .sa-check-inner{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
}
#page .sa-check h2{
  color:#ffffff !important;
}
#page .sa-check p{
  color:#e6ded0 !important;
}
@media (max-width:900px){
  #page .sa-service-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
}
@media (max-width:560px){
  #page .sa-service-grid{grid-template-columns:1fr !important}
  #page .sa-hero .sa-cta-row,
  #page .sa-check .sa-cta-row{display:flex !important;flex-wrap:wrap !important}
}
