:root {
  --navy: #23235e;
  --navy-dark: #171747;
  --ink: #121526;
  --muted: #667085;
  --line: #d9e1ec;
  --silver: #eef2f7;
  --silver-2: #f8fafc;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 16px 40px rgba(16, 24, 40, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(35,35,94,.08), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, var(--silver-2) 45%, #ffffff 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--navy);
  color: white;
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { left: 10px; }

.top-strip {
  background: var(--navy-dark);
  color: white;
  font-size: .9rem;
}
.top-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: .46rem 1rem;
  display: flex;
  justify-content: center;
  gap: .7rem;
  flex-wrap: wrap;
  text-align: center;
}
.top-strip a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216,222,232,.9);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.brand-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(35,35,94,.18);
}
.brand-copy { min-width: 0; }
.brand-copy strong {
  display: block;
  font-size: .98rem;
  line-height: 1.1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--navy);
}
.brand-copy span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  font-weight: 800;
  font-size: .88rem;
  color: #344054;
  padding: .54rem .72rem;
  border-radius: 999px;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--silver); color: var(--navy); }
.nav .call-link { background: var(--navy); color: white; }
.nav .call-link:hover { background: var(--navy-dark); color: white; }

.container { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 3.6rem 0; }
.compact { padding-top: 1.6rem; padding-bottom: 1.6rem; }
.section-alt {
  background: linear-gradient(180deg, rgba(238,242,247,.48), rgba(255,255,255,.58));
  border-top: 1px solid rgba(217,225,236,.8);
  border-bottom: 1px solid rgba(217,225,236,.8);
}
.section-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.25rem;
}
.section-kicker {
  margin: 0 0 .35rem;
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
}
h1, h2, h3 { line-height: 1.08; color: var(--navy-dark); margin-top: 0; }
h1 { font-size: clamp(2.2rem, 4.8vw, 4.15rem); letter-spacing: -.06em; margin-bottom: .7rem; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.65rem); letter-spacing: -.04em; margin-bottom: .55rem; }
h3 { font-size: 1.2rem; margin-bottom: .45rem; }
p { margin-top: 0; }
.lede { color: #475467; font-size: clamp(1.02rem, 1.5vw, 1.14rem); max-width: 760px; }
.muted { color: var(--muted); }

.hero { padding: 1.35rem 0 1.55rem; }
.hero-panel {
  overflow: hidden;
  border: 1px solid rgba(216,222,232,.92);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.92)),
    radial-gradient(circle at 86% 0%, rgba(35,35,94,.12), transparent 20rem);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 1.65rem);
}
.hero-logo-banner {
  background: white;
  border: 1px solid rgba(216,222,232,.95);
  border-radius: 22px;
  padding: clamp(.6rem, 1.4vw, 1rem);
  height: clamp(130px, 17vw, 190px);
  display: grid;
  place-items: center;
}
.hero-brand-logo {
  width: min(560px, 100%);
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(16,24,40,.06));
}
.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  padding: clamp(1rem, 2.2vw, 1.65rem) .25rem .25rem;
}
.hero-copy { min-width: 0; }
.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: 1rem;
}
.hero-intro .hero-actions {
  justify-content: flex-end;
  max-width: 360px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .78rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: 0 12px 26px rgba(35,35,94,.24);
}
.btn-secondary { color: var(--navy); background: white; border-color: var(--line); }
.btn-soft { color: var(--navy); background: var(--silver); border-color: rgba(35,35,94,.08); }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.card {
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(16,24,40,.055);
}
.card p:last-child { margin-bottom: 0; }
.quick-card { min-height: 150px; }
.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--silver);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: .78rem;
  letter-spacing: -.02em;
  font-weight: 900;
  margin-bottom: .9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}
