/* =========================================================
   Mercedes Cleaning Solutions — Site Styles
   ========================================================= */

:root {
  --diamond-cyan: #00d2ff;
  --diamond-blue: #0072ff;
  --brand-blue: #145dc7;
  --brand-blue-dark: #0e4696;
  --navy-deep: #0a1b3a;
  --navy-mid: #102a54;
  --ink: #1a1f2b;
  --slate: #56607a;
  --slate-light: #7c8598;
  --line: #e3e8f0;
  --bg-soft: #f4f7fb;
  --white: #ffffff;
  --gold: #f5a623;
  --danger: #c0392b;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(10, 27, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 27, 58, 0.1);
  --shadow-lg: 0 20px 48px rgba(10, 27, 58, 0.16);

  --container: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; font-weight: 800; }
p { margin: 0 0 1em; }
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }
.section-navy { background: var(--navy-deep); color: #fff; }
.section-tight { padding: 48px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 10px;
}
.section-navy .eyebrow { color: var(--diamond-cyan); }

h1 { font-size: clamp(32px, 4.5vw, 50px); }
h2 { font-size: clamp(26px, 3.2vw, 36px); }
h3 { font-size: 20px; }
.lede { font-size: 18px; color: var(--slate); max-width: 640px; }
.section-navy .lede { color: #c7d1e6; }
.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-blue); color: #fff; }
.btn-primary:hover { background: var(--brand-blue-dark); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--navy-deep); color: #fff; }
.btn-dark:hover { background: #06152e; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy-deep); border-color: var(--navy-deep); }
.btn-outline:hover { background: var(--navy-deep); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--navy-deep); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.top-bar {
  background: var(--navy-deep);
  color: #cdd7ec;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-msg { font-weight: 600; letter-spacing: .02em; }
.top-bar-social { display: flex; gap: 14px; }
.top-bar-social a { color: #cdd7ec; opacity: .85; }
.top-bar-social a:hover { opacity: 1; color: var(--diamond-cyan); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--brand-blue); border-bottom-color: var(--brand-blue); }

.header-actions { display: flex; align-items: center; gap: 18px; }

/* ---------- Call Now dropdown (header) ---------- */
.call-dropdown { position: relative; }

.call-now-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  color: var(--ink);
  padding: 8px 4px;
  border-radius: var(--radius-sm);
}
.call-now-btn .label {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  white-space: nowrap;
}
.call-now-btn svg { flex: none; }
.call-now-btn .chevron { transition: transform .18s ease; color: var(--slate); }
.call-now-btn:hover,
.call-now-btn[aria-expanded="true"] { color: var(--brand-blue); }
.call-now-btn[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.call-now-btn:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.call-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 268px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 200;
}
.call-menu[hidden] { display: none; }

.call-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
}
.call-menu-item:hover,
.call-menu-item:focus-visible {
  background: var(--bg-soft);
  outline: none;
}
.call-menu-item:focus-visible { box-shadow: inset 0 0 0 2px var(--brand-blue); }
.call-menu-ico {
  flex: none;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-blue);
  background: rgba(20, 93, 199, .1);
  border-radius: 50%;
}
.call-menu-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.call-menu-city {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate-light);
  white-space: nowrap;
}
.call-menu-number {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-deep);
  white-space: nowrap;
}

/* ---------- Mobile "Call Us" panel (inside hamburger menu) ---------- */
.mobile-call-us { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-deep);
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 14px; }
.hero-copy .accent { color: var(--brand-blue); }
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 24px 0 28px;
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.hero-badge .num { display: block; font-size: 13px; font-weight: 600; color: var(--slate); }

.page-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: #c7d1e6; margin-left: auto; margin-right: auto; }
.page-hero.with-media { text-align: left; }
.page-hero.with-media .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.page-hero.with-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Location picker cards ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.loc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.loc-card img { width: 100%; height: 220px; object-fit: cover; }
.loc-card-body { padding: 26px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.loc-card h3 { font-size: 22px; }
.loc-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.loc-card li { font-size: 14px; color: var(--slate); display: flex; gap: 8px; align-items: flex-start; }
.loc-card .btn-row { margin-top: auto; }
.check { color: var(--brand-blue); font-weight: 800; flex: none; }

/* ---------- Feature strip ---------- */
.feature-strip {
  background: var(--navy-mid);
  color: #fff;
}
.feature-strip .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 28px 24px;
}
.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-item .ico { flex: none; width: 34px; height: 34px; }
.feature-item strong { display: block; font-size: 14px; }
.feature-item span { font-size: 12px; color: #b9c4dc; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card .ico {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20, 93, 199, .1);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: var(--brand-blue);
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--slate); font-size: 14.5px; margin-bottom: 14px; }
.service-card a { color: var(--brand-blue); font-weight: 700; font-size: 14px; }

