/* ============================================================
   EveryBuddy's Laundromat — site-wide stylesheet
   Design system carried over from the landing page.
   ============================================================ */

:root {
  /* Color tokens.
     All foreground colors are tested to meet WCAG AA (4.5:1 for body, 3:1
     for large text 18px/700+ or 24px+) on their intended background. */
  --blue:        #1B6DBE;
  --blue-dark:   #124F91;
  --blue-deep:   #0D3A6A;
  --blue-light:  #E8F2FB;
  --blue-mid:    #C6DFF5;
  --sky:         #5AAEE8;
  --white:       #FFFFFF;
  --offwhite:    #F7FAFE;
  --gray:        #566273;          /* 5.62:1 on white (AA) — replaces #6B7A8D 4.38:1 */
  --gray-soft:   #6B7A8D;          /* legacy mid-gray, only for borders / non-text */
  --gray-light:  #DEE7F0;
  --text:        #1A2A3A;
  --accent:      #F7C52D;
  --accent-dark: #E6B820;
  --green:       #28A745;
  --red:         #DC3545;
  --shadow-sm:   0 2px 12px rgba(27,109,190,0.07);
  --shadow-md:   0 8px 32px rgba(27,109,190,0.10);
  --shadow-lg:   0 12px 32px rgba(27,109,190,0.10);

  /* Faded-white scale on dark backgrounds. All meet AA at 14px+. */
  --on-deep-strong:   rgba(255,255,255,0.95);   /* primary text */
  --on-deep-body:     rgba(255,255,255,0.85);   /* secondary text */
  --on-deep-muted:    rgba(255,255,255,0.75);   /* meta / labels — AA passes at 12px */
  --on-deep-faint:    rgba(255,255,255,0.65);   /* large text only */

  /* Typography tokens — single source of truth for all text. */
  --font-display: 'Nunito', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
  --t-display-size:  clamp(40px, 5vw, 64px);     /* hero h1 */
  --t-display-weight: 900;
  --t-display-track:  -0.02em;
  --t-display-line:   1.05;

  --t-h1-size:    clamp(32px, 4.2vw, 52px);      /* page hero h1 */
  --t-h1-weight:  900;
  --t-h1-track:   -0.02em;
  --t-h1-line:    1.10;

  --t-h2-size:    clamp(28px, 3.5vw, 44px);      /* section titles */
  --t-h2-weight:  900;
  --t-h2-track:   -0.02em;
  --t-h2-line:    1.15;

  --t-h3-size:    20px;                          /* card titles */
  --t-h3-weight:  800;
  --t-h3-line:    1.3;

  --t-h4-size:    17px;                          /* faq summary, small headings */
  --t-h4-weight:  800;

  --t-body-size:  16px;
  --t-body-line:  1.65;

  --t-small-size: 14px;
  --t-small-line: 1.55;

  --t-micro-size: 12px;
  --t-micro-line: 1.4;

  --t-label-track: 0.12em;                       /* uppercase labels */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--t-body-size);
  line-height: var(--t-body-line);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); }

/* ─── ACCESSIBILITY: skip link + focus rings ─── */
.skip-link {
  position: absolute;
  top: -100px; left: 12px;
  background: var(--blue-deep);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; outline: 3px solid var(--accent); outline-offset: 2px; }

/* Visible focus indicator everywhere except mouse use. */
*:focus { outline: none; }
*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

/* Hide content visually but keep for screen readers. */
.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;
}

/* ─── TOP BAND ─── */
.top-band {
  background: var(--blue-deep);
  text-align: center;
  padding: 9px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-band span { color: var(--accent); }
.top-band a { color: var(--white); text-decoration: none; }
.top-band-short { display: none; }
.top-band-short a { color: var(--white); text-decoration: none; }
.top-band-short span { color: var(--accent); }

/* ─── NAV ─── */
nav.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 88px; width: auto; }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-link-mobile { display: none; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; flex: 1; justify-content: flex-end; margin-right: 18px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }

.btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 50px;
  font-weight: 800 !important;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 3px 12px rgba(27,109,190,0.25);
}
.btn-nav:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: var(--blue-light);
  border: 2px solid var(--blue-mid);
  border-radius: 12px;
  cursor: pointer;
  padding: 9px 11px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover, .nav-toggle:focus { background: var(--blue-mid); border-color: var(--blue); outline: none; }
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}
.nav-links.open ~ .nav-actions .nav-toggle span:nth-child(1),
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--white);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-accent {
  background: var(--accent);
  color: var(--blue-deep);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(247,197,45,0.35);
  transition: background 0.2s, transform 0.15s;
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 13px 30px;
  border: 2px solid var(--blue);
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--blue-light); }