.service-list {
  display: grid;
  gap: .85rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.service-list li {
  padding: .95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
}
.service-buttons { margin-top: 1.3rem; }
.photo-cluster {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  grid-template-rows: 1fr 1fr;
  gap: .85rem;
  height: 410px;
  max-width: 520px;
  margin-left: auto;
}
.photo-cluster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(16,24,40,.08);
}
.photo-cluster .cluster-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}
.local-section { padding: 2.6rem 0; }
.local-card {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 1.4rem;
  align-items: center;
}
.local-card h2 { margin-bottom: 0; }
.local-card p:last-child { color: #475467; font-size: 1.05rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
  display: grid;
  gap: .55rem;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .78rem .85rem;
  background: var(--silver-2);
  border: 1px solid rgba(216,222,232,.85);
  border-radius: 14px;
}
.price-list strong { color: var(--navy); white-space: nowrap; text-align: right; }
.pricing-note { font-size: .92rem; color: var(--muted); margin: .8rem 0 0; }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.payment-card { display: flex; gap: 1rem; align-items: flex-start; }
.payment-card .icon-badge { flex: 0 0 auto; }
.store-buttons { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .85rem; }
.store-button {
  border: 1px solid var(--line);
  background: #111827;
  color: white;
  border-radius: 14px;
  padding: .65rem .85rem;
  font-weight: 900;
}

.info-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1rem;
}
.hours-list {
  margin: .85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .4rem;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .62rem .75rem;
  background: var(--silver-2);
  border-radius: 12px;
}
.hours-list span:first-child { font-weight: 900; color: var(--navy); }
.map-embed {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  min-height: 340px;
}
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-hero { padding: 2rem 0 .6rem; }
.gallery-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}
.gallery-title-row h1 { margin-bottom: 0; }
.gallery-title-row .hero-actions { margin-top: 0; }
.gallery-section { padding-top: 1rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-photo {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 12px 30px rgba(16,24,40,.08);
}
.gallery-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .22s ease;
}
.gallery-photo:hover img { transform: scale(1.025); }

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer a { color: var(--navy); font-weight: 800; }

.floating-call {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  box-shadow: 0 16px 30px rgba(35,35,94,.28);
}

@media (max-width: 980px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: .2rem; }
  .nav a { flex: 0 0 auto; }
  .hero-intro, .split, .pricing-grid, .info-grid, .payment-grid, .contact-grid, .local-card { grid-template-columns: 1fr; }
  .hero-intro .hero-actions { justify-content: flex-start; max-width: none; }
  .quick-grid { grid-template-columns: 1fr; }
  .photo-cluster { margin: 0; max-width: none; height: 380px; }
  .gallery-title-row { align-items: flex-start; flex-direction: column; }
}

@media (min-width: 981px) {
  .hero-intro .hero-actions .btn-primary { flex-basis: 100%; }
}

@media (max-width: 620px) {
  .top-strip-inner { font-size: .8rem; gap: .42rem; }
  .container { width: min(100% - 1rem, 1180px); }
  .hero { padding: 1rem 0 1.2rem; }
  .hero-panel { border-radius: 24px; padding: 1rem; }
  .hero-logo-banner { height: 128px; padding: .65rem; border-radius: 19px; }
  .hero-brand-logo { width: 100%; max-height: 112px; }
  .hero-intro { display: block; padding: 1rem 0 0; }
  h1 { font-size: clamp(2rem, 12vw, 3rem); }
  .section { padding: 2.8rem 0; }
  .compact { padding-top: 1.25rem; padding-bottom: 1.25rem; }
  .section-header { display: block; }
  .card { padding: 1rem; border-radius: 18px; }
  .btn { width: 100%; }
  .button-row .btn { width: auto; flex: 1 1 180px; }
  .photo-cluster { grid-template-columns: 1fr; grid-template-rows: none; height: auto; }
  .photo-cluster .cluster-tall { grid-column: auto; grid-row: auto; }
  .photo-cluster img { aspect-ratio: 4 / 3; }
  .price-list li, .hours-list li { align-items: flex-start; flex-direction: column; }
  .price-list strong { text-align: left; }
  .map-embed, .map-embed iframe { min-height: 300px; height: 300px; }
  .brand-copy span { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 5.2rem; }
  .floating-call { display: inline-flex; }
}

/* v4 desktop/header refinements */
.brand-logo-link {
  align-items: center;
  min-width: 185px;
}
.header-brand-logo {
  width: min(232px, 34vw);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 6px 12px rgba(35,35,94,.10));
}
.header-inner {
  padding-top: .55rem;
  padding-bottom: .55rem;
}

