/* M. Ménard Denturologistes — accueil 3a */
:root {
  --mm-navy: #0d3b57;
  --mm-blue: #2b8cba;
  --mm-blue-ink: #17607f;
  --mm-gray: #f3f5f7;
  --mm-text: #16232b;
  --mm-muted: #5c7280;
  --mm-body: #4a5c67;
  --mm-line: #e6eaed;
  --mm-line-soft: #eceff1;
  --mm-nav: #3a4a54;
  --mm-radius: 6px;
  --mm-card: 12px;
}

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

body.mm-accueil {
  margin: 0;
  background: #fff;
  color: var(--mm-text);
  font-family: "Source Sans 3", "Source Sans Pro", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.mm-accueil.mm-nav-open { overflow: hidden; }

.mm-page {
  font-family: Manrope, "Source Sans 3", sans-serif;
  color: var(--mm-text);
  background: #fff;
}

.mm-page a { color: var(--mm-blue-ink); text-decoration: none; }
.mm-page a:hover { color: var(--mm-navy); }
.mm-page img { max-width: 100%; height: auto; }

.mm-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--mm-navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 10000;
}
.mm-skip:focus { left: 8px; top: 8px; }

/* Header */
.mm-header {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 40px;
  background: #fff;
  border-bottom: 1px solid var(--mm-line-soft);
}

.mm-logo {
  flex: none;
  display: flex;
  align-items: center;
  line-height: 0;
}
.mm-logo img {
  display: block;
  height: 46px;
  width: auto;
}
.mm-logo:hover { opacity: .88; }

.mm-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--mm-nav);
}

.mm-nav-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--mm-radius);
  color: var(--mm-nav);
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.mm-nav-link:hover,
.mm-has-mega:hover > .mm-nav-link,
.mm-has-mega:focus-within > .mm-nav-link {
  background: #eef2f5;
  color: var(--mm-navy);
}

.mm-has-mega { position: static; }

.mm-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e3e8eb;
  box-shadow: 0 18px 34px rgba(13, 59, 87, .16);
  padding: 30px 40px;
  display: none;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  z-index: 30;
}
.mm-has-mega.is-open .mm-mega,
.mm-has-mega:hover .mm-mega,
.mm-has-mega:focus-within .mm-mega { display: grid; }
.mm-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 18px;
}
.mm-mega-toggle { font: inherit; }

.mm-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.mm-mega-item { text-align: center; }
.mm-mega-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 250 / 175;
  object-fit: contain;
  object-position: center;
  background: #eaf0f4;
  border-radius: 8px;
  display: block;
  margin-bottom: 12px;
}
.mm-mega-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mm-navy);
  margin: 0 0 8px;
}
.mm-mega-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--mm-blue-ink);
}
.mm-mega-links a {
  color: var(--mm-blue-ink);
  border-bottom: 1px solid #8ab6cb;
}
.mm-mega-links a:hover { color: var(--mm-navy); }

.mm-mega-side {
  border-left: 1px solid var(--mm-line-soft);
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
}
.mm-mega-side a { color: var(--mm-navy); }
.mm-mega-side a.mm-mega-cta { color: var(--mm-blue-ink); }

