/* =========================================================
   Malmedal Plumbing - 2026 Landing Page Redesign
   Matches Roadrunner example: navy hero + quote card,
   rating + Google reviews, "What We Do", "Why Choose".
   Brand: red #e12128, navy #0e2a5e, gold #f6a623, font Oxygen
   ========================================================= */

:root {
  --mp-red: #e12128;
  --mp-red-dark: #b81a20;
  --mp-navy: #0e2a5e;
  --mp-navy-2: #0a2352;
  --mp-navy-3: #123a7a;
  --mp-ink: #1f2937;
  --mp-muted: #5b6472;
  --mp-line: #e4e7ec;
  --mp-bg-soft: #f4f6f9;
  --mp-gold: #f6a623;
}

/* ---------- HEADER (logo left | nav center | call right) ---------- */
.mp-header {
  background: var(--mp-navy);
  position: relative;
  z-index: 1100;
  overflow: visible;
}
.mp-header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  overflow: visible;
}
.mp-header__logo {
  justify-self: start;
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.mp-header__logo img {
  display: block;
  height: 46px;
  width: auto;
}

.mp-header__toggle {
  display: none;
  justify-self: end;
  grid-column: 3;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  cursor: pointer;
}
.mp-header__toggle i { font-size: 1.15rem; }

.mp-header__nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  justify-content: center;
}
.mp-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 4px;
}
.mp-header__menu > li { position: relative; }
.mp-header__menu > li > a,
.mp-header__menu > li > .mp-header__drop-toggle {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 13px;
  line-height: 1.2;
  white-space: nowrap;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.mp-header__menu > li > a:hover,
.mp-header__menu > li > .mp-header__drop-toggle:hover,
.mp-header__menu > li.active > a,
.mp-header__menu > li.active > .mp-header__drop-toggle,
.mp-header__menu > li.open > .mp-header__drop-toggle {
  color: #ff6b6f;
  text-decoration: none;
}
.mp-header__menu .fa-caret-down { margin-left: 4px; font-size: 0.75rem; }

.mp-header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--mp-line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(10, 16, 40, 0.18);
  padding: 8px 0;
  z-index: 1200;
}
/* Desktop: hover/focus works even if redesign JS fails to load */
@media (min-width: 901px) {
  .mp-header__menu > li.mp-header__drop:hover > .mp-header__dropdown,
  .mp-header__menu > li.mp-header__drop:focus-within > .mp-header__dropdown {
    display: block;
  }
}
.mp-header__menu > li.open > .mp-header__dropdown { display: block; }
.mp-header__dropdown a {
  display: block;
  padding: 10px 16px;
  color: var(--mp-ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.mp-header__dropdown a:hover {
  background: var(--mp-bg-soft);
  color: var(--mp-red);
  text-decoration: none;
}

.mp-header__call {
  grid-column: 3;
  justify-self: end;
}

/* ---------- HEADER CALL-NOW BUTTON ---------- */
.mp-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mp-red);
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 6px;
  line-height: 1.1;
  transition: background 0.2s ease;
}
.mp-nav-call:hover { background: var(--mp-red-dark); color: #fff !important; text-decoration: none; }
.mp-nav-call i {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.mp-nav-call small { display: block; font-size: 0.62rem; font-weight: 600; opacity: 0.92; text-transform: uppercase; letter-spacing: 0.06em; }
.mp-nav-call strong { display: block; font-size: 0.98rem; }

/* ---------- SHARED ---------- */
.mp-hero .mp-eyebrow {
  display: block;
  color: var(--mp-red);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mp-eyebrow {
  display: block;
  color: var(--mp-red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mp-eyebrow--center { text-align: center; }

/* ---------- HERO (1/2 by 1/2) ---------- */
.mp-hero {
  position: relative;
  background: linear-gradient(105deg, var(--mp-navy-2) 0%, var(--mp-navy) 52%, rgba(10, 35, 82, 0.88) 78%, rgba(10, 35, 82, 0.72) 100%),
              var(--mp-hero-image, none);
  background-size: cover;
  background-position: center right;
  color: #fff;
  overflow: hidden;
}
.mp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 64px 28px;
}
.mp-hero__col { flex: 1 1 46%; min-width: 320px; box-sizing: border-box; }
.mp-hero__col--left { flex: 1 1 54%; }
.mp-hero__col--right { flex: 1 1 38%; max-width: 440px; }

/* Guard against site.min.css / theme heading overrides */
body.content .mp-hero__col--left h1,
.mp-hero__col--left h1 {
  font-size: 3.6rem;
  line-height: 1.08;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 18px;
  text-align: left;
  text-transform: none;
  letter-spacing: -0.01em;
}
.mp-hero__lead {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff !important;
  margin: 0 0 12px;
  text-align: left;
}
.mp-hero__desc {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff !important;
  margin: 0 0 28px;
  max-width: 34em;
  text-align: left;
}

/* Hero call button (light on navy) */
.mp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.mp-hero__call {
  background: #fff;
  border: 2px solid #fff;
  color: var(--mp-navy);
  padding: 16px 34px 16px 18px;
  border-radius: 8px;
  line-height: 1.1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.mp-hero__call:hover { background: #f5f5f5; border-color: #f5f5f5; color: var(--mp-navy); text-decoration: none; }
.mp-hero__call i {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--mp-red); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.2rem;
  flex-shrink: 0;
}
.mp-hero__call small {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mp-navy);
  opacity: 1;
}
.mp-hero__call strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--mp-navy);
  letter-spacing: 0.01em;
}

/* Hero trust row */
.mp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 34px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.mp-hero__trust-item { display: flex; align-items: flex-start; gap: 10px; }
.mp-hero__trust-item i { color: var(--mp-red); font-size: 1.15rem; margin-top: 2px; }
.mp-hero__trust-item strong { display: block; font-size: 0.92rem; color: #fff; font-weight: 700; }
.mp-hero__trust-item span { display: block; font-size: 0.82rem; color: #b9c2d6; }

/* ---------- QUOTE CARD (right) ---------- */
.mp-quote {
  background: #fff;
  color: var(--mp-ink);
  border-radius: 10px;
  padding: 30px 30px 24px;
  box-shadow: 0 24px 60px rgba(4, 12, 40, 0.45);
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}
.mp-quote__title { font-size: 1.7rem; font-weight: 700; color: var(--mp-navy); text-align: center; margin: 0 0 4px; }
.mp-quote__sub { font-size: 0.92rem; color: var(--mp-muted); text-align: center; margin: 0 0 22px; }
.mp-quote .form-group { margin-bottom: 15px; }
.mp-quote label {
  display: block; font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: #6b7280; margin-bottom: 6px;
}
.mp-quote label .opt { color: #9aa2b1; font-weight: 500; }
.mp-quote input[type="text"], .mp-quote input[type="email"], .mp-quote input[type="tel"],
.mp-quote select, .mp-quote textarea {
  width: 100%; box-sizing: border-box; padding: 12px 14px;
  border: 1px solid #d6dbe3; border-radius: 6px; font-size: 1rem; font-family: inherit; background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mp-quote textarea { min-height: 92px; resize: vertical; }
.mp-quote input:focus, .mp-quote select:focus, .mp-quote textarea:focus {
  outline: none; border-color: var(--mp-navy); box-shadow: 0 0 0 3px rgba(14, 42, 94, 0.12);
}
.mp-quote__submit {
  width: 100%; background: var(--mp-red); color: #fff; border: none; border-radius: 6px;
  padding: 15px; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  cursor: pointer; transition: background 0.2s ease; margin-top: 4px;
}
.mp-quote__submit:hover:not(:disabled) { background: var(--mp-red-dark); }
.mp-quote__submit:disabled { background: #c7ccd6; cursor: not-allowed; }
.mp-quote__note { font-size: 0.78rem; color: #9aa2b1; text-align: center; margin: 12px 0 0; }
.mp-quote__note i { margin-right: 5px; }
.mp-quote .g-recaptcha { margin: 12px 0 4px; }

/* ---------- SECTION HELPERS ---------- */
.mp-section { max-width: 1140px; margin: 0 auto; padding: 62px 24px; }
.mp-section--narrow { max-width: 960px; }
.mp-section h2 { color: var(--mp-navy); }
.mp-section-title { text-align: center; margin-bottom: 40px; }
.mp-section-title h2 { font-size: 2.1rem; margin-bottom: 10px; color: var(--mp-navy); }
.mp-section-title p { color: var(--mp-muted); max-width: 46em; margin: 0 auto; }

/* ---------- REVIEWS / RATING ---------- */
.mp-reviews { background: #fff; }
.mp-rating { text-align: center; margin-bottom: 34px; }
.mp-rating__score { font-size: 3rem; font-weight: 700; color: var(--mp-ink); line-height: 1; }
.mp-rating__stars { color: var(--mp-gold); font-size: 1.8rem; vertical-align: middle; margin-left: 8px; }
.mp-rating__count { display: block; margin-top: 8px; color: var(--mp-navy); font-weight: 700; }
.mp-rating__count .fa-google { margin-right: 6px; }

.mp-review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.mp-review-card {
  background: #fff; border: 1px solid var(--mp-line); border-radius: 10px; padding: 24px;
  box-shadow: 0 6px 18px rgba(20, 24, 60, 0.05); display: flex; flex-direction: column;
}
.mp-review-card__g { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mp-review-card__g .g-logo { font-size: 1.4rem; font-weight: 700; }
.g-logo span:nth-child(1){color:#4285F4}
.g-logo span:nth-child(2){color:#EA4335}
.g-logo span:nth-child(3){color:#FBBC05}
.g-logo span:nth-child(4){color:#4285F4}
.g-logo span:nth-child(5){color:#34A853}
.g-logo span:nth-child(6){color:#EA4335}
.mp-review-card__stars { color: var(--mp-gold); font-size: 1rem; }
.mp-review-card__text { color: #4b5563; font-size: 0.96rem; line-height: 1.6; margin: 0 0 14px; flex: 1; font-style: italic; }
.mp-review-card__name { font-weight: 700; color: var(--mp-ink); margin: 0; font-size: 0.92rem; }

/* ---------- TRUST BADGES STRIP (reference banner style) ---------- */
.mp-trust-strip {
  background: #a8c8e1;
  border-top: 1px solid #8eb5d0;
  border-bottom: 1px solid #8eb5d0;
  padding: 28px 18px;
}
.mp-trust-strip__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 22px 28px;
}
.mp-trust-badge { flex: 0 1 auto; }

/* BBB-style licensed badge */
.mp-trust-badge__bbb {
  display: flex;
  align-items: stretch;
  min-height: 74px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20, 40, 70, 0.18);
}
.mp-trust-badge__bbb-icon {
  width: 74px;
  background: #0b4f8a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.mp-trust-badge__bbb-text {
  background: linear-gradient(180deg, #1a6cb5 0%, #0f5a9c 100%);
  color: #fff;
  padding: 10px 16px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 132px;
  line-height: 1.05;
}
.mp-trust-badge__bbb-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.mp-trust-badge__bbb-text span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.mp-trust-badge__bbb-text small {
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.92;
}

/* Circular seal badges */
.mp-trust-badge__seal {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 4px 14px rgba(20, 40, 70, 0.15);
  position: relative;
}
.mp-trust-badge__seal::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.35);
  pointer-events: none;
}
.mp-trust-badge__seal-top {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 2px;
}
.mp-trust-badge__seal-main {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.mp-trust-badge__seal--green {
  background: radial-gradient(circle at 30% 25%, #5cb85c 0%, #2e8b3e 55%, #1f6b2f 100%);
  border: 4px solid #1f6b2f;
  color: #fff;
}
.mp-trust-badge__seal--navy {
  background: radial-gradient(circle at 30% 25%, #2f4f7a 0%, #1a2f52 60%, #0f1f3d 100%);
  border: 4px solid #0f1f3d;
  color: #fff;
}
.mp-trust-badge__seal--silver {
  background: radial-gradient(circle at 30% 25%, #f0f2f5 0%, #c8cdd4 55%, #9aa3ad 100%);
  border: 4px solid #7a8490;
  color: #1f2937;
}

/* Google badge (large G + stars) */
.mp-trust-badge__google {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}
.mp-trust-badge__g {
  display: block;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
  font-family: "Product Sans", Arial, sans-serif;
}
.mp-trust-badge__g span {
  background: linear-gradient(90deg, #4285F4 0%, #EA4335 35%, #FBBC05 65%, #34A853 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mp-trust-badge__stars {
  color: #f6a623;
  font-size: 1.35rem;
  letter-spacing: 2px;
  line-height: 1;
}

/* ---------- WHAT WE DO ---------- */
.mp-dothis { background: var(--mp-bg-soft); }
.mp-dothis .mp-eyebrow {
  font-size: 1.7rem;
}
.mp-dothis .mp-section-title h2 {
  font-size: 2.55rem;
  font-weight: 700;
}
.mp-dothis__card {
  background: #fff; border: 1px solid var(--mp-line); border-radius: 12px;
  box-shadow: 0 10px 30px rgba(20, 24, 60, 0.06); padding: 36px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 48px;
}
.mp-dothis__item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid #eef1f5; }
.mp-dothis__icon { color: var(--mp-red); font-size: 1.7rem; width: 34px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.mp-dothis__item h3 { font-size: 1.45rem; color: var(--mp-navy); margin: 0 0 4px; font-weight: 700; }
.mp-dothis__item p { font-size: 0.92rem; color: var(--mp-muted); margin: 0; line-height: 1.5; }

/* CTA split (Why Choose style) */
.mp-cta-split {
  background: #fff;
  margin-top: 48px;
  padding: 8px 0 4px;
}
.mp-cta-split__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px 40px;
  align-items: center;
}
.mp-cta-split__intro h2 {
  font-size: 2.15rem;
  color: var(--mp-navy);
  margin: 0 0 16px;
  line-height: 1.15;
}
.mp-cta-split__intro p {
  color: var(--mp-muted);
  line-height: 1.65;
  margin: 0 0 26px;
  max-width: 26em;
}
.mp-cta-split__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* Big red pill CTA */
.mp-btn--cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mp-red); color: #fff; text-decoration: none;
  padding: 15px 34px; border-radius: 6px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; font-size: 1rem; border: 2px solid var(--mp-red);
}
.mp-btn--cta:hover { background: var(--mp-red-dark); border-color: var(--mp-red-dark); color: #fff; text-decoration: none; }
.mp-btn--cta i { transition: transform 0.2s ease; }
.mp-btn--cta:hover i { transform: translateX(4px); }

/* Feature cards */
.mp-feature {
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 12px;
  padding: 28px 18px 24px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(20, 24, 60, 0.06);
  height: 100%;
}
.mp-feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(14, 42, 94, 0.07);
  color: var(--mp-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  position: relative;
}
.mp-feature__icon--clock i { color: var(--mp-navy); }
.mp-feature__icon--clock::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  background: var(--mp-red);
  border-radius: 50%;
  top: 22px; right: 20px;
}
.mp-feature__icon--shield { border: 2px solid rgba(225, 33, 40, 0.35); }
.mp-feature__icon--team i { font-size: 1.45rem; }
.mp-feature h3 {
  font-size: 1.02rem;
  color: var(--mp-navy);
  margin: 0 0 10px;
  font-weight: 700;
}
.mp-feature p {
  font-size: 0.86rem;
  color: var(--mp-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---------- STICKY MOBILE CALL BAR ---------- */
.mp-callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050; background: var(--mp-red); box-shadow: 0 -4px 18px rgba(0,0,0,0.2); }
.mp-callbar a { display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 700; font-size: 1.1rem; padding: 15px; text-transform: uppercase; letter-spacing: 0.03em; }

/* thank-you state */
.mp-quote__thanks { text-align: center; padding: 20px 0; }

/* ---------- SERVICE PHOTO GRID ---------- */
.mp-services { background: #fff; }
.mp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}
.mp-service {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--mp-line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(20, 24, 60, 0.06);
}
.mp-service__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mp-navy);
}
.mp-service__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mp-service__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 22px 26px;
}
.mp-service__body h3 {
  font-size: 1.25rem;
  color: var(--mp-navy);
  margin: 0 0 14px;
  font-weight: 700;
  line-height: 1.25;
}
.mp-service__body ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}
.mp-service__body li {
  position: relative;
  padding: 7px 0 7px 18px;
  color: var(--mp-muted);
  font-size: 0.92rem;
  line-height: 1.45;
  border-bottom: 1px solid #eef1f5;
}
.mp-service__body li:last-child { border-bottom: none; }
.mp-service__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mp-red);
}
.mp-btn--cta-sm {
  padding: 12px 18px;
  font-size: 0.82rem;
  width: 100%;
  justify-content: center;
  text-align: center;
}
.mp-dothis__item a {
  color: var(--mp-red);
  font-weight: 700;
  text-decoration: none;
}
.mp-dothis__item a:hover { text-decoration: underline; }

/* Tips / difference columns */
.mp-tips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--mp-line);
  border-radius: 12px;
  padding: 36px 40px;
  box-shadow: 0 10px 30px rgba(20, 24, 60, 0.06);
}
.mp-tips__col h3 {
  font-size: 1.35rem;
  color: var(--mp-navy);
  margin: 0 0 12px;
  font-weight: 700;
}
.mp-tips__col p {
  color: var(--mp-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 14px;
}
.mp-tips__col ul {
  margin: 0;
  padding-left: 1.15em;
  color: var(--mp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}
.mp-tips__col li { margin-bottom: 10px; }
.mp-tips__col li strong { color: var(--mp-ink); }

/* Photo + copy splits (construction / remodel) */
.mp-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px 40px;
  align-items: center;
  margin: 0 0 48px;
}
.mp-split--flip { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
.mp-split--flip .mp-split__media { order: 2; }
.mp-split--flip .mp-split__copy { order: 1; }
.mp-split__media {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 24, 60, 0.12);
  background: var(--mp-navy);
}
.mp-split__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.mp-split__copy h2,
.mp-split__copy h3 {
  color: var(--mp-navy);
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.2;
}
.mp-split__copy p {
  color: var(--mp-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 14px;
}
.mp-split__copy ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.mp-split__copy li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: var(--mp-muted);
  font-size: 0.94rem;
  line-height: 1.5;
  border-bottom: 1px solid #eef1f5;
}
.mp-split__copy li:last-child { border-bottom: none; }
.mp-split__copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mp-red);
}
.mp-split__copy li strong { color: var(--mp-ink); }
.mp-split__copy a:not(.mp-btn--cta) {
  color: var(--mp-red);
  font-weight: 700;
  text-decoration: none;
}
.mp-split__copy a:not(.mp-btn--cta):hover { text-decoration: underline; }

.mp-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.mp-areas a,
.mp-areas span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--mp-line);
  color: var(--mp-navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}
.mp-areas a:hover {
  border-color: var(--mp-red);
  color: var(--mp-red);
  text-decoration: none;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .mp-cta-split__grid { grid-template-columns: 1fr; gap: 32px; }
  .mp-cta-split__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mp-service-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .mp-tips { grid-template-columns: 1fr; padding: 28px 24px; }
  .mp-split,
  .mp-split--flip {
    grid-template-columns: 1fr;
  }
  .mp-split--flip .mp-split__media,
  .mp-split--flip .mp-split__copy { order: initial; }
}
@media (max-width: 900px) {
  .mp-hero__inner { padding: 44px 24px; }
  .mp-hero__col { flex: 1 1 100%; }
  .mp-hero__col--left h1,
  body.content .mp-hero__col--left h1 { font-size: 3rem; }
  .mp-hero .mp-eyebrow { font-size: 1.35rem; }
  .mp-hero__call strong { font-size: 1.65rem; }
  .mp-quote { max-width: 100%; margin: 0 auto; }
  .mp-dothis__card { grid-template-columns: 1fr; padding: 26px; }
  .mp-dothis .mp-eyebrow { font-size: 1.35rem; }
  .mp-dothis .mp-section-title h2 { font-size: 2rem; }
  .mp-dothis__item h3 { font-size: 1.25rem; }

  .mp-trust-strip { padding: 22px 14px; }
  .mp-trust-strip__inner { gap: 18px 16px; justify-content: center; }
  .mp-trust-badge__bbb { min-height: 64px; }
  .mp-trust-badge__bbb-icon { width: 62px; font-size: 1.6rem; }
  .mp-trust-badge__seal { width: 96px; height: 96px; }
  .mp-trust-badge__g { font-size: 2.8rem; }

  .mp-header__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mp-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 56px;
    padding: 6px 16px;
  }
  .mp-header__logo img { height: 40px; }
  .mp-header__call { display: none; }
  .mp-header__nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    padding: 8px 0 14px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .mp-header__nav.is-open { display: block; }
  .mp-header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .mp-header__menu > li > a,
  .mp-header__menu > li > .mp-header__drop-toggle {
    padding: 12px 4px;
    font-size: 0.95rem;
  }
  .mp-header__dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    margin: 0 0 8px;
  }
  .mp-header__dropdown a { color: #fff; }
  .mp-header__dropdown a:hover { background: rgba(255,255,255,0.08); color: #ff6b6f; }
}
@media (max-width: 600px) {
  .mp-hero__col--left h1,
  body.content .mp-hero__col--left h1 { font-size: 2.35rem; }
  .mp-hero .mp-eyebrow { font-size: 1.15rem; }
  .mp-hero__call strong { font-size: 1.45rem; }
  .mp-hero__call small { font-size: 0.95rem; }
  .mp-hero__trust { gap: 18px; }
  .mp-cta-split__cards { grid-template-columns: 1fr; }
  .mp-dothis .mp-eyebrow { font-size: 1.15rem; }
  .mp-dothis .mp-section-title h2 { font-size: 1.65rem; }
  .mp-dothis__item h3 { font-size: 1.15rem; }
  .mp-section { padding: 44px 18px; }
  .mp-callbar { display: block; }
  body { padding-bottom: 60px; }
}