.stat-bar {
  background: var(--navy-deep);
  color: #fff;
}
.stat-bar .container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
}
.stat-bar strong { display: block; font-size: 26px; }
.stat-bar span { font-size: 12.5px; color: #b9c4dc; }

/* ---------- Split content (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split.reverse .split-media { order: 2; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 26px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; font-size: 15px; }
.check-list-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }

/* ---------- Facility icon grid ----------
   Reusable card: .facility-item > .facility-ico + .facility-label.
   Flex column with a fixed min-height keeps every icon at the same
   vertical position and every card the same height, regardless of
   how many lines the label wraps to, at any grid width. */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 148px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.facility-ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--brand-blue);
}
.facility-ico svg { width: 100%; height: 100%; display: block; }
.facility-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.step { text-align: center; }
.step .step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin: 0 auto 16px;
}
.step p { color: var(--slate); font-size: 14.5px; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testimonial-card p { color: var(--ink); font-size: 15px; flex: 1; }
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 13px; color: var(--slate-light); }
.rating-line { display: flex; align-items: center; gap: 10px; font-weight: 700; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}
.team-card .role { color: var(--brand-blue); font-weight: 700; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 8px 0; }
.value-card .ico { color: var(--brand-blue); width: 36px; height: 36px; margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #c7d1e6; margin: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 700; }
.form-field .req { color: var(--danger); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(20,93,199,.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; font-size: 14.5px; }
.checkbox-row input { width: 16px; height: 16px; }
fieldset { border: none; padding: 0; margin: 0 0 24px; }
legend { font-weight: 800; font-size: 15px; margin-bottom: 12px; padding: 0; }
.form-note { font-size: 12.5px; color: var(--slate-light); margin-top: 10px; }
.form-success {
  display: none;
  background: #eaf7ee;
  border: 1px solid #bfe6cb;
  color: #1e7a3a;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 18px;
}
.form-success.visible { display: block; }
form.is-submitted .form-fields { display: none; }
.form-error {
  display: none;
  background: #fdecea;
  border: 1px solid #f3b8b0;
  color: var(--danger);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 18px;
}
.form-error.visible { display: block; }
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Contact info cards ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; }
.info-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 20px;
}
.info-card h3 { margin-bottom: 14px; }
.info-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 15px; }
.info-row svg { flex: none; color: var(--brand-blue); margin-top: 2px; }
.info-row a:hover { color: var(--brand-blue); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b9c4dc; padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .9fr .9fr .9fr .9fr;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { height: 42px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--brand-blue); border-color: var(--brand-blue); }
.footer-col h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: var(--diamond-cyan); }
.footer-col p { font-size: 14.5px; margin-bottom: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--diamond-cyan); }

/* ---------- Breadcrumb / mini banner ---------- */
.mini-banner {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.mini-banner h3 { margin-bottom: 4px; }
.mini-banner p { margin: 0; color: var(--slate); }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20,93,199,.08);
  color: var(--brand-blue);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.divider { height: 1px; background: var(--line); margin: 40px 0; }

/* ---------- 404 ---------- */
.error-page { padding: 120px 0; text-align: center; }
.error-page .code { font-size: 96px; font-weight: 800; color: var(--brand-blue); margin: 0; }

/* Offsets same-page anchor targets so the sticky top-bar + header
   (~100px combined) never covers the heading after a jump/smooth-scroll. */
.anchor-target { scroll-margin-top: 120px; }

/* =========================================================
   Responsive
   ========================================================= */
/* Header nav collapses earlier (1140px) than the content-grid breakpoint
   below (980px) — with 7 nav links + logo + Call Now + Free Quote, the
   row runs out of room and wraps before 980px is reached. */
@media (max-width: 1140px) {
  .main-nav { display: none; }
  .call-now-btn .label { display: none; }
  .call-now-btn { gap: 4px; padding: 8px; }
  .nav-toggle { display: block; }

  .site-header.nav-open .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }

  .mobile-call-us {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
  .mobile-call-us-title {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--slate-light);
    margin-bottom: 2px;
  }
  .mobile-call-us .call-menu-item {
    background: var(--bg-soft);
    padding: 14px;
  }
  .mobile-call-us .call-menu-item:hover,
  .mobile-call-us .call-menu-item:active { background: var(--line); }
}

@media (max-width: 980px) {
  .hero .container,
  .split,
  .contact-grid,
  .page-hero.with-media .container { grid-template-columns: 1fr; }
  .split .split-media, .split.reverse .split-media { order: -1; }
  .loc-grid, .grid-3, .grid-2, .team-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .grid-4, .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-bar .container { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  section { padding: 52px 0; }
  .grid-3, .grid-2, .loc-grid, .team-grid, .values-grid, .grid-4, .facility-grid { grid-template-columns: 1fr; }
  .feature-strip .container, .stat-bar .container { grid-template-columns: repeat(2, 1fr); }
  .form-grid, .checkbox-grid, .check-list-2col { grid-template-columns: 1fr; }
  .cta-band { padding: 32px; flex-direction: column; text-align: center; }
  .top-bar-msg { display: none; }
  .header-actions { gap: 10px; }
  .header-actions .btn.btn-sm { padding: 9px 10px; font-size: 12.5px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Below ~640px the icon-only Call Now trigger sits too close to the left
     edge for a menu anchored to it to fit — anchor to the wider
     .header-actions row instead so the menu's right edge stays flush
     with the header's true right edge and never runs off-screen. */
  .header-actions { position: relative; }
  .call-dropdown { position: static; }
  .call-menu { min-width: 240px; }
}