.mm-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: none;
}
.mm-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--mm-nav);
}
.mm-phone:hover { color: var(--mm-navy); }
.mm-phone-icon {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--mm-navy);
  border-radius: 50%;
}
.mm-phone-icon:hover { color: var(--mm-blue-ink); background: #eef2f5; }
.mm-langs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #b6c1c8;
  letter-spacing: .04em;
}
.mm-lang {
  color: #7d8c96;
  padding: 6px 4px;
}
.mm-lang.is-current {
  color: var(--mm-navy);
}
.mm-lang:hover { color: var(--mm-navy); }
.mm-drawer-langs {
  display: flex;
  gap: 16px;
  padding: 8px 0;
  font-weight: 800;
}
.mm-drawer-langs a { color: #7d8c96; }
.mm-drawer-langs a.is-current { color: var(--mm-navy); }

.mm-btn {
  display: inline-block;
  font-weight: 700;
  border-radius: var(--mm-radius);
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}
.mm-btn--primary {
  background: var(--mm-blue);
  color: #fff !important;
}
.mm-btn--primary:hover { background: #2479a1; color: #fff !important; }
.mm-btn--navy {
  background: var(--mm-navy);
  color: #fff !important;
}
.mm-btn--navy:hover { background: #0a2e44; color: #fff !important; }
.mm-btn--ghost {
  background: #fff;
  color: var(--mm-navy) !important;
  border-color: #d7dee3;
}
.mm-btn--ghost:hover { background: var(--mm-gray); color: var(--mm-navy) !important; }
.mm-btn--glass {
  background: rgba(255, 255, 255, .92);
  color: var(--mm-navy) !important;
}
.mm-btn--header { font-size: 15px; padding: 11px 20px; }
.mm-btn--lg { font-size: 17px; padding: 16px 30px; }
.mm-btn--md { font-size: 16px; padding: 15px 28px; }
.mm-btn--sm { font-size: 15px; padding: 12px 18px; }
.mm-btn--block { display: block; width: 100%; }

.mm-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}
.mm-burger span,
.mm-burger span::before,
.mm-burger span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mm-navy);
  position: relative;
  transition: transform .2s ease;
}
.mm-burger span::before,
.mm-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.mm-burger span::before { top: -7px; }
.mm-burger span::after { top: 7px; }
.mm-burger.is-open span { background: transparent; }
.mm-burger.is-open span::before { top: 0; transform: rotate(45deg); }
.mm-burger.is-open span::after { top: 0; transform: rotate(-45deg); }

.mm-drawer { display: none; }

/* Hero */
.mm-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}
.mm-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mm-hero img.mm-hero-mob { display: none; }
.mm-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(255,255,255,.55) 46%, rgba(13,59,87,.42) 100%);
}
.mm-hero-inner {
  position: relative;
  padding: 64px 200px 80px;
  text-align: center;
}
@media (min-width: 981px) {
  .mm-hero { min-height: 440px; }
  .mm-hero-inner {
    min-height: 0;
    display: block;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .mm-hero-ctas { margin-top: 0; }
  .mm-hero h1 { font-size: 40px; margin-bottom: 12px; }
  .mm-hero p { font-size: 18px; margin-bottom: 20px; }
}
.mm-hero h1 {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.mm-hero p {
  font-size: 21px;
  line-height: 1.5;
  color: #314652;
  margin: 0 auto 30px;
  max-width: 60ch;
}
.mm-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Comfort / stats */
.mm-section { padding: 56px 40px 0; }
.mm-section--tight { padding: 28px 40px 0; }
.mm-section--cards { padding: 22px 40px 0; }
.mm-section--team { padding: 64px 40px 0; }
.mm-section--cta { padding: 64px 40px 72px; }

.mm-comfort {
  background: var(--mm-gray);
  border-radius: var(--mm-card);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mm-comfort h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 18px;
  line-height: 1.15;
}
.mm-comfort h2 em {
  font-style: normal;
  font-weight: 500;
  color: #5c7280;
}
.mm-comfort > div > p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mm-body);
  margin: 0 0 32px;
  max-width: 52ch;
}
.mm-stats {
  display: flex;
  gap: 44px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.mm-stats strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--mm-navy);
}
.mm-stats span {
  font-size: 15px;
  color: #6a7c87;
}
.mm-comfort-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.mm-comfort-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
}

/* Service tiles */
.mm-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mm-tile {
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.mm-tile-media { position: relative; background: #eaf0f4; }
.mm-tile-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 250 / 175;
  object-fit: contain;
  object-position: center;
  display: block;
}
.mm-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(13, 59, 87, .82);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 5px;
}
.mm-tile-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mm-tile-body h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 8px;
}
.mm-tile-body p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--mm-muted);
  margin: 0 0 22px;
  flex: 1;
}
.mm-tile-btns { display: flex; flex-direction: column; gap: 9px; }

