/* Metro Cleaning v8 — Bold brand · fluid layouts */
:root {
  --navy: #0637b3;
  --navy-deep: #042a8a;
  --navy-mid: #0a2d8f;
  --red: #d4120c;
  --red-hot: #ff2d22;
  --red-deep: #b30f0a;
  --white: #ffffff;
  --off: #f4f6fb;
  --mist: #c8d4ea;
  --ink: #111827;
  --text: #2d3748;
  --text-strong: #1a202c;
  --preview: 0px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-strong);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); }
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.shell { width: min(100% - 2rem, 1180px); margin-inline: auto; }

.skip {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
}
.skip:focus { top: calc(var(--preview) + 1rem); }

.preview-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: var(--navy-deep);
  color: var(--white);
  font-size: 0.8125rem;
  text-align: center;
  padding: 0.45rem 1rem;
}
.preview-bar a { color: #ffb4b0; font-weight: 700; text-decoration: none; }
body:has(.preview-bar) { --preview: 2.1rem; }

/* ── Header: light bar for logo contrast ── */
.site-header {
  position: fixed;
  top: var(--preview);
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(17, 24, 39, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
  padding: 0 1rem;
  max-width: 1240px;
  margin-inline: auto;
}

.logo img { height: 40px; width: auto; max-width: 200px; filter: none; object-fit: contain; }

.nav-links {
  display: none;
  justify-content: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-strong);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--off); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.header-phone {
  display: none;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  text-decoration: none;
}
.header-phone:hover { color: var(--red); }

.menu-btn {
  width: 42px;
  height: 42px;
  border: 2px solid var(--mist);
  border-radius: 8px;
  background: var(--off);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-btn svg { width: 20px; height: 20px; }
body.menu-open .menu-btn { visibility: hidden; }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 2500;
  background: var(--navy-deep);
  color: var(--white);
  padding: calc(var(--preview) + 4.5rem) 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease), visibility 0.35s;
  visibility: hidden;
  pointer-events: none;
}
.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--red);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.drawer-close {
  padding: 0.6rem 1.2rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.drawer-links { list-style: none; margin: 0; padding: 0; flex: 1; }
.drawer-links a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-foot {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn:active { transform: scale(0.97); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(212, 18, 12, 0.4);
}
.btn-red:hover { background: var(--red-hot); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--off); color: var(--navy-deep); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn-lg { min-height: 56px; padding: 0.95rem 1.85rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ══════════════════════════════════════
   HERO — diagonal fluid split
   ══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: calc(var(--preview) + 68px);
  display: grid;
  background: var(--off);
  overflow: hidden;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1rem 8rem;
  color: var(--text-strong);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  border-left: 6px solid var(--red);
  z-index: -1;
}

.hero-flag {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-seo-h1 {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.hero-display {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 1rem;
  max-width: 16ch;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-strong);
  max-width: 46ch;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-strong);
}

.hero-stars { color: #fbbf24; }

.hero-phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}
.hero-phone:hover { color: var(--red); }

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-panel .btn-outline-white {
  color: var(--navy);
  border-color: var(--navy);
}
.hero-panel .btn-outline-white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.hero-note {
  font-size: 0.875rem;
  color: var(--text);
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-offer-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--red);
  color: var(--white);
}

.hero-offer-ribbon strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.hero-offer-ribbon span {
  font-size: 0.9375rem;
  opacity: 0.92;
  max-width: 28ch;
}

.hero-offer-ribbon small {
  font-size: 0.45em;
}

.svc-head {
  padding: 3rem 0 1.5rem;
}

.svc-head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.trust-band {
  background: var(--red);
  color: var(--white);
  padding: 1.35rem 0;
}

.trust-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
  text-align: center;
}

.trust-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.trust-band span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.88;
}

/* ══ LEWISVILLE — editorial overlap ══ */
.lv-section {
  position: relative;
  padding: 5rem 0;
  background: var(--off);
}

.lv-flow {
  position: relative;
}

.lv-photo {
  width: 100%;
  max-width: 720px;
  border-radius: 0 80px 0 0;
  overflow: hidden;
  box-shadow: 16px 16px 0 rgba(212, 18, 12, 0.18);
}

.lv-photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.lv-story {
  position: relative;
  margin-top: -3rem;
  margin-left: 0;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-left: 6px solid var(--red);
  box-shadow: 0 20px 60px rgba(6, 55, 179, 0.12);
}

.lv-story h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.lv-story h2 span { color: var(--navy); }

.lv-story > p {
  color: var(--text-strong);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.lv-pullquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border-left: 4px solid var(--red);
  background: var(--off);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.45;
}