.btn-solid {
  background: var(--blue);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  padding: 15px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(27,109,190,0.25);
  transition: background 0.2s, transform 0.15s;
}
.btn-solid:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ─── HERO (home) ─── */
.hero {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue) 55%, var(--sky) 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 48px 80px;
  min-height: 78vh;
  display: flex;
  align-items: center;
}
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.08); }
.b1 { width: 400px; height: 400px; top: -120px; right: -80px; }
.b2 { width: 240px; height: 240px; top: 30%; right: 18%; }
.b3 { width: 140px; height: 140px; bottom: 10%; right: 30%; }
.b4 { width: 80px; height: 80px; top: 20%; left: 30%; }
.b5 { width: 600px; height: 600px; bottom: -250px; right: -150px; background: rgba(255,255,255,0.03); }

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 6px 16px 6px 10px;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}
.hero-badge-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.hero-badge-text {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: var(--t-display-weight);
  font-size: var(--t-display-size);
  line-height: var(--t-display-line);
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: var(--t-display-track);
}
.hero-headline .pun { color: var(--accent); position: relative; display: inline-block; }
.hero-headline .pun::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 4px; background: var(--accent); border-radius: 2px; opacity: 0.4;
}

.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: var(--on-deep-body);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-sub strong { color: white; }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-bottom: 44px;
}

.hero-proof {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
}
.proof-item { flex: 1; padding-right: 20px; }
.proof-item + .proof-item {
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.proof-num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 30px; color: var(--white); line-height: 1;
  display: block;
}
.proof-label {
  font-size: 12px; color: var(--on-deep-muted);
  letter-spacing: 0.04em; display: block; margin-top: 3px;
  font-weight: 600;
}

.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.washer-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 40px;
  width: 320px;
  text-align: center;
  position: relative;
}
.washer-card img { max-width: 220px; height: auto; margin: 0 auto 18px; border-radius: 12px; }
.washer-title { font-family: var(--font-display); font-weight: 900; font-size: 20px; color: white; margin-bottom: 6px; }
.washer-sub { font-size: 13px; color: var(--on-deep-body); margin-bottom: 20px; }
.washer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--blue-deep);
  font-family: var(--font-display); font-weight: 800;
  font-size: 13px; padding: 8px 20px; border-radius: 50px;
}
.float-badge {
  position: absolute; background: white; border-radius: 14px;
  padding: 12px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex; align-items: center; gap: 10px;
}
.float-badge-1 { top: -20px; right: -20px; }
.float-badge-2 { bottom: -16px; left: -24px; }
.badge-emoji { font-size: 22px; }
.badge-content { display: flex; flex-direction: column; }
.badge-title-f { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--text); }
.badge-sub-f { font-size: 11px; color: var(--gray); }

/* ─── PAGE HERO (inner pages, smaller) ─── */
.page-hero {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--blue) 70%, var(--sky) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 48px 96px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background-image variant: overlays a dark blue gradient on a hero image
   so headline + sub stay legible. Image preloaded via <link rel=preload>
   in the page itself for the LCP. */
.page-hero.has-bg {
  background:
    linear-gradient(135deg, rgba(13,58,106,0.72) 0%, rgba(18,79,145,0.55) 60%, rgba(27,109,190,0.4) 100%),
    url('/static/img/jacksonville-hero.jpg') center 30% / cover no-repeat;
}
@media (max-width: 720px) {
  .page-hero.has-bg {
    background:
      linear-gradient(135deg, rgba(13,58,106,0.78) 0%, rgba(18,79,145,0.6) 60%, rgba(27,109,190,0.45) 100%),
      url('/static/img/jacksonville-hero-mobile.jpg') center 30% / cover no-repeat;
  }
}
.page-hero.has-bg .hero-bubbles { opacity: 0.35; }

.page-hero.has-bg-pd {
  background:
    linear-gradient(135deg, rgba(13,58,106,0.78) 0%, rgba(18,79,145,0.6) 60%, rgba(27,109,190,0.5) 100%),
    url('/static/img/pickup-delivery-hero.jpg') center / cover no-repeat;
}
@media (max-width: 720px) {
  .page-hero.has-bg-pd {
    background:
      linear-gradient(135deg, rgba(13,58,106,0.82) 0%, rgba(18,79,145,0.65) 60%, rgba(27,109,190,0.55) 100%),
      url('/static/img/pickup-delivery-hero-mobile.jpg') center / cover no-repeat;
  }
}
.page-hero.has-bg-pd .hero-bubbles { opacity: 0.35; }

.page-hero.has-bg-wf {
  background:
    linear-gradient(135deg, rgba(13,58,106,0.78) 0%, rgba(18,79,145,0.6) 60%, rgba(27,109,190,0.5) 100%),
    url('/static/img/wash-fold-hero.jpg') center 25% / cover no-repeat;
}
@media (max-width: 720px) {
  .page-hero.has-bg-wf {
    background:
      linear-gradient(135deg, rgba(13,58,106,0.82) 0%, rgba(18,79,145,0.65) 60%, rgba(27,109,190,0.55) 100%),
      url('/static/img/wash-fold-hero-mobile.jpg') center 25% / cover no-repeat;
  }
}
.page-hero.has-bg-wf .hero-bubbles { opacity: 0.35; }