/* Visit + insurance */
.mm-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mm-pair-card {
  background: var(--mm-gray);
  border-radius: var(--mm-card);
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.mm-pair-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 10px;
}
.mm-pair-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-body);
  margin: 0 0 18px;
}
.mm-pair-card .mm-avatar {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  background: #eaf0f4;
}
.mm-pair-card .mm-thumb {
  width: 150px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

/* Reviews strip (true rating, no fake quotes) */
.mm-reviews h2,
.mm-team h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 10px;
}
.mm-reviews > p,
.mm-team > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--mm-muted);
  margin: 0 0 30px;
  max-width: 60ch;
}
.mm-rating {
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-card);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mm-stars {
  color: var(--mm-blue-ink);
  font-size: 16px;
  letter-spacing: .14em;
  margin-bottom: 8px;
}
.mm-rating-score {
  font-size: 28px;
  font-weight: 800;
  color: var(--mm-navy);
}
.mm-rating-score span {
  font-size: 17px;
  font-weight: 600;
  color: var(--mm-muted);
}
.mm-rating-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Team */
.mm-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mm-person {
  border: 1px solid var(--mm-line);
  border-radius: var(--mm-card);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.mm-person img {
  width: 120px;
  height: 120px;
  flex: none;
  object-fit: cover;
  border-radius: 50%;
  background: #eaf0f4;
}
.mm-person h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 5px;
}
.mm-person p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--mm-muted);
  margin: 0;
}

/* Bottom CTA */
.mm-cta {
  background: var(--mm-navy);
  border-radius: var(--mm-card);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  color: #fff;
}
.mm-cta h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
}
.mm-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #bcd5e3;
  margin: 0;
}
.mm-cta-side { text-align: right; }
.mm-cta-phone {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 14px;
}
.mm-cta-phone:hover { color: #d6eaf4 !important; }

/* Footer */
.mm-footer {
  border-top: 1px solid var(--mm-line-soft);
  padding: 34px 40px;
  text-align: center;
  color: #6a7c87;
  font-size: 15px;
}
.mm-footer-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--mm-nav);
}
.mm-footer-nav a { color: var(--mm-nav); }
.mm-footer-nav a:hover { color: var(--mm-navy); }
.mm-footer-cities {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px 0 14px;
  font-size: 14px;
}
.mm-footer-cities a { color: var(--mm-blue-ink); }

/* Mobile drawer */
@media (max-width: 980px) {
  .mm-header { padding: 12px 18px; }
  .mm-logo img { height: 36px; }
  .mm-nav, .mm-header-right .mm-phone, .mm-header-right .mm-btn { display: none; }
  .mm-burger { display: inline-flex; align-items: center; justify-content: center; }
  .mm-phone-icon { display: inline-flex; }
  .mm-header-right { gap: 4px; }

  .mm-drawer {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(13, 59, 87, .42);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }
  .mm-drawer.is-open { opacity: 1; visibility: visible; }
  .mm-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(400px, 88vw);
    height: 100%;
    background: #fff;
    padding: 72px 22px 32px;
    overflow: auto;
    box-shadow: -12px 0 30px rgba(13, 59, 87, .18);
    transform: translateX(12px);
  }
  .mm-drawer.is-open .mm-drawer-panel { transform: none; }
  .mm-drawer-panel a,
  .mm-drawer-mega-toggle {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 4px;
    font-size: 17px;
    font-weight: 700;
    color: var(--mm-navy);
    background: none;
    border: 0;
    border-bottom: 1px solid var(--mm-line-soft);
    font-family: inherit;
    cursor: pointer;
  }
  .mm-drawer-sub { display: none; padding: 6px 0 10px 10px; }
  .mm-drawer-mega.is-open .mm-drawer-sub { display: block; }
  .mm-drawer-sub a {
    font-size: 15px;
    font-weight: 600;
    color: var(--mm-blue-ink);
    border-bottom: 0;
    padding: 8px 4px;
  }
  .mm-drawer-cta {
    margin-top: 18px;
    text-align: center !important;
    border-bottom: 0 !important;
  }

  .mm-hero { min-height: 0; }
  .mm-hero img.mm-hero-desk { display: none; }
  .mm-hero img.mm-hero-mob {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .mm-hero-shade { display: none; }
  .mm-hero-inner {
    position: relative;
    padding: 22px 20px 36px;
    background: #fff;
  }
  .mm-hero h1 { font-size: 28px; }
  .mm-hero p { font-size: 16px; }
  .mm-hero-ctas { flex-direction: column; }
  .mm-hero-ctas .mm-btn { width: 100%; }
  .mm-tile-media { display: flex; justify-content: center; }
  .mm-tile-media img {
    width: auto;
    max-width: 220px;
    max-height: 154px;
    margin: 18px auto 0;
  }

  .mm-section,
  .mm-section--tight,
  .mm-section--cards,
  .mm-section--team,
  .mm-section--cta { padding-left: 18px; padding-right: 18px; }
  .mm-section { padding-top: 28px; }
  .mm-section--team { padding-top: 40px; }
  .mm-section--cta { padding: 40px 18px 48px; }

  .mm-comfort {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 22px;
  }
  .mm-comfort h2 { font-size: 28px; }
  .mm-comfort-photo { height: 220px; }
  .mm-stats { gap: 20px 28px; }
  .mm-stats strong { font-size: 26px; }
  .mm-comfort-ctas .mm-btn { width: 100%; }

  .mm-tiles,
  .mm-pair,
  .mm-team-grid { grid-template-columns: 1fr; }

  .mm-pair-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
  .mm-pair-card .mm-avatar,
  .mm-pair-card .mm-thumb { display: none; }

  .mm-reviews h2,
  .mm-team h2,
  .mm-cta h2 { font-size: 26px; }
  .mm-rating { padding: 24px; }
  .mm-rating-score { font-size: 22px; }
  .mm-rating-ctas .mm-btn { width: 100%; }

  .mm-person { flex-direction: column; text-align: center; padding: 24px; }
  .mm-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 22px;
  }
  .mm-cta-side { text-align: left; }
  .mm-cta-phone { font-size: 26px; }
  .mm-cta-side .mm-btn { display: block; width: 100%; }

  .mm-footer { padding: 28px 18px; }
  .mm-footer-nav { gap: 14px 20px; }
}