.lv-audiences {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.lv-audience h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.lv-audience p {
  font-size: 0.9375rem;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.7;
}

.lv-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.lv-neighborhoods span {
  padding: 0.45rem 1rem;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
}

/* ══ ABOUT — sidebar + prose ══ */
.about-fluid {
  display: grid;
  background: var(--white);
}

.about-rail {
  background: var(--off);
  color: var(--ink);
  border-right: 4px solid var(--navy);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.about-rail-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
}

.about-rail-stat span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}

.about-body {
  padding: 2.5rem 1.5rem;
}

.about-body h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

.about-body p {
  color: var(--text-strong);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.about-owner {
  margin-top: 2rem;
  position: relative;
}

.about-owner img {
  width: 100%;
  border-radius: 0 0 0 60px;
}

.about-owner figcaption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 0.75rem 1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
}

/* ══ PROCESS — light readable flow ══ */
.process-river {
  padding: 5rem 0;
  background: var(--off);
  color: var(--text);
  overflow: hidden;
  border-block: 1px solid var(--mist);
}

.process-river .section-intro {
  color: var(--text-strong);
  max-width: 50ch;
  margin-bottom: 3rem;
  line-height: 1.75;
}

.process-river h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.river-steps { position: relative; }

.river-step {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 0 24px 0 24px;
  border: 1px solid var(--mist);
  box-shadow: 0 8px 32px rgba(6, 55, 179, 0.06);
}

.river-step:last-child { margin-bottom: 0; }

.river-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--navy);
  opacity: 1;
}

.river-step h3 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.river-step p {
  color: var(--text-strong);
  font-size: 1rem;
  margin: 0;
  line-height: 1.75;
}

.river-step img {
  border-radius: 0 24px 0 24px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 2px solid var(--mist);
}

/* ══ SERVICES — alternating full-bleed strips ══ */
.svc-strip {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 280px;
}

.svc-strip:nth-child(odd) { background: var(--white); }
.svc-strip:nth-child(even) { background: var(--off); }

.svc-strip-media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.svc-strip:nth-child(odd) .svc-strip-media img { clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }
.svc-strip:nth-child(even) .svc-strip-media img { clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%); }

.svc-strip-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

.svc-strip-index {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.svc-strip-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.svc-strip-copy h3 a { color: var(--navy); text-decoration: none; }
.svc-strip-copy h3 a:hover { color: var(--red); }

.svc-strip-copy p {
  color: var(--text-strong);
  margin: 0;
  max-width: 42ch;
  line-height: 1.7;
}

.home-service-area-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  max-width: 16rem;
}

.home-service-area-list a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.home-service-area-list a:hover {
  color: var(--red);
  text-decoration: underline;
}

/* ══ PRICING — typographic split ══ */
.pricing-fluid {
  padding: 5rem 0;
  background: var(--white);
}

.pricing-section-h {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 28ch;
  margin-inline: auto;
}

.pricing-sub-h {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pricing-mega {
  text-align: center;
  padding: 3rem 1.5rem;
  margin-bottom: 2rem;
  background: var(--off);
  color: var(--ink);
  border: 3px solid var(--navy);
  border-radius: 0 0 24px 0;
  clip-path: none;
}

.pricing-mega-amt {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.pricing-mega-amt small {
  font-size: 0.22em;
  color: var(--navy);
  vertical-align: super;
}

.pricing-mega p {
  font-size: 1.0625rem;
  color: var(--text-strong);
  margin: 0;
  line-height: 1.7;
}

.pricing-details {
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.pricing-panel {
  background: var(--off);
  border: 1px solid var(--mist);
  border-radius: 16px;
  padding: 1.75rem 2rem;
}

.pricing-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.pricing-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing-lines li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 3px solid var(--off);
  font-size: 1.0625rem;
  color: var(--text-strong);
}

.pricing-lines li:last-child { border-bottom: none; }

.pricing-lines strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--red);
}

.coupon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.coupon-card {
  display: block;
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--mist);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.coupon-card img {
  display: block;
  width: 100%;
  height: auto;
}

.coupon-card:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 14px 32px rgba(212, 18, 12, 0.12);
}

/* Quote form */
.quote-form-zone {
  padding: 5rem 0;
  background: var(--off);
  border-block: 1px solid var(--mist);
}

.quote-form-zone h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  text-align: center;
}

.quote-form-zone .section-intro {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 2rem;
  color: var(--text-strong);
  line-height: 1.75;
}

.elfsight-form-wrap,
.elfsight-reviews-wrap {
  max-width: 900px;
  margin-inline: auto;
}

