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

:root {
  --blue:        #1B6DBE;
  --blue-dark:   #124F91;
  --blue-deep:   #0D3A6A;
  --blue-light:  #E8F2FB;
  --blue-mid:    #C6DFF5;
  --sky:         #5AAEE8;
  --white:       #FFFFFF;
  --offwhite:    #F7FAFE;
  --gray:        #6B7A8D;
  --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);
}

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

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ─── TOP BAND ─── */
.top-band {
  background: var(--blue-deep);
  text-align: center;
  padding: 9px 20px;
  font-family: 'Nunito', sans-serif;
  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: 76px;
  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: 44px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-link-mobile { display: none; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9);
}

.hero-headline {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.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: rgba(255,255,255,0.82);
  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: 'Nunito', sans-serif; font-weight: 900;
  font-size: 30px; color: var(--white); line-height: 1;
  display: block;
}
.proof-label {
  font-size: 12px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em; display: block; margin-top: 3px;
}

.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; margin: 0 auto 18px; border-radius: 12px; }
.washer-title { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 20px; color: white; margin-bottom: 6px; }
.washer-sub { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.washer-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--blue-deep);
  font-family: 'Nunito', sans-serif; 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: 'Nunito', sans-serif; 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;
  text-align: center;
  color: white;
}
.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: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.page-hero h1 .pun { color: var(--accent); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  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.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  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: 'Nunito', sans-serif;
  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);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  color: var(--blue-deep);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.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: 'Nunito', sans-serif; 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: 'Nunito', sans-serif; font-weight: 800; font-size: 20px; 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: 'Nunito', sans-serif; font-weight: 800; font-size: 19px; 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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--blue-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--blue-deep);
  letter-spacing: 0.04em;
}
.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: 'Nunito Sans', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: rgba(255,255,255,0.8);
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-desc { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.5); }
.footer-col-head {
  font-family: 'Nunito', sans-serif;
  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: 14px; color: rgba(255,255,255,0.55); 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: 12px;
  color: rgba(255,255,255,0.35);
  font-family: 'Nunito', sans-serif;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ─── 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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--blue-deep);
}
.nearest-row-rank { color: var(--accent); }
.nearest-row-distance {
  font-family: 'Nunito', sans-serif;
  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: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nearest-error-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ─── 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: 'Nunito', sans-serif;
  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: 64px; }
  .nav-logo img { height: 38px; }
  .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; }

  .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; }
  .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; }

  /* 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; }
}