@media (min-width: 700px) and (max-width: 1100px) {
  .mm-tiles { grid-template-columns: 1fr 1fr; }
  .mm-hero-inner { padding-left: 48px; padding-right: 48px; }
  .mm-comfort { gap: 32px; padding: 36px; }
}

@media (min-width: 981px) and (max-width: 1200px) {
  .mm-header { padding-left: 24px; padding-right: 24px; }
  .mm-nav { gap: 4px; }
  .mm-header-right { gap: 12px; }
  .mm-mega { padding: 24px; grid-template-columns: 1fr 200px; }
  .mm-hero-inner { padding-left: 80px; padding-right: 80px; }
  .mm-hero h1 { font-size: 42px; }
}

/* Consultation form modal */
.mm-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow: auto;
}
.mm-modal.is-open { display: flex; }
.mm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(13, 59, 87, .55);
}
.mm-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px 28px;
  box-shadow: 0 18px 50px rgba(13, 59, 87, .28);
}
.mm-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #5c7280;
  cursor: pointer;
}
.mm-modal-panel h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 8px;
}
.mm-modal-panel .mm-modal-lead {
  color: var(--mm-body);
  margin: 0 0 20px;
  font-size: 16px;
}
.mm-modal .wpcf7-form p { margin: 0 0 14px; }
.mm-modal .wpcf7-form label { display: block; font-weight: 600; color: var(--mm-navy); margin-bottom: 6px; }
.mm-modal .wpcf7-form input[type=text],
.mm-modal .wpcf7-form input[type=email],
.mm-modal .wpcf7-form input[type=tel],
.mm-modal .wpcf7-form textarea {
  width: 100%;
  border: 1px solid var(--mm-line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}
.mm-modal .wpcf7-form input[type=submit],
.mm-modal .wpcf7-form button[type=submit] {
  background: var(--mm-blue);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  padding: 12px 22px;
  cursor: pointer;
}
body.mm-modal-open { overflow: hidden; }


/* Current nav */
.mm-nav-link.is-current {
  background: #eef2f5;
  color: var(--mm-navy);
}

/* Inner crumbs + product hero */
.mm-crumb {
  padding: 22px 40px 0;
  font-size: 15px;
  color: #6a7c87;
  font-weight: 600;
}
.mm-crumb a { color: #6a7c87; }
.mm-crumb span { color: #b6c1c8; margin: 0 6px; }
.mm-crumb strong { color: var(--mm-navy); font-weight: 700; }

.mm-product-hero {
  padding: 26px 40px 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}
.mm-chip {
  display: inline-block;
  background: #eef2f5;
  color: var(--mm-navy);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 5px;
  margin-bottom: 16px;
}
.mm-product-hero h1 {
  font-size: 44px;
  font-weight: 800;
  color: var(--mm-navy);
  line-height: 1.12;
  margin: 0 0 16px;
}
.mm-lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--mm-body);
  margin: 0 0 26px;
  max-width: 62ch;
}
.mm-product-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.mm-product-photo {
  border-radius: 12px;
  overflow: hidden;
  background: #eaf0f4;
}
.mm-product-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 250 / 175;
  object-fit: contain;
  object-position: center;
  display: block;
}
.mm-know {
  background: var(--mm-gray);
  border-radius: 12px;
  padding: 24px;
  margin-top: 16px;
}
.mm-know-h {
  font-size: 16px;
  font-weight: 800;
  color: var(--mm-navy);
  margin-bottom: 8px;
}
.mm-know p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-body);
  margin: 0;
}