/* FAQ — expanding panels */
.faq-zone {
  padding: 5rem 0;
  background: var(--off);
}

.faq-zone h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.faq-panel {
  background: var(--white);
  border-left: 5px solid var(--red);
  margin-bottom: 0.5rem;
  transition: border-color 0.2s;
}

.faq-panel[open] { border-left-color: var(--navy); }

.faq-panel summary {
  padding: 1.2rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
}

.faq-panel summary::-webkit-details-marker { display: none; }

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text-strong);
  line-height: 1.75;
}

/* Reviews — stacked overlap */
.reviews-fluid {
  padding: 5rem 0;
  background: var(--white);
}

.reviews-fluid h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
  text-align: center;
}

.reviews-fluid .section-intro {
  text-align: center;
  max-width: 50ch;
  margin: 0 auto 2rem;
  color: var(--text-strong);
  line-height: 1.75;
}

.review-stack {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 320px;
}

.review-slide {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--mist);
  box-shadow: 10px 10px 0 rgba(212, 18, 12, 0.12);
}

.review-slide:nth-child(2) {
  margin-top: -1.5rem;
  margin-left: 1.5rem;
  border-color: var(--red);
  box-shadow: 10px 10px 0 rgba(6, 55, 179, 0.1);
}

.review-slide:nth-child(3) {
  margin-top: -1.5rem;
  margin-left: 3rem;
}

.review-slide .stars { color: #fbbf24; margin-bottom: 0.75rem; }

.review-slide blockquote {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}

.review-slide cite {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  font-style: normal;
}

/* CTA — full red */
.cta-red {
  background: var(--red);
  color: var(--white);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.cta-red h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-red p {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 50ch;
  margin-inline: auto;
}

.cta-red .phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.cta-red .phone:hover { color: var(--off); }

/* Footer — light readable surface */
.site-footer {
  background: var(--off);
  color: var(--text-strong);
  padding: 3rem 0 calc(5rem + var(--safe-bottom));
  border-top: 4px solid var(--navy);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3,
.site-footer h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.site-footer nav a {
  display: block;
  padding: 0.3rem 0;
  color: var(--text-strong);
  text-decoration: none;
  font-weight: 500;
}
.site-footer nav a:hover { color: var(--red); }

.site-footer iframe {
  width: 100%;
  height: 220px;
  border: 2px solid var(--mist);
  border-radius: 12px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text);
  text-align: center;
}

.mobile-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1800;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}

.mobile-bar a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.mobile-bar .call {
  background: var(--white);
  color: var(--navy);
  border-top: 1px solid var(--mist);
}

.mobile-bar .quote {
  background: var(--red);
  color: var(--white);
}

/* ── Desktop ── */
@media (min-width: 900px) {
  .menu-btn { display: none; }
  .nav-links { display: flex; }
  .header-phone { display: block; }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
  }

  .hero-panel {
    padding: 4rem 3rem 5rem max(2rem, calc((100vw - 1180px) / 2 + 1rem));
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    margin-right: -8%;
  }

  .hero-visual img {
    clip-path: polygon(12% 0, 100% 0, 100% 85%, 0 100%);
  }

  .hero-offer-ribbon {
    left: 0;
    right: 20%;
    border-radius: 0 16px 0 0;
  }

  .lv-flow {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 0;
  }

  .lv-story {
    margin-top: 4rem;
    margin-left: -4rem;
  }

  .lv-audiences { grid-template-columns: 1fr 1fr; }

  .about-fluid {
    grid-template-columns: 220px 1fr 340px;
  }

  .about-rail { padding: 3rem 1.5rem; }

  .about-body { padding: 3rem 2.5rem; }

  .river-step {
    grid-template-columns: 120px 1fr 1fr;
    gap: 2rem;
  }

  .river-step:nth-child(even) .river-num { order: 3; text-align: right; }
  .river-step:nth-child(even) .river-step-img { order: 1; }
  .river-step:nth-child(even) .river-step-text { order: 2; }

  .svc-strip {
    grid-template-columns: 1fr 1fr;
  }

  .svc-strip:nth-child(even) .svc-strip-media { order: 2; }
  .svc-strip:nth-child(even) .svc-strip-copy { order: 1; text-align: right; }
  .svc-strip:nth-child(even) .svc-strip-copy p { margin-left: auto; }

  .coupon-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
  }

  .coupon-card { max-width: none; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }

  .mobile-bar { display: none; }
}

@media (max-width: 899px) {
  .header-actions .btn-red { display: none; }
  .hero-offer-ribbon { flex-direction: column; text-align: center; }
  .review-slide:nth-child(2),
  .review-slide:nth-child(3) { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