.page-hero.has-bg-ss {
  background:
    linear-gradient(135deg, rgba(13,58,106,0.78) 0%, rgba(18,79,145,0.6) 60%, rgba(27,109,190,0.5) 100%),
    url('/static/img/self-service-hero.jpg') center 35% / cover no-repeat;
}
@media (max-width: 720px) {
  .page-hero.has-bg-ss {
    background:
      linear-gradient(135deg, rgba(13,58,106,0.82) 0%, rgba(18,79,145,0.65) 60%, rgba(27,109,190,0.55) 100%),
      url('/static/img/self-service-hero-mobile.jpg') center 35% / cover no-repeat;
  }
}
.page-hero.has-bg-ss .hero-bubbles { opacity: 0.35; }
.page-hero .bubble { opacity: 0.6; }
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: var(--t-h1-weight);
  font-size: var(--t-h1-size);
  line-height: var(--t-h1-line);
  letter-spacing: var(--t-h1-track);
  margin-bottom: 18px;
}
.page-hero h1 .pun { color: var(--accent); }
.page-hero p {
  font-size: 18px;
  color: var(--on-deep-body);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-hero .crumb {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 5px 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: var(--t-label-track);
  text-transform: uppercase;
  color: var(--on-deep-strong);
  margin-bottom: 18px;
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--blue-light);
  border-top: 2px solid var(--blue-mid);
  border-bottom: 2px solid var(--blue-mid);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--blue-dark); white-space: nowrap;
}
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ─── SECTIONS ─── */
.section {
  padding: 96px 48px;
  max-width: 1180px;
  margin: 0 auto;
}
.section.tight { padding: 56px 48px; }
.section.alt { background: var(--offwhite); max-width: none; }
.section.alt > .section-inner { max-width: 1180px; margin: 0 auto; }
.section.center { text-align: center; }
.section.center .section-sub { margin-left: auto; margin-right: auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue-dark);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: var(--font-display);
  font-weight: 800; font-size: var(--t-micro-size);
  letter-spacing: var(--t-label-track); text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: var(--t-h2-weight);
  font-size: var(--t-h2-size);
  line-height: var(--t-h2-line);
  color: var(--blue-deep);
  margin-bottom: 14px;
  letter-spacing: var(--t-h2-track);
}
.section-title .accent { color: var(--blue); }
.section-title .pun { color: var(--blue); }
.section-sub {
  font-size: 16px; color: var(--gray);
  max-width: 560px; line-height: 1.65;
  margin-bottom: 48px;
}