.hero-logo-banner {
  overflow: hidden;
}
.hero-brand-logo {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 981px) {
  .hero { padding: 1.1rem 0 1.35rem; }
  .hero-panel {
    padding: 1rem 1.25rem 1.25rem;
    border-radius: 26px;
  }
  .hero-logo-banner {
    height: 122px;
    padding: .45rem .75rem;
    border-radius: 20px;
  }
  .hero-intro {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 1.25rem;
    align-items: center;
    padding: .95rem .25rem 0;
  }
  h1 { font-size: clamp(2.2rem, 4vw, 3.55rem); }
  .hero-intro .hero-actions { max-width: 340px; }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.15rem;
  }
  .gallery-photo img { aspect-ratio: 4 / 3; }
}

@media (min-width: 621px) and (max-width: 980px) {
  .header-brand-logo {
    width: 218px;
    height: 58px;
  }
  .hero-logo-banner {
    height: 140px;
  }
}

@media (max-width: 620px) {
  .header-brand-logo {
    width: 188px;
    height: 48px;
  }
  .header-inner {
    padding: .55rem .75rem;
  }
}


/* v5 final layout fixes */
@media (min-width: 981px) {
  .hero {
    padding: 1rem 0 1.2rem;
  }
  .hero-panel {
    padding: 1rem 1.25rem 1.25rem;
  }
  .hero-logo-banner {
    height: clamp(150px, 15vw, 178px);
    padding: .6rem 1rem;
    overflow: hidden;
  }
  .hero-brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 620px;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    margin: 0 auto;
  }
  .hero-intro {
    padding-top: 1rem;
    align-items: center;
  }
  .hero-copy h1 {
    font-size: clamp(2.3rem, 3.4vw, 3.35rem);
    letter-spacing: -.055em;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.25rem;
  }
  .gallery-photo img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 980px) {
  .hero-brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
  }
}

@media (max-width: 620px) {
  .floating-call {
    left: .75rem;
    right: .75rem;
    width: auto !important;
    max-width: calc(100vw - 1.5rem);
    min-height: 48px;
    padding-left: .75rem;
    padding-right: .75rem;
    font-size: .94rem;
    white-space: nowrap;
  }
  .hero-logo-banner {
    height: 132px;
  }
}

@media (max-width: 380px) {
  .floating-call {
    font-size: .86rem;
    padding-left: .6rem;
    padding-right: .6rem;
  }
}


/* v5b hero anti-crop + mobile call safety */
.hero-logo-banner {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.hero-brand-logo {
  display: block !important;
  width: min(400px, 88%) !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
}

@media (min-width: 981px) {
  .hero-logo-banner {
    padding: .7rem 1rem !important;
  }
  .hero-panel {
    padding: 1rem 1.25rem 1.25rem !important;
  }
  .hero-intro {
    padding-top: 1rem !important;
  }
}

@media (max-width: 620px) {
  .hero-brand-logo {
    width: min(330px, 92%) !important;
  }
  .floating-call {
    display: flex;
    left: .75rem !important;
    right: .75rem !important;
    width: auto !important;
    max-width: calc(100vw - 1.5rem) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}


/* v6 final polish */
html {
  scroll-padding-top: 7.25rem;
}
#top, #services, #pricing, #payments, #hours, #contact, #local-laundromat {
  scroll-margin-top: 7.25rem;
}

.quick-card {
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.35rem;
}
.quick-card h3 {
  margin-bottom: .45rem;
}
.quick-card .icon-badge {
  display: none;
}

@media (min-width: 981px) {
  .compact {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .hero-logo-banner {
    padding: .9rem 1rem !important;
  }
  .hero-brand-logo {
    width: min(420px, 88%) !important;
  }
  .quick-grid {
    gap: 1.05rem;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 8.25rem;
  }
  #top, #services, #pricing, #payments, #hours, #contact, #local-laundromat {
    scroll-margin-top: 8.25rem;
  }
  .quick-card {
    min-height: auto;
    padding: 1.15rem 1.2rem;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 9rem;
  }
  .quick-grid {
    gap: .8rem;
  }
  .quick-card {
    padding: 1rem 1.05rem;
  }
  .quick-card h3 {
    font-size: 1.12rem;
  }
}

/* v7 business laundry page + mobile hamburger navigation */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 44px;
  padding: .68rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--navy);
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16,24,40,.06);
}
.menu-toggle:hover { background: var(--silver-2); }
.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 18px;
}
.menu-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.menu-toggle-icon span {
  transition: transform .18s ease, opacity .18s ease;
}