.mm-prose h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 16px;
}
.mm-prose p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--mm-body);
  margin: 0 0 18px;
  max-width: 72ch;
}
.mm-prose ul {
  margin: 0 0 22px;
  padding: 0 0 0 22px;
  max-width: 72ch;
}
.mm-prose li {
  font-size: 17px;
  line-height: 1.6;
  color: #314652;
  margin: 0 0 8px;
}

.mm-related-h {
  font-size: 32px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 28px;
}
.mm-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mm-related-card {
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.mm-related-card img {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 112px;
  height: auto;
  margin: 18px auto 0;
  object-fit: contain;
  object-position: center;
}
.mm-related-card div { padding: 20px; }
.mm-related-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 12px;
}

/* About */
.mm-about-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
.mm-about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mm-about-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,59,87,.35) 0%, rgba(13,59,87,.88) 100%);
}
.mm-about-hero-inner {
  position: relative;
  padding: 80px 40px 44px;
  color: #fff;
  max-width: 90ch;
}
.mm-kicker {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #a8ccdd;
  margin-bottom: 14px;
}
.mm-kicker--muted { color: #5c7280; }
.mm-about-hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
.mm-about-hero p {
  font-size: 19px;
  line-height: 1.6;
  color: #dbe8ef;
  margin: 0;
}
.mm-about-block {
  padding: 56px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mm-about-block.is-flip { direction: rtl; }
.mm-about-block.is-flip > * { direction: ltr; }
.mm-about-block h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--mm-navy);
  line-height: 1.15;
  margin: 0 0 16px;
}
.mm-about-block p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--mm-body);
  margin: 0;
  max-width: 52ch;
}
.mm-about-block img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}
.mm-about-team {
  margin-top: 64px;
  background: var(--mm-gray);
  padding: 64px 40px;
}
.mm-about-team-head { text-align: center; margin-bottom: 38px; }
.mm-about-team-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 12px;
}
.mm-about-team-head p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--mm-muted);
  margin: 0 auto;
  max-width: 60ch;
}
.mm-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mm-about-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
}
.mm-about-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  background: #eaf0f4;
  margin-bottom: 20px;
}
.mm-about-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 5px;
}
.mm-about-role {
  font-size: 16px;
  font-weight: 700;
  color: var(--mm-blue-ink);
  margin-bottom: 14px;
}
.mm-about-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--mm-body);
  margin: 0;
}
.mm-about-visit {
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mm-about-visit h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 16px;
}
.mm-about-visit p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--mm-body);
  margin: 0 0 24px;
  max-width: 52ch;
}
.mm-hours-card {
  background: var(--mm-gray);
  border-radius: 12px;
  padding: 34px;
  font-size: 17px;
  line-height: 1.8;
  color: #314652;
}
.mm-hours-h {
  font-weight: 800;
  color: var(--mm-navy);
  margin-bottom: 10px;
  font-size: 20px;
}
.mm-hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
}
.mm-hours-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-body);
  margin: 0;
}