/* ─── STEPS / FEATURE GRID ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.step-card {
  background: var(--offwhite);
  border: 2px solid var(--blue-mid);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.step-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 52px; height: 52px;
  background: var(--blue); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(27,109,190,0.3);
}
.step-icon-big { font-size: 36px; margin-bottom: 12px; display: block; }
.step-title { font-family: var(--font-display); font-weight: var(--t-h3-weight); font-size: var(--t-h3-size); line-height: var(--t-h3-line); color: var(--blue-deep); margin-bottom: 10px; }
.step-body { font-size: 15px; line-height: 1.65; color: var(--gray); }

/* ─── SERVICE CARDS ─── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  border: 2px solid var(--blue-mid);
  border-radius: 18px;
  padding: 30px 26px;
  background: white;
  transition: all 0.2s;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(27,109,190,0.1); transform: translateY(-3px); }
.s-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.s-title { font-family: var(--font-display); font-weight: var(--t-h3-weight); font-size: var(--t-h3-size); line-height: var(--t-h3-line); color: var(--blue-deep); margin-bottom: 8px; }
.s-body { font-size: 14.5px; color: var(--gray); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.s-link {
  font-family: var(--font-display);
  font-weight: 800; font-size: 13px;
  color: var(--blue); text-decoration: none;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.s-link:hover { color: var(--blue-dark); }
.s-link::after { content: ' →'; }

/* ─── PRICE / FEATURE CALLOUTS ─── */
.callout-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  background: var(--blue-light);
  border-radius: 20px;
  padding: 28px;
  margin-top: 36px;
}
.callout-item { text-align: center; }
.callout-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--blue-deep);
  display: block;
  line-height: 1;
}
.callout-label {
  font-size: 13px;
  color: var(--gray);
  margin-top: 6px;
  display: block;
  font-weight: 600;
}

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: var(--t-h4-weight);
  font-size: var(--t-h4-size);
  color: var(--blue-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-body {
  padding-top: 14px;
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── LOCATION CARDS ─── */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.location-card {
  background: white;
  border: 2px solid var(--blue-mid);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.2s;
  display: flex; flex-direction: column;
}
.location-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(27,109,190,0.1); transform: translateY(-3px); }
.loc-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.loc-tag.attended { background: #FFF7DD; color: #946800; }
.loc-name {
  font-family: var(--font-display);
  font-weight: var(--t-h3-weight);
  font-size: var(--t-h3-size);
  line-height: var(--t-h3-line);
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.loc-address { font-size: 14.5px; color: var(--gray); margin-bottom: 14px; line-height: 1.5; }
.loc-meta { font-size: 13px; color: var(--blue-dark); margin-bottom: 6px; font-weight: 600; }
.loc-meta strong { color: var(--blue-deep); }
.loc-services {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: 16px 0;
}
.loc-pill {
  background: var(--offwhite);
  border: 1px solid var(--blue-mid);
  color: var(--blue-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 50px;
}
.loc-actions { display: flex; gap: 10px; margin-top: auto; padding-top: 14px; }
.loc-actions a {
  flex: 1; text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  padding: 11px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.loc-call { background: var(--blue); color: white; }
.loc-call:hover { background: var(--blue-dark); }
.loc-dir { background: var(--blue-light); color: var(--blue-dark); }
.loc-dir:hover { background: var(--blue-mid); }

/* ─── LOCATION DETAIL PAGE ─── */
.loc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.loc-info-card {
  background: white;
  border: 2px solid var(--blue-mid);
  border-radius: 20px;
  padding: 32px;
}
.loc-info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--gray-light); }
.loc-info-row:last-child { border-bottom: none; }
.loc-info-row .ico { font-size: 22px; flex-shrink: 0; width: 32px; }
.loc-info-row .label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); font-weight: 700; }
.loc-info-row .val { font-size: 15px; color: var(--text); font-weight: 600; margin-top: 2px; }
.loc-info-row .val a { color: var(--blue); text-decoration: none; }
.loc-info-row .val a:hover { text-decoration: underline; }
.loc-map {
  width: 100%; height: 100%;
  min-height: 420px;
  border-radius: 20px;
  border: 2px solid var(--blue-mid);
  overflow: hidden;
}
.loc-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-form { display: grid; gap: 16px; }
.contact-form label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
}
.req-mark { color: var(--red); margin-left: 2px; }
.form-required-note {
  font-size: 13px;
  color: var(--gray);
  margin: 4px 0 0;
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: var(--red);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  margin-top: 6px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--blue); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--blue-deep);
  color: white;
  border-radius: 20px;
  padding: 36px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 18px;
}
.contact-info-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .ico { font-size: 22px; flex-shrink: 0; width: 32px; }
.contact-info-row .label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.contact-info-row .val { font-size: 15px; color: white; font-weight: 600; margin-top: 2px; }
.contact-info-row .val a { color: white; text-decoration: none; }
.contact-info-row .val a:hover { color: var(--accent); }