.business-home {
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}
.business-home-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
}
.business-home-actions { margin-top: 1.15rem; }
.business-home-steps {
  display: grid;
  gap: .8rem;
}
.business-home-steps article {
  display: grid;
  gap: .18rem;
  padding: .95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--silver-2);
}
.business-home-steps strong {
  color: var(--navy-dark);
  line-height: 1.2;
}
.business-home-steps span {
  color: var(--muted);
  font-size: .95rem;
}

.business-hero {
  padding: 2rem 0 1.4rem;
}
.business-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, .93fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}
.business-hero-copy h1 {
  max-width: 820px;
}
.business-notice {
  display: grid;
  gap: .18rem;
  max-width: 780px;
  margin-top: 1rem;
  padding: .95rem 1rem;
  border: 1px solid rgba(35,35,94,.14);
  border-radius: 18px;
  background: rgba(238,242,247,.72);
  color: #475467;
}
.business-notice strong {
  color: var(--navy-dark);
}
.business-actions {
  justify-content: flex-start;
  max-width: none;
}
.business-hero-card {
  padding: clamp(1.15rem, 2.5vw, 1.55rem);
}
.business-hero-card h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.18rem);
  margin-bottom: .95rem;
}
.business-check-list {
  display: grid;
  gap: .72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.business-check-list li {
  position: relative;
  padding: .8rem .9rem .8rem 2.3rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--silver-2);
  color: #475467;
}
.business-check-list li::before {
  content: "✓";
  position: absolute;
  top: .75rem;
  left: .85rem;
  display: inline-grid;
  place-items: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
}

.business-fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.business-fit-card,
.benefit-card {
  min-height: 150px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process-card {
  min-height: 220px;
}
.step-pill {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: .95rem;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(35,35,94,.18);
}

.benefit-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: start;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.business-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  align-items: center;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}
.business-cta .lede {
  margin-bottom: 0;
}
.business-cta-actions {
  margin-top: 0;
  justify-content: flex-end;
  max-width: 360px;
}

#business-laundry, #business-fit, #business-process, #business-benefits, #business-contact {
  scroll-margin-top: 7.25rem;
}

@media (max-width: 980px) {
  .header-inner {
    position: relative;
    align-items: center;
    flex-direction: row;
  }
  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + .55rem);
    left: 1rem;
    right: 1rem;
    width: auto;
    padding: .78rem;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 42px rgba(16,24,40,.16);
  }
  .nav.is-open {
    display: flex;
  }
  .nav a {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex: 1 1 auto;
    padding: .72rem .78rem;
    border-radius: 15px;
  }
  .nav .call-link {
    justify-content: center;
    margin-top: .18rem;
  }
  .business-home-card,
  .business-hero-grid,
  .benefit-layout,
  .business-cta {
    grid-template-columns: 1fr;
  }
  .business-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .business-cta-actions {
    justify-content: flex-start;
    max-width: none;
  }
  #business-laundry, #business-fit, #business-process, #business-benefits, #business-contact {
    scroll-margin-top: 8.25rem;
  }
}

@media (max-width: 620px) {
  .menu-toggle {
    gap: .5rem;
    padding: .66rem .78rem;
    font-size: .86rem;
  }
  .nav {
    left: .75rem;
    right: .75rem;
    top: calc(100% + .45rem);
    border-radius: 20px;
  }
  .business-home {
    padding-top: 2.15rem;
    padding-bottom: 2.15rem;
  }
  .business-home-card,
  .business-hero-card,
  .business-cta {
    padding: 1rem;
  }
  .business-hero {
    padding: 1.35rem 0 1rem;
  }
  .business-fit-grid,
  .process-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .business-fit-card,
  .benefit-card,
  .process-card {
    min-height: auto;
  }
  .business-check-list li {
    padding-right: .8rem;
  }
  #business-laundry, #business-fit, #business-process, #business-benefits, #business-contact {
    scroll-margin-top: 9rem;
  }
}