/* Contact */
.mm-contact-hero {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}
.mm-contact-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mm-contact-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,59,87,.9) 0%, rgba(13,59,87,.5) 100%);
}
.mm-contact-hero-inner {
  position: relative;
  padding: 60px 40px;
  color: #fff;
  max-width: 820px;
}
.mm-contact-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 10px;
  color: #fff;
}
.mm-contact-hero p {
  font-size: 19px;
  line-height: 1.55;
  color: #dbe8ef;
  margin: 0;
}
.mm-contact-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mm-phone-card {
  background: var(--mm-navy);
  color: #fff;
  border-radius: 12px;
  padding: 38px;
}
.mm-phone-xl {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 10px;
}
.mm-phone-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #bcd5e3;
  margin: 0 0 22px;
}
.mm-addr-card {
  background: var(--mm-gray);
  border-radius: 12px;
  padding: 38px;
}
.mm-addr-xl {
  font-size: 24px;
  font-weight: 800;
  color: var(--mm-navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.mm-addr-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mm-body);
  margin: 0 0 22px;
}
.mm-contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start;
}
.mm-inline-form {
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  padding: 38px;
}
.mm-inline-form h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 8px;
}
.mm-inline-form > p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--mm-muted);
  margin: 0 0 26px;
}
.mm-inline-form .wpcf7-form p { margin: 0 0 14px; }
.mm-inline-form .wpcf7-form label {
  display: block;
  font-weight: 600;
  color: var(--mm-navy);
  margin-bottom: 6px;
}
.mm-inline-form .wpcf7-form input[type=text],
.mm-inline-form .wpcf7-form input[type=email],
.mm-inline-form .wpcf7-form input[type=tel],
.mm-inline-form .wpcf7-form textarea,
.mm-inline-form .wpcf7-form select {
  width: 100%;
  border: 1px solid var(--mm-line);
  border-radius: 6px;
  padding: 10px 12px;
  font: inherit;
}
.mm-inline-form .wpcf7-form input[type=submit],
.mm-inline-form .wpcf7-form button[type=submit] {
  background: var(--mm-blue);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  padding: 12px 22px;
  cursor: pointer;
}
.mm-map {
  border: 1px solid var(--mm-line);
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}
.mm-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.mm-rating-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 16px 20px;
  border: 1px solid var(--mm-line);
  border-radius: 12px;
}
.mm-rating-mini .mm-rating-score {
  font-size: 22px;
  font-weight: 800;
  color: var(--mm-navy);
}
.mm-contact-grid .mm-hours-card { margin-top: 22px; }

@media (max-width: 980px) {
  .mm-crumb,
  .mm-product-hero,
  .mm-about-hero-inner,
  .mm-about-block,
  .mm-about-team,
  .mm-about-visit,
  .mm-contact-hero-inner { padding-left: 18px; padding-right: 18px; }

  .mm-product-hero,
  .mm-about-block,
  .mm-about-block.is-flip,
  .mm-about-visit,
  .mm-contact-pair,
  .mm-contact-grid,
  .mm-related,
  .mm-about-grid { grid-template-columns: 1fr; direction: ltr; }

  .mm-product-hero h1 { font-size: 32px; }
  .mm-lead { font-size: 18px; }
  .mm-product-ctas .mm-btn { width: 100%; }
  .mm-about-hero { min-height: 0; }
  .mm-about-hero h1 { font-size: 32px; }
  .mm-about-hero-inner { padding-top: 48px; padding-bottom: 32px; }
  .mm-about-block img { height: 200px; }
  .mm-about-team { padding-top: 40px; padding-bottom: 40px; }
  .mm-about-visit { padding: 40px 18px; }
  .mm-contact-hero-inner { padding: 40px 18px; }
  .mm-contact-hero h1 { font-size: 28px; }
  .mm-phone-xl { font-size: 28px; }
  .mm-inline-form { padding: 24px; }
  .mm-map { height: 220px; }
}