/* ─── CTA BAND ─── */
.cta-section {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  padding: 80px 48px;
  text-align: center;
  color: white;
}
.cta-inner { max-width: 760px; margin: 0 auto; }
.cta-section h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.cta-section h2 .pun { color: var(--accent); }
.cta-section p {
  font-size: 17px;
  color: var(--on-deep-body);
  margin-bottom: 30px;
  line-height: 1.6;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── SPLIT CONTENT ─── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split.flip > .split-media { order: 2; }
.split-media {
  background: var(--blue-light);
  border: 2px solid var(--blue-mid);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}
.split-media .visual-emoji {
  font-size: 120px;
  filter: drop-shadow(0 8px 20px rgba(27,109,190,0.2));
}
.split-content h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  color: var(--blue-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.split-content p { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.split-content .check-list { list-style: none; margin: 18px 0; }
.split-content .check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.split-content .check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: -2px;
  color: white;
  background: var(--blue);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--blue-deep);
  padding: 56px 48px 32px;
  color: rgba(255,255,255,0.8);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-inner > div:first-child img { max-width: 180px; height: auto; display: block; margin-bottom: 16px; border-radius: 12px; }
.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22px;
  color: white;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.footer-logo-name span { color: var(--accent); }
.footer-tagline-f { font-size: 12px; letter-spacing: var(--t-label-track); text-transform: uppercase; color: var(--on-deep-muted); margin-bottom: 14px; font-weight: 700; }
.footer-desc { font-size: var(--t-small-size); line-height: 1.65; color: var(--on-deep-body); }
.footer-col-head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: var(--t-small-size); color: var(--on-deep-body); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--on-deep-muted);
  font-family: var(--font-display);
  font-weight: 600;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom a { color: var(--on-deep-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── CHAT WIDGET POSITIONING ─── */
/* Lift the chat bubble above the mobile action bar so they don't collide. */
@media (max-width: 960px) {
  .cwad-bubble,
  .cwad-chat-btn { bottom: 92px !important; }
  .cwad-chat-panel { bottom: 92px !important; }
}

/* ─── COMMERCIAL CALLOUT (PD page) ─── */
.commercial-callout {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
  border-radius: 28px;
  padding: 72px 48px !important;
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
}
.commercial-callout .section-sub {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
  margin-bottom: 36px;
}
.vertical-card {
  background: white;
  border: 2px solid var(--blue-mid);
  border-radius: 18px;
  padding: 24px 22px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.vertical-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(27,109,190,0.10);
}
.vertical-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}
.vertical-title {
  font-family: var(--font-display);
  font-weight: var(--t-h3-weight);
  font-size: 17px;
  line-height: 1.25;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.vertical-body {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.55;
}
.commercial-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.commercial-phone {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 14px;
}
.commercial-phone:hover { color: var(--blue-deep); }

@media (max-width: 960px) {
  .commercial-callout { padding: 48px 24px !important; border-radius: 0; }
  .vertical-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .vertical-card { padding: 18px 16px; }
}
@media (max-width: 540px) {
  .vertical-grid { grid-template-columns: 1fr; }
  .commercial-cta { flex-direction: column; }
}

/* ─── ANIMATIONS: SCROLL REVEAL + HERO LOAD-IN ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children inside grids so they cascade in. */
.grid-3 > .reveal:nth-child(2),
.services-grid > .reveal:nth-child(2),
.locations-grid > .reveal:nth-child(2) { transition-delay: 80ms; }
.grid-3 > .reveal:nth-child(3),
.services-grid > .reveal:nth-child(3),
.locations-grid > .reveal:nth-child(3) { transition-delay: 160ms; }
.grid-3 > .reveal:nth-child(4),
.services-grid > .reveal:nth-child(4),
.locations-grid > .reveal:nth-child(4) { transition-delay: 240ms; }
.grid-3 > .reveal:nth-child(5),
.services-grid > .reveal:nth-child(5),
.locations-grid > .reveal:nth-child(5) { transition-delay: 320ms; }
.grid-3 > .reveal:nth-child(6),
.services-grid > .reveal:nth-child(6),
.locations-grid > .reveal:nth-child(6) { transition-delay: 400ms; }
.grid-3 > .reveal:nth-child(7),
.locations-grid > .reveal:nth-child(7) { transition-delay: 480ms; }

.faq-list .reveal:nth-child(2) { transition-delay: 60ms; }
.faq-list .reveal:nth-child(3) { transition-delay: 120ms; }
.faq-list .reveal:nth-child(4) { transition-delay: 180ms; }
.faq-list .reveal:nth-child(5) { transition-delay: 240ms; }
.faq-list .reveal:nth-child(6) { transition-delay: 300ms; }

/* Split: media slides in from the right, content from the left. */
.split-content.reveal { transform: translateX(-22px) translateY(0); }
.split-media.reveal { transform: translateX(22px) translateY(0); transition-delay: 80ms; }
.split-content.reveal.is-visible,
.split-media.reveal.is-visible { transform: none; }

/* Hero load-in: only kicks in when JS has marked html.js-anim
   (so non-JS users see content immediately). */
html.js-anim .hero-headline,
html.js-anim .hero-sub,
html.js-anim .hero-actions,
html.js-anim .hero-proof,
html.js-anim .hero-badge,
html.js-anim .hero-visual,
html.js-anim .page-hero h1,
html.js-anim .page-hero p,
html.js-anim .page-hero .crumb {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
html.js-anim .hero-badge,
html.js-anim .page-hero .crumb { animation-delay: 0.05s; }
html.js-anim .hero-headline,
html.js-anim .page-hero h1 { animation-delay: 0.15s; }
html.js-anim .hero-sub,
html.js-anim .page-hero p { animation-delay: 0.30s; }
html.js-anim .hero-actions { animation-delay: 0.45s; }
html.js-anim .hero-proof { animation-delay: 0.60s; }
html.js-anim .hero-visual { animation-delay: 0.50s; transform: translateY(20px) scale(0.96); }

@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

/* Hero bubbles: gentle continuous float. */
html.js-anim .bubble { animation: bubble-float 9s ease-in-out infinite; }
html.js-anim .b1 { animation-duration: 11s; }
html.js-anim .b2 { animation-duration: 8s; animation-delay: -2s; }
html.js-anim .b3 { animation-duration: 10s; animation-delay: -4s; }
html.js-anim .b4 { animation-duration: 7s; animation-delay: -1s; }
html.js-anim .b5 { animation-duration: 14s; }

@keyframes bubble-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-14px) translateX(6px); }
}

/* Floating badges on the hero washer card: subtle bob. */
html.js-anim .float-badge-1 { animation: badge-bob-1 4.5s ease-in-out infinite; }
html.js-anim .float-badge-2 { animation: badge-bob-2 5.5s ease-in-out infinite; animation-delay: -1.5s; }
@keyframes badge-bob-1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes badge-bob-2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Step number pop-in once card becomes visible. */
.step-card.is-visible .step-num {
  animation: num-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}
@keyframes num-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

/* Card hover lift gets a touch more bounce. */
.step-card, .service-card, .location-card { transition: border-color 0.2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s; }

/* Reduced motion: collapse all animations to instant fade-in. */
.reduced-motion .reveal,
.reduced-motion .hero-headline,
.reduced-motion .hero-sub,
.reduced-motion .hero-actions,
.reduced-motion .hero-proof,
.reduced-motion .hero-badge,
.reduced-motion .hero-visual,
.reduced-motion .page-hero h1,
.reduced-motion .page-hero p,
.reduced-motion .page-hero .crumb {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
.reduced-motion .bubble,
.reduced-motion .float-badge-1,
.reduced-motion .float-badge-2 { animation: none !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .bubble, .float-badge-1, .float-badge-2 { animation: none !important; }
}

/* ─── LANG TOGGLE + FIND NEAREST (NAV) ─── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
  border: 2px solid var(--blue-mid);
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--blue-dark) !important;
  text-decoration: none;
  background: var(--blue-light);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { background: var(--blue-mid); border-color: var(--blue); color: var(--blue-deep) !important; }

.nav-find-nearest {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 2px solid var(--blue-mid);
  border-radius: 50px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--blue-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.nav-find-nearest:hover { background: var(--blue-light); border-color: var(--blue); color: var(--blue-deep); }
.nfn-pin { font-size: 14px; }

/* ─── NEAREST MODAL ─── */
.nearest-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.nearest-modal[hidden] { display: none; }
.nearest-backdrop {
  position: absolute; inset: 0;
  background: rgba(13,58,106,0.55);
  backdrop-filter: blur(4px);
}
.nearest-card {
  position: relative;
  background: white;
  border-radius: 22px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.nearest-pad {
  padding: 36px 32px 32px;
  overflow-y: auto;
}
.nearest-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-deep);
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.nearest-close:hover { background: var(--blue-mid); }
.nearest-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--blue-deep);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  padding-right: 32px;
}
.nearest-intro {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.nearest-cta { width: 100%; padding: 16px; font-size: 15px; }
.nearest-link {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nearest-link:hover { color: var(--blue); }
.nearest-loading-text {
  text-align: center;
  font-size: 15px;
  color: var(--gray);
  margin-top: 16px;
}
.nearest-spinner {
  width: 44px; height: 44px;
  margin: 0 auto;
  border: 4px solid var(--blue-light);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: nearest-spin 0.9s linear infinite;
}
@keyframes nearest-spin { to { transform: rotate(360deg); } }
.nearest-results-intro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.nearest-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.nearest-row {
  border: 2px solid var(--gray-light);
  border-radius: 14px;
  padding: 16px;
  background: var(--offwhite);
}
.nearest-row--top {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 6px 18px rgba(247,197,45,0.18);
}
.nearest-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.nearest-row-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 17px;
  color: var(--blue-deep);
}
.nearest-row-rank { color: var(--accent); }
.nearest-row-distance {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: var(--blue);
  white-space: nowrap;
}
.nearest-row-addr {
  font-size: 13px;
  color: var(--gray);
  margin: 4px 0 12px;
}
.nearest-row-actions {
  display: flex;
  gap: 8px;
}
.nearest-row-actions a {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nearest-error-h {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--blue-deep);
  margin-bottom: 6px;
  font-size: 16px;
}
.nearest-error-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* OR divider between geolocation and ZIP options */
.nearest-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: var(--t-label-track);
  color: var(--gray);
}
.nearest-or::before, .nearest-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-light);
}