/* Thank-you / Merci */
.mm-page-merci .mm-merci-hero {
  padding: 56px 40px 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 48px;
  align-items: start;
}
.mm-page-merci .mm-merci-hero h1 {
  font-size: 50px;
  font-weight: 800;
  color: var(--mm-navy);
  line-height: 1.12;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.mm-page-merci .mm-merci-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--mm-muted);
  margin: 0 0 28px;
  max-width: 48ch;
}
.mm-page-merci .mm-merci-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mm-page-merci .mm-merci-glance {
  background: var(--mm-gray);
  border-radius: 12px;
  padding: 32px;
}
.mm-page-merci .mm-merci-glance h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 20px;
}
.mm-page-merci .mm-merci-glance-list {
  margin: 0;
  padding: 0;
}
.mm-page-merci .mm-merci-glance-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--mm-line);
}
.mm-page-merci .mm-merci-glance-row:last-of-type {
  border-bottom: 0;
}
.mm-page-merci .mm-merci-glance-row dt {
  font-size: 15px;
  color: var(--mm-muted);
  font-weight: 600;
}
.mm-page-merci .mm-merci-glance-row dd {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: var(--mm-navy);
  text-align: right;
}
.mm-page-merci .mm-merci-glance-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mm-muted);
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--mm-line);
}
.mm-page-merci .mm-merci-next {
  padding: 64px 40px 0;
}
.mm-page-merci .mm-merci-next > h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 28px;
}
.mm-page-merci .mm-merci-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mm-page-merci .mm-merci-step {
  background: var(--mm-gray);
  border-radius: 12px;
  padding: 30px;
}
.mm-page-merci .mm-merci-step .mm-kicker {
  color: var(--mm-blue);
  margin-bottom: 12px;
}
.mm-page-merci .mm-merci-step h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 10px;
  line-height: 1.25;
}
.mm-page-merci .mm-merci-step p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-body);
  margin: 0;
}
.mm-page-merci .mm-merci-extra {
  padding: 56px 40px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.mm-page-merci .mm-merci-extra-card {
  background: var(--mm-gray);
  border-radius: 12px;
  padding: 34px;
}
.mm-page-merci .mm-merci-extra-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 12px;
}
.mm-page-merci .mm-merci-extra-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-body);
  margin: 0 0 22px;
}

@media (max-width: 980px) {
  .mm-page-merci .mm-merci-hero,
  .mm-page-merci .mm-merci-next,
  .mm-page-merci .mm-merci-extra {
    padding-left: 18px;
    padding-right: 18px;
  }
  .mm-page-merci .mm-merci-hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
    gap: 28px;
  }
  .mm-page-merci .mm-merci-hero h1 { font-size: 32px; }
  .mm-page-merci .mm-merci-ctas .mm-btn { width: 100%; }
  .mm-page-merci .mm-merci-next { padding-top: 40px; }
  .mm-page-merci .mm-merci-next > h2 { font-size: 26px; }
  .mm-page-merci .mm-merci-steps { grid-template-columns: 1fr; }
  .mm-page-merci .mm-merci-extra {
    grid-template-columns: 1fr;
    padding: 40px 18px 56px;
  }
}


/* City landers + grouped footer cities (1.1.9) */
.mm-city-hero {
  padding: 28px 40px 0;
  max-width: 820px;
}
.mm-city-hero h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--mm-navy);
  line-height: 1.12;
  margin: 0 0 16px;
}
.mm-city-sibs {
  padding: 8px 40px 0;
}
.mm-city-sibs-h {
  font-size: 15px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 10px;
}
.mm-city-sibs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 15px;
  font-weight: 600;
}
.mm-city-sibs-row a {
  color: var(--mm-blue-ink);
}
.mm-footer-cities {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 10px 0 14px;
  font-size: 14px;
}
.mm-footer-city-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  align-items: baseline;
}
.mm-footer-city-group span {
  font-weight: 800;
  color: var(--mm-navy);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
}
.mm-footer-city-group a { color: var(--mm-blue-ink); }
.mm-city-home {
  padding: 40px 40px 0;
  text-align: center;
}
.mm-city-home-h {
  font-size: 16px;
  font-weight: 800;
  color: var(--mm-navy);
  margin: 0 0 12px;
}
@media (max-width: 980px) {
  .mm-city-hero,
  .mm-city-sibs,
  .mm-city-home { padding-left: 18px; padding-right: 18px; }
  .mm-city-hero h1 { font-size: 30px; }
}