/* ZIP code form */
.nearest-zip-form { margin-bottom: 14px; }
.nearest-zip-form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.nearest-zip-row {
  display: flex;
  gap: 8px;
}
.nearest-zip-row input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
}
.nearest-zip-row input:focus { outline: none; border-color: var(--blue); }
.nearest-zip-btn {
  flex-shrink: 0;
  padding: 13px 22px !important;
  font-size: 14px;
  white-space: nowrap;
}
.nearest-zip-error {
  margin-top: 8px;
  font-size: 13px;
  color: var(--red);
  line-height: 1.5;
}

/* ─── MOBILE ACTION BAR (sticky bottom, mobile only) ─── */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--gray-light);
  box-shadow: 0 -4px 16px rgba(13,58,106,0.08);
  z-index: 90;
  padding: 8px 8px max(8px, env(safe-area-inset-bottom));
  gap: 6px;
  box-sizing: border-box;
}
.mab-btn {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  border: none;
  background: var(--blue-light);
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  color: var(--blue-deep);
  cursor: pointer;
  min-height: 54px;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}
.mab-btn:active { transform: scale(0.96); }
.mab-call { background: var(--blue); color: white; }
.mab-schedule { background: var(--accent); color: var(--blue-deep); }
.mab-find { background: var(--blue-light); color: var(--blue-deep); }
.mab-ico { font-size: 18px; line-height: 1; }
.mab-label { line-height: 1.1; white-space: nowrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav.site-nav { padding: 0 16px; height: 92px; }
  .nav-logo img { height: 76px; }
  .nav-link-mobile { display: list-item !important; }

  /* Mobile drawer: full-height slide-in */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0; right: 0;
    width: min(86vw, 360px);
    height: 100vh;
    background: white;
    padding: 88px 24px 32px;
    box-shadow: -8px 0 32px rgba(13,58,106,0.18);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 105;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid var(--gray-light); }
  .nav-links li:last-child { border-bottom: none; margin-top: 16px; }
  .nav-links a {
    display: block;
    padding: 18px 4px;
    font-size: 17px;
    color: var(--blue-deep);
    min-height: 44px;
  }
  .nav-links a.active { color: var(--blue); }
  .nav-links .btn-nav {
    text-align: center;
    padding: 16px 24px !important;
    border-radius: 50px;
    color: white !important;
  }

  /* Backdrop when drawer open */
  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(13,58,106,0.45);
    backdrop-filter: blur(2px);
    z-index: 100;
  }
  body.nav-open { overflow: hidden; }

  /* Mobile menu drawer fix. The sticky nav (z-index 100) is a stacking context
     that traps the drawer, and the body.nav-open::after backdrop (also z-index 100,
     painted later) was covering the drawer links and stealing taps. Raise the nav
     above the backdrop so the links are tappable, and hide the floating chat button
     and bottom action bar so they cannot sit over the menu either. */
  nav.site-nav { z-index: 200; }
  body.nav-open .cwad-chat-widget,
  body.nav-open .mobile-action-bar { display: none !important; }

  .nav-toggle { display: flex; }
  .nav-actions { gap: 8px; z-index: 110; }
  /* Hide Find Nearest in nav on mobile — it's prominent in the bottom action bar instead. */
  .nav-find-nearest { display: none; }
  .lang-toggle { padding: 8px 10px; min-height: 40px; min-width: 40px; font-size: 13px; }

  /* Top band: hide the long version, show the short Call link */
  .top-band-full { display: none; }
  .top-band-short { display: inline; }

  /* Hero */
  .hero { padding: 40px 16px 56px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: clamp(28px, 8.5vw, 42px) !important; line-height: 1.1; }
  .hero-sub { font-size: 16px; }
  .hero-proof { padding-top: 22px; gap: 0; }
  .proof-num { font-size: 22px; }
  .hero-badge { padding: 5px 12px 5px 8px; }
  .hero-badge-text { font-size: 11px; }

  /* Page hero (inner pages) */
  .page-hero { padding: 48px 20px 56px; min-height: 360px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 40px) !important; }
  .page-hero p { font-size: 16px; }

  /* Tighter sections */
  .section { padding: 56px 20px; }
  .section.tight { padding: 36px 20px; }
  .section-title { font-size: clamp(26px, 7vw, 36px) !important; }
  .section-sub { margin-bottom: 36px; }

  /* Larger tap area for the service-card CTA links on touch screens (~44px). */
  .s-link { display: inline-block; padding: 13px 4px; }

  /* Grids collapse to 1 column */
  .grid-3, .services-grid, .locations-grid { grid-template-columns: 1fr; gap: 16px; }
  .grid-2, .split, .loc-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .split.flip > .split-media { order: 0; }
  .callout-row { grid-template-columns: 1fr 1fr; padding: 22px 16px; gap: 12px; }
  .callout-num { font-size: 26px; }

  /* Cards */
  .step-card, .service-card, .location-card { padding: 24px 22px; }
  .step-num { width: 44px; height: 44px; font-size: 19px; }

  /* CTA section */
  .cta-section { padding: 56px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { text-align: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; padding: 0 4px 32px; }
  footer.site-footer { padding: 44px 20px 24px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }

  /* Location detail map: shorter on mobile */
  .loc-map, .loc-map iframe { min-height: 320px; }
  .loc-info-card { padding: 24px; }

  /* Buttons stretch full-width on mobile */
  .btn-primary, .btn-ghost, .btn-accent, .btn-outline, .btn-solid {
    min-height: 48px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions a { text-align: center; }

  /* Show sticky bottom action bar */
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 78px; }

  /* Form: bigger inputs */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 15px 16px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  .contact-info-card { padding: 28px; }

  /* FAQ items: more padding for easy tap */
  .faq-item { padding: 18px 0; }
  .faq-item summary { font-size: 16px; }

  /* Nearest modal: full-screen-ish on mobile */
  .nearest-modal { padding: 0; }
  .nearest-card { max-width: 100%; max-height: 100vh; border-radius: 22px 22px 0 0; margin-top: auto; }
  .nearest-pad { padding: 28px 22px 24px; }
}

@media (max-width: 540px) {
  nav.site-nav { padding: 0 12px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner > div:first-child { grid-column: auto; }
  .callout-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-band { font-size: 12px; padding: 8px 16px; }
  .nav-find-nearest { padding: 8px; min-width: 40px; }
}

/* ===== App promo: spotlight band + reminder strip (added 2026-05-24) ===== */
.ebapp-badges{display:flex;gap:14px;flex-wrap:wrap;}
.ebapp-badge{display:inline-flex;align-items:center;gap:10px;background:#000;color:#fff;text-decoration:none;border-radius:11px;padding:9px 16px;line-height:1;transition:transform .15s ease,box-shadow .15s ease;}
.ebapp-badge:hover{transform:translateY(-2px);box-shadow:0 8px 22px rgba(0,0,0,.25);}
.ebapp-badge .t{display:block;font-size:10px;font-weight:600;letter-spacing:.3px;opacity:.85;}
.ebapp-badge .m{display:block;font-size:17px;font-weight:800;margin-top:1px;}
.ebapp-band{background:linear-gradient(135deg,var(--blue-deep),var(--blue) 70%);color:#fff;padding:64px 24px;}
.ebapp-band-w{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:1.15fr .85fr;gap:48px;align-items:center;}
.ebapp-eyebrow{display:inline-block;background:var(--accent);color:var(--blue-deep);font-weight:800;font-size:13px;letter-spacing:.5px;padding:6px 14px;border-radius:999px;margin-bottom:18px;}
.ebapp-band h2{font-size:clamp(30px,3.4vw,42px);font-weight:900;line-height:1.05;letter-spacing:-.01em;color:#fff;margin:0;}
.ebapp-lead{font-size:18px;line-height:1.5;margin:16px 0 22px;color:rgba(255,255,255,.92);max-width:460px;}
.ebapp-list{list-style:none;margin:0 0 26px;padding:0;display:grid;gap:10px;}
.ebapp-list li{display:flex;align-items:center;gap:10px;font-size:16px;font-weight:700;color:rgba(255,255,255,.95);}
.ebapp-check{color:var(--accent);font-weight:900;}
.ebapp-phone{justify-self:center;width:236px;height:480px;border-radius:40px;background:#0a2545;border:9px solid #08203c;box-shadow:0 30px 60px rgba(0,0,0,.4);position:relative;overflow:hidden;}
.ebapp-phone:before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);width:116px;height:24px;background:#08203c;border-radius:0 0 16px 16px;z-index:3;}
.ebapp-scr{position:absolute;inset:9px;border-radius:31px;background:linear-gradient(160deg,var(--blue-light),#fff);display:flex;flex-direction:column;align-items:center;padding-top:56px;}
.ebapp-ai{width:84px;height:84px;border-radius:21px;background:linear-gradient(135deg,var(--blue),var(--sky));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:900;font-size:32px;box-shadow:0 10px 24px rgba(27,109,190,.35);}
.ebapp-pn{margin-top:16px;font-weight:900;color:var(--blue-deep);font-size:20px;}
.ebapp-pt{color:var(--gray);font-size:13px;margin-top:4px;font-weight:700;}
.ebapp-pb{margin-top:22px;background:var(--accent);color:var(--blue-deep);font-weight:800;padding:11px 24px;border-radius:999px;font-size:15px;}
.ebapp-strip{background:var(--accent);padding:26px 24px;}
.ebapp-strip-wrap{max-width:1040px;margin:0 auto;display:flex;align-items:center;gap:24px;flex-wrap:wrap;justify-content:space-between;}
.ebapp-strip-left{display:flex;align-items:center;gap:18px;}
.ebapp-strip-icon{width:56px;height:56px;border-radius:15px;background:var(--blue-deep);display:flex;align-items:center;justify-content:center;flex:0 0 auto;color:#fff;font-weight:900;font-size:24px;}
.ebapp-strip-h{font-size:22px;font-weight:900;color:var(--blue-deep);line-height:1.1;margin:0;}
.ebapp-strip-p{color:#5a4a12;font-weight:700;font-size:15px;margin:3px 0 0;}
.ebapp-strip .ebapp-badge{background:var(--blue-deep);}
@media(max-width:780px){
  .ebapp-band-w{grid-template-columns:1fr;text-align:center;}
  .ebapp-eyebrow,.ebapp-lead{margin-left:auto;margin-right:auto;}
  .ebapp-list{justify-items:center;} .ebapp-band .ebapp-badges{justify-content:center;}
  .ebapp-strip-wrap{flex-direction:column;text-align:center;} .ebapp-strip-left{flex-direction:column;}
}
