/* Aspire Media — My Tooth Docs "New Homepage" v4 (luxury animated)
   Cinzel display serif + Montserrat body, scroll reveals, counters,
   marquee ribbons, parallax accents. Ships its own responsive header/footer.
   No CSS content-escapes (minifier-safe). */

/* ---- hide the site-wide header/footer templates ON THIS PAGE ONLY ---- */
body.mh-has-callbar #masthead,
body.mh-has-callbar header.site-header,
body.mh-has-callbar [data-elementor-type="header"],
body.mh-has-callbar .elementor-location-header,
body.mh-has-callbar footer.site-footer,
body.mh-has-callbar [data-elementor-type="footer"],
body.mh-has-callbar .elementor-location-footer { display: none !important; }

.mh4 {
  --ink: #23201C;
  --ink-2: #2A2521;
  --body: #6B655C;
  --muted: #9A9188;
  --cyan: #0799C9;
  --cyan-dk: #056E92;
  --cyan-lt: #7FD8F5;
  --cyan-wash: #E9F6FB;
  --cream: #F8F4EE;
  --cream-2: #FCFAF7;
  --hair: #E5DCD1;
  --hair-soft: #EFE8DF;
  --r: 18px;
  --wrap: 1220px;
  --font: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Cinzel, "Times New Roman", Georgia, serif;

  font-family: var(--font);
  color: var(--body);
  font-size: 16px;
  line-height: 1.78;
  background: #fff;
  -webkit-font-smoothing: antialiased;

  /* Astra's .ast-container is display:flex — without this the page shrink-wraps. */
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: clip;
}

.mh4 *, .mh4 *::before, .mh4 *::after { box-sizing: border-box; }
.mh4 img { max-width: 100%; }

/* ---------- typography ---------- */
.mh4 h1, .mh4 h2 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .005em;
  margin: 0 0 .5em;
  line-height: 1.12;
}
/* Cinzel is an all-caps face with wide glyphs and a tall em box — it needs a
   smaller size and tighter leading than a normal sans at the same scale. */
.mh4 h1 { font-size: clamp(2rem, 1.25rem + 2.6vw, 3.3rem); line-height: 1.1; }
.mh4 h2 { font-size: clamp(1.5rem, 1.15rem + 1.35vw, 2.2rem); line-height: 1.14; }
.mh4 h2 em, .mh4 h1 em { font-style: normal; color: var(--cyan); }
.mh4 h3 { font-family: var(--font); color: var(--ink); font-weight: 600; letter-spacing: -.015em; font-size: 1.13rem; line-height: 1.32; margin: 0 0 .5em; }
.mh4 h3 sup { font-size: .55em; }
/* `:where()` contributes ZERO specificity, so this base margin is 0-1-0 and any
   single-class component rule below can override it. Written as a plain
   `.mh4 p` (0-1-1) it silently beat every component rule — the CTA price asked
   for .34em and rendered 1.1em (91px), and the eyebrows, doctor roles and
   footer hours were all quietly wrong too. */
.mh4 :where(p) { margin: 0 0 1.1em; }
.mh4 :where(p):last-child { margin-bottom: 0; }
.mh4 strong { color: var(--ink); font-weight: 600; }
/* No blanket `.mh4 a` rule — prose links opt in by class. */

.mh4-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }
.mh4-sec { padding-block: clamp(3.75rem, 7vw, 6.75rem); }
.mh4-sec--cream { background: var(--cream); }

.mh4-eyebrow {
  display: flex; align-items: center; gap: .8rem;
  font-size: .7rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--cyan-dk); margin: 0 0 1.3rem;
}
.mh4-eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--cyan); flex: 0 0 auto; }
.mh4-lead { font-size: clamp(1rem, .95rem + .35vw, 1.15rem); line-height: 1.78; }
.mh4-measure { max-width: 26ch; }
.mh4-measure2 { max-width: 72ch; }
.mh4-head { margin-bottom: clamp(2.4rem, 4vw, 3.75rem); }
.mh4-head > *:last-child { margin-bottom: 0; }
.mh4-head--c { text-align: center; }
.mh4-head--c .mh4-eyebrow { justify-content: center; }
.mh4-head--c .mh4-eyebrow::before { display: none; }
.mh4-head--c .mh4-measure, .mh4-head--c .mh4-measure2 { margin-inline: auto; }
.mh4-head--c .mh4-measure { max-width: 44ch; }

/* ---------- reveal (classes are ARMED from JS, below-fold only) ---------- */
.mh4 .mh4-armed { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1); }
.mh4 .mh4-armed.mh4-in { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.mh4-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.85rem; border-radius: 999px;
  font-family: var(--font); font-size: .84rem; font-weight: 600; letter-spacing: .04em;
  line-height: 1.25; text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.mh4-btn:hover { transform: translateY(-2px); }
.mh4-btn svg { transition: transform .22s ease; }
.mh4-btn:hover svg { transform: translateX(3px); }
.mh4-btn--lg { padding: 1.08rem 2.15rem; font-size: .89rem; }
.mh4-btn--cyan { background: var(--cyan); color: #fff; box-shadow: 0 14px 30px -14px rgba(7,153,201,.75); }
.mh4-btn--cyan:hover { background: var(--cyan-dk); color: #fff; box-shadow: 0 18px 38px -14px rgba(7,153,201,.85); }
.mh4-btn--ink { background: var(--ink); color: #fff; }
.mh4-btn--ink:hover { background: var(--cyan); color: #fff; }
.mh4-btn--ghost { background: #fff; color: var(--ink); border-color: var(--hair); }
.mh4-btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.mh4-btn--ghostw { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.mh4-btn--ghostw:hover { background: #fff; color: var(--ink); border-color: #fff; }
.mh4-btns { display: flex; flex-wrap: wrap; gap: .8rem; }
.mh4-btns--c { justify-content: center; margin-top: clamp(2.2rem, 3.5vw, 3rem); }

.mh4-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cyan-dk); text-decoration: none; border-bottom: 1px solid var(--hair); padding-bottom: .3rem;
  transition: color .2s ease, border-color .2s ease;
}
.mh4-link:hover { color: var(--ink); border-color: var(--ink); }
.mh4-link svg { transition: transform .2s ease; }
.mh4-link:hover svg { transform: translateX(3px); }

/* ============ HEADER ============ */
/* Fixed + transparent so the video banner runs behind it; it solidifies on scroll. */
.mh4-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.mh4-header.is-scrolled {
  background: rgba(42, 37, 33, .96);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 14px 34px -18px rgba(20,17,14,.6);
}
/* the menu panel always needs its own solid ground */
.mh4-header:not(.is-scrolled) .mh4-menu { background: rgba(42, 37, 33, .97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
body.admin-bar .mh4-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .mh4-header { top: 46px; } }
.mh4-header__in { display: flex; align-items: center; gap: 1.5rem; min-height: 76px; }
.mh4-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.mh4-logo img { height: 42px; width: auto; display: block; }
.mh4-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); margin-inline: auto; }
.mh4-nav__link {
  color: rgba(255,255,255,.85); text-decoration: none;
  font-size: .83rem; font-weight: 600; letter-spacing: .03em;
  padding: .4rem 0; position: relative;
}
.mh4-nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.mh4-nav__link:hover { color: #fff; }
.mh4-nav__link:hover::after { transform: scaleX(1); }
.mh4-header__cta { display: flex; align-items: center; gap: .7rem; margin-left: auto; }
.mh4-header__cta .mh4-btn { padding: .72rem 1.3rem; font-size: .78rem; }
.mh4-burger {
  display: none; width: 44px; height: 44px; border-radius: 999px; border: 1px solid rgba(255,255,255,.3);
  background: transparent; color: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.mh4-burger__close { display: none; }
.mh4-burger[aria-expanded="true"] .mh4-burger__open { display: none; }
.mh4-burger[aria-expanded="true"] .mh4-burger__close { display: block; }
.mh4-menu { background: var(--ink-2); border-top: 1px solid rgba(255,255,255,.1); padding: 1rem clamp(1.25rem, 4vw, 3rem) 1.4rem; }
.mh4-menu[hidden] { display: none; }
.mh4-menu__link {
  display: block; color: rgba(255,255,255,.9); text-decoration: none;
  font-size: .96rem; font-weight: 600; padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mh4-menu__link:hover { color: var(--cyan-lt); }
.mh4-menu__cta { display: grid; gap: .6rem; margin-top: 1.1rem; }

/* ============ VIDEO BANNER ============ */
.mh4-banner {
  position: relative; overflow: hidden;
  min-height: min(94vh, 940px);
  display: flex; flex-direction: column; justify-content: center;
  background: #17140F;
  padding-top: clamp(6rem, 9vw, 8.5rem);
  padding-bottom: clamp(9rem, 12vw, 11rem);
}
.mh4-banner__media { position: absolute; inset: 0; overflow: hidden; }
.mh4-banner__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.04);   /* hides the upscaled still's soft edges */
}
/* Vimeo background layer — sized to COVER the banner at any aspect ratio */
.mh4-banner__vid { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 1.1s ease; }
.mh4-banner__vid.is-ready { opacity: 1; }
.mh4-banner__vid iframe {
  position: absolute; top: 50%; left: 50%;
  width: max(100vw, 177.78vh); height: max(56.25vw, 100vh);
  transform: translate(-50%, -50%); border: 0;
}
.mh4-banner__scrim {
  position: absolute; inset: 0;
  background:
    /* top band — guarantees the transparent header stays legible no matter
       how bright the footage is behind it */
    linear-gradient(180deg, rgba(18,15,11,.78) 0%, rgba(18,15,11,.35) 12%, rgba(18,15,11,0) 26%),
    /* left band — carries the headline over whatever the film is showing */
    linear-gradient(90deg, rgba(18,15,11,.93) 0%, rgba(18,15,11,.84) 38%, rgba(18,15,11,.46) 70%, rgba(18,15,11,.58) 100%),
    /* bottom band — grounds the glass chips */
    linear-gradient(0deg, rgba(18,15,11,.86) 0%, rgba(18,15,11,0) 44%);
}
.mh4-banner__inner { position: relative; z-index: 2; width: 100%; }
.mh4-banner__copy { max-width: 44rem; }
.mh4-banner h1 { color: #fff; margin-bottom: .42em; text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.mh4-hero__accent { color: var(--cyan-lt); }
.mh4-banner .mh4-lead { color: rgba(255,255,255,.86); max-width: 48ch; }
.mh4-banner .mh4-btns { margin-top: 2.1rem; }
.mh4-eyebrow--light { color: var(--cyan-lt); }
.mh4-eyebrow--light::before { background: var(--cyan-lt); }
.mh4-banner__trust { display: flex; align-items: center; gap: .8rem; margin: 1.9rem 0 0; font-size: .86rem; line-height: 1.5; color: rgba(255,255,255,.8); }
.mh4-banner__trust b { color: #fff; font-weight: 600; }
.mh4-stars { display: inline-flex; gap: .15rem; color: #F5A623; flex: 0 0 auto; }

/* play button */
.mh4-playbtn { padding-left: 1.15rem; }
.mh4-playbtn__ic {
  width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); color: #fff; margin-right: .2rem;
  transition: background-color .22s ease, color .22s ease;
}
.mh4-playbtn__ic svg { margin-left: 2px; }
.mh4-playbtn:hover .mh4-playbtn__ic { background: var(--cyan); color: #fff; }

/* glass stat chips pinned to the bottom of the banner */
.mh4-banner__bottom { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding-bottom: clamp(3.4rem, 5vw, 4.6rem); }
.mh4-chips { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.mh4-chips li {
  border: 1px solid rgba(255,255,255,.2); border-radius: 16px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 1rem 1.15rem;
}
.mh4-chips b { display: block; font-family: var(--serif); font-weight: 600; color: #fff; font-size: clamp(1.2rem, 1rem + .8vw, 1.7rem); line-height: 1.1; }
.mh4-chips span { display: block; margin-top: .3rem; font-size: .64rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.66); line-height: 1.5; }

/* scroll cue */
.mh4-scrollcue {
  position: absolute; left: 50%; bottom: .55rem; z-index: 3;
  transform: translateX(-50%);
  width: 26px; height: 42px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.4);
  display: flex; justify-content: center; padding-top: 7px;
}
.mh4-scrollcue span { width: 3px; height: 8px; border-radius: 3px; background: rgba(255,255,255,.85); animation: mh4cue 1.8s ease-in-out infinite; }
@keyframes mh4cue { 0%,100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(11px); opacity: .25; } }

/* ============ FILM LIGHTBOX ============ */
.mh4-film { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); }
.mh4-film[hidden] { display: none; }
.mh4-film__backdrop { position: absolute; inset: 0; background: rgba(12,10,8,.9); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.mh4-film__inner { position: relative; width: min(1100px, 100%); }
.mh4-film__frame { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 14px; overflow: hidden; background: #000; box-shadow: 0 40px 100px -30px rgba(0,0,0,.8); }
.mh4-film__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mh4-film__x {
  position: absolute; top: -3.1rem; right: 0;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, color .2s ease;
}
.mh4-film__x:hover { background: #fff; color: var(--ink); }

.mh4-arch {
  display: block; overflow: hidden;
  border-radius: 50vw 50vw 16px 16px;
  box-shadow: 0 30px 64px -30px rgba(35,32,28,.5);
}
.mh4-arch img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mh4-hero__fig { position: relative; margin: 0; }
.mh4-hero__fig .mh4-arch { aspect-ratio: 4 / 5; }
.mh4-float {
  position: absolute; left: -1.5rem; bottom: 2rem;
  display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid var(--hair-soft); border-radius: 16px;
  padding: 1rem 1.3rem;
  box-shadow: 0 18px 42px -20px rgba(35,32,28,.45);
}
.mh4-float b { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--ink); line-height: 1; }
.mh4-float span { font-size: .65rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); line-height: 1.5; }

/* ============ RIBBON (marquee text) ============ */
.mh4-ribbon { background: #fff; border-block: 1px solid var(--hair-soft); padding-block: 1.1rem; overflow: hidden; }
.mh4-sec--cream + .mh4-ribbon, .mh4-ribbon + .mh4-sec--cream { border-color: var(--hair); }
.mh4-ribbon__track { display: flex; width: max-content; animation: mh4marq 46s linear infinite; }
.mh4-ribbon__set { display: flex; align-items: center; }
.mh4-ribbon__set span {
  font-family: var(--serif); font-weight: 500; white-space: nowrap;
  font-size: clamp(1.7rem, 1.2rem + 2.4vw, 3.1rem); line-height: 1.25;
  color: transparent; -webkit-text-stroke: 1px rgba(35,32,28,.4);
  padding-inline: clamp(1.2rem, 2.4vw, 2.2rem);
}
.mh4-ribbon__set i { font-style: normal; color: var(--cyan); font-size: clamp(1rem, .8rem + 1vw, 1.5rem); }
@keyframes mh4marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ STATS ============ */
.mh4-stats { background: #fff; border-bottom: 1px solid var(--hair-soft); }
.mh4-stats ul { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.mh4-stats li {
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: clamp(1.9rem, 3vw, 2.8rem) 1rem; border-left: 1px solid var(--hair-soft);
}
.mh4-stats li:first-child { border-left: 0; }
.mh4-stats b { font-family: var(--serif); font-weight: 600; color: var(--ink); font-size: clamp(1.7rem, 1.15rem + 1.7vw, 2.6rem); line-height: 1.1; }
.mh4-stats span { margin-top: .55rem; font-size: .66rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); line-height: 1.6; }

/* ============ AWARDS ============ */
.mh4-awards { background: var(--cream-2); border-bottom: 1px solid var(--hair-soft); padding-block: 1.3rem; overflow: hidden; }
.mh4-awards__track { display: flex; width: max-content; animation: mh4marq 38s linear infinite; }
.mh4-awards__track:hover { animation-play-state: paused; }
.mh4-awards__set { display: flex; align-items: center; gap: clamp(2.25rem, 4.5vw, 4rem); padding-inline: clamp(1.25rem, 2.25vw, 2rem); }
.mh4-awards__set img { height: 48px; width: auto; display: block; }
.mh4-awards__set span { font-size: .64rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

/* ============ SERVICE CARDS ============ */
.mh4-svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.2vw, 1.9rem); align-items: stretch; }
.mh4-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--hair-soft); border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 22px 46px -34px rgba(35,32,28,.4);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.mh4-card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(35,32,28,.5); border-color: var(--hair); }
.mh4-card__img { position: relative; display: block; overflow: hidden; }
.mh4-card__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .5s ease; }
.mh4-card:hover .mh4-card__img img { transform: scale(1.06); }
.mh4-card__num {
  position: absolute; top: .9rem; left: .9rem;
  font-family: var(--serif); font-weight: 600; font-size: .95rem; color: var(--ink);
  background: rgba(255,255,255,.94); border-radius: 999px;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(20,17,14,.2);
}
.mh4-card__body { display: flex; flex-direction: column; align-items: flex-start; flex: 1 1 auto; padding: 1.6rem 1.6rem 1.7rem; }
.mh4-card__body h3 { margin-bottom: .5em; }
.mh4-card__body p { font-size: .92rem; line-height: 1.72; margin-bottom: 0; }
.mh4-card__body .mh4-link { margin-top: auto; padding-top: 1.35rem; border-bottom: 0; }

.mh4-emerg {
  margin-top: clamp(2.2rem, 3.5vw, 3rem);
  background: var(--cyan-wash); border: 1px solid #D3ECF6; border-radius: var(--r);
  padding: 1.4rem 1.7rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.mh4-emerg p { margin: 0; font-size: .98rem; }

/* ============ FEATURES ============ */
.mh4-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.8vw, 1.4rem); align-items: stretch; }
.mh4-feat {
  display: flex; flex-direction: column; align-items: flex-start;
  background: #fff; border: 1px solid var(--hair-soft); border-radius: var(--r);
  padding: 1.7rem 1.5rem;
  box-shadow: 0 18px 40px -30px rgba(35,32,28,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mh4-feat:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(35,32,28,.42); }
.mh4-feat__ic {
  width: 48px; height: 48px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--cyan-wash); color: var(--cyan-dk); margin-bottom: 1.05rem;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.mh4-feat:hover .mh4-feat__ic { background: var(--cyan); color: #fff; transform: scale(1.06); }
.mh4-feat h3 { font-size: 1.04rem; margin-bottom: .45em; }
.mh4-feat p { font-size: .89rem; line-height: 1.7; margin: 0; }

/* ============ SAPPHIRE ============ */
.mh4-sapp {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 4.5vw, 4.5rem); align-items: center;
  background: linear-gradient(165deg, #fff, var(--cream-2));
  border: 1px solid var(--hair-soft); border-radius: 26px;
  padding: clamp(1.9rem, 4vw, 3.75rem);
  box-shadow: 0 34px 74px -46px rgba(35,32,28,.45);
  position: relative; overflow: hidden;
}
.mh4-sapp::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--cyan-lt)); }
.mh4-sapp__badge {
  background: var(--cream-2); border: 1px solid var(--hair-soft); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem); min-height: 300px;
}
.mh4-sapp__badge img { max-height: 330px; width: auto; }
.mh4-pills { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.7rem 0; padding: 0; }
.mh4-pills li { background: #fff; border: 1px solid var(--hair-soft); border-radius: 14px; padding: .95rem 1.05rem; }
.mh4-pills b { display: block; font-family: var(--serif); color: var(--ink); font-weight: 600; font-size: 1.3rem; line-height: 1.15; }
.mh4-pills span { display: block; margin-top: .3rem; font-size: .62rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); line-height: 1.55; }

/* ============ BEFORE / AFTER ============ */
.mh4-split { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.mh4-hint { font-size: .92rem; }
.mh4-split .mh4-btns { margin-top: 1.8rem; }
.mh4-ba__stage {
  --pos: 50%;
  position: relative; overflow: hidden; border-radius: 22px;
  aspect-ratio: 4 / 3; background: var(--ink);
  box-shadow: 0 30px 64px -32px rgba(35,32,28,.55);
  touch-action: pan-y;
}
.mh4-ba__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mh4-ba__afterwrap { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos)); }
.mh4-ba__line {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px;
  background: #fff; transform: translateX(-1px);
  box-shadow: 0 0 16px rgba(0,0,0,.35);
}
.mh4-ba__knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--ink); font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.mh4-ba__tag {
  position: absolute; top: .95rem;
  padding: .34rem .85rem; border-radius: 999px;
  background: rgba(35,32,28,.64); color: #fff;
  font-size: .62rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}
.mh4-ba__tag--l { left: .95rem; }
.mh4-ba__tag--r { right: .95rem; }
.mh4-ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
}

/* ============ DOCTORS ============ */
.mh4-docs { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
.mh4-doc { display: flex; flex-direction: column; align-items: flex-start; }
.mh4-doc .mh4-arch { width: 100%; aspect-ratio: 4 / 5; margin-bottom: 1.35rem; }
.mh4-doc .mh4-arch img { transition: transform .5s ease; }
.mh4-doc:hover .mh4-arch img { transform: scale(1.05); }
.mh4-doc h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: .01em; margin-bottom: .15em; }
.mh4-doc__role { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan-dk); margin: 0 0 .9rem; }
.mh4-doc .mh4-link { margin-top: auto; }

/* ============ PATIENT STORIES ============ */
.mh4-vids { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.5rem); align-items: stretch; }
.mh4-vid { margin: 0; display: flex; flex-direction: column; }
.mh4-vid__thumb {
  position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer;
  border-radius: 16px; overflow: hidden; background: var(--ink);
  box-shadow: 0 22px 46px -30px rgba(35,32,28,.5);
}
.mh4-vid__thumb img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; transition: transform .4s ease, opacity .3s ease; }
.mh4-vid__thumb:hover img { transform: scale(1.05); opacity: .92; }
.mh4-vid__play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.95); color: var(--ink);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.mh4-vid__play svg { margin-left: 3px; }
.mh4-vid__thumb:hover .mh4-vid__play { background: var(--cyan); color: #fff; transform: scale(1.07); }
.mh4-vid__frame { position: relative; width: 100%; aspect-ratio: 3 / 4; border-radius: 16px; overflow: hidden; background: #000; }
.mh4-vid__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mh4-vid figcaption { margin-top: .85rem; font-weight: 600; font-size: .88rem; line-height: 1.45; color: var(--ink); letter-spacing: -.005em; }

/* ============ OFFER + OFFICES ============ */
.mh4-cta { background: var(--ink); color: #C7C0B6; }
.mh4-cta h2 { color: #fff; max-width: 22ch; }
.mh4-cta .mh4-eyebrow { color: #9A9188; }
.mh4-cta .mh4-eyebrow::before { background: var(--cyan-lt); }
.mh4-cta strong { color: #fff; }
.mh4-cta__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4.5vw, 4.5rem); align-items: center; }
.mh4-cta__price {
  font-family: var(--serif); font-weight: 600;
  /* .82 crops Cinzel's tall em box to the cap height — at line-height:1 it
     leaves ~75px of dead space under a 96px figure. */
  line-height: .82;
  font-size: clamp(3.2rem, 2.4rem + 3.4vw, 5.2rem);
  color: var(--cyan-lt);
  margin: .1em 0 .34em;
}
.mh4-cta__note { font-size: 1rem; max-width: 46ch; }
.mh4-cta .mh4-btns { margin-top: 1.9rem; }
.mh4-ticks { list-style: none; margin: 0; padding: 0; }
.mh4-ticks li {
  display: grid; grid-template-columns: 1.15rem 1fr; gap: .85rem; align-items: start;
  padding: .78rem 0; border-top: 1px solid rgba(255,255,255,.13);
  font-size: .95rem; line-height: 1.6; color: #D8D2C8;
}
.mh4-ticks li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.mh4-ticks svg { margin-top: .3rem; color: var(--cyan-lt); }
.mh4-offices {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: clamp(2.75rem, 4.5vw, 4rem); border-top: 1px solid rgba(255,255,255,.14);
}
.mh4-office { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(1.6rem, 2.8vw, 2.2rem) clamp(1.4rem, 2.8vw, 2.2rem); border-left: 1px solid rgba(255,255,255,.14); }
.mh4-office:first-child { border-left: 0; padding-left: 0; }
.mh4-office h3 { display: flex; align-items: center; gap: .5rem; color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.18rem; letter-spacing: .01em; margin-bottom: .55em; }
.mh4-office h3 svg { color: var(--cyan-lt); }
.mh4-office p { font-size: .9rem; line-height: 1.7; color: #C7C0B6; margin-bottom: 0; }
.mh4-office a {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: auto; padding-top: 1.05rem;
  color: #fff; font-size: .92rem; font-weight: 600; text-decoration: none;
}
.mh4-office a:hover { color: var(--cyan-lt); }

/* ============ FOOTER ============ */
.mh4-footer { background: #1D1A16; color: #B7B0A6; padding-top: clamp(3rem, 5vw, 4.5rem); }
.mh4-footer__grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); }
.mh4-footer__brand img { height: 46px; width: auto; margin-bottom: 1.1rem; }
.mh4-footer__brand p { font-size: .9rem; line-height: 1.75; max-width: 30ch; }
.mh4-footer h3 { color: #fff; font-family: var(--serif); font-size: 1.02rem; font-weight: 600; letter-spacing: .02em; margin: 0 0 .8em; }
.mh4-footer p { font-size: .88rem; line-height: 1.7; margin: 0 0 .8em; }
.mh4-footer__tel { display: inline-block; color: var(--cyan-lt); font-weight: 600; font-size: .95rem; text-decoration: none; margin-bottom: .8rem; }
.mh4-footer__tel:hover { color: #fff; }
.mh4-footer__hours { color: #8E877C; font-size: .8rem; line-height: 1.75; }
.mh4-footer__bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: clamp(2.25rem, 4vw, 3.25rem); padding-block: 1.5rem;
}
.mh4-footer__bar p { margin: 0; font-size: .78rem; color: #8E877C; }
.mh4-footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.mh4-footer__links a { color: #B7B0A6; text-decoration: none; font-size: .78rem; font-weight: 600; }
.mh4-footer__links a:hover { color: var(--cyan-lt); }

/* ============ POPUP ============ */
.mh4-pop { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 1.25rem; }
.mh4-pop[hidden] { display: none; }
.mh4-pop__backdrop { position: absolute; inset: 0; background: rgba(35,32,28,.66); }
.mh4-pop__card {
  position: relative; display: grid; grid-template-columns: .9fr 1.1fr;
  width: min(860px, 100%); max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: 22px;
  box-shadow: 0 50px 120px -35px rgba(0,0,0,.55);
  animation: mh4popin .4s cubic-bezier(.2, .85, .3, 1.15) both;
}
@keyframes mh4popin { from { opacity: 0; transform: translateY(22px) scale(.95); } to { opacity: 1; transform: none; } }
.mh4-pop__media { position: relative; min-height: 300px; background: var(--cream-2); }
.mh4-pop__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 1.1rem; }
.mh4-pop__body { padding: clamp(1.6rem, 3.5vw, 2.5rem); display: flex; flex-direction: column; align-items: flex-start; }
.mh4-pop__body .mh4-eyebrow { margin-bottom: .9rem; }
.mh4-pop__h { font-size: clamp(1.25rem, 1.05rem + 1vw, 1.7rem); line-height: 1.22; margin-bottom: .35em; }
.mh4-pop__h b { color: var(--cyan); white-space: nowrap; }
.mh4-pop__sub { font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan-dk); margin: 0 0 1rem; }
.mh4-pop__ticks { list-style: none; margin: 0 0 1.05rem; padding: 0; width: 100%; }
.mh4-pop__ticks li {
  display: grid; grid-template-columns: 1.1rem 1fr; gap: .8rem; align-items: start;
  padding: .5rem 0; border-top: 1px solid var(--hair-soft);
  font-size: .9rem; line-height: 1.55;
}
.mh4-pop__ticks li:last-child { border-bottom: 1px solid var(--hair-soft); }
.mh4-pop__ticks svg { margin-top: .25rem; color: var(--cyan); }
.mh4-pop__note { font-size: .88rem; line-height: 1.65; margin-bottom: 1.3rem; }
.mh4-pop__x {
  position: absolute; top: .85rem; right: .85rem; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  transition: background-color .2s ease, color .2s ease;
}
.mh4-pop__x:hover { background: var(--ink); color: #fff; }

/* ---------- sticky mobile call bar ---------- */
.mh4-callbar { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .mh4-nav { display: none; }
  .mh4-burger { display: inline-flex; }
  .mh4-header__cta { margin-left: auto; }
  .mh4-header__tel span { display: none; }
  .mh4-header__tel { padding-inline: .85rem; }
}
@media (min-width: 1081px) {
  .mh4-menu { display: none !important; }
}

@media (max-width: 980px) {
  .mh4-chips { grid-template-columns: 1fr 1fr; }
  /* below desktop the copy is tall enough that absolutely-positioned chips
     collide with the trust row — drop them back into normal flow instead */
  .mh4-banner { min-height: 0; padding-bottom: clamp(3rem, 7vw, 4rem); }
  .mh4-banner__bottom { position: relative; z-index: 2; padding-bottom: 0; margin-top: clamp(2.2rem, 6vw, 3rem); }
  .mh4-scrollcue { display: none; }
  .mh4-banner__copy { max-width: none; }
  .mh4-svcs { grid-template-columns: 1fr; }
  .mh4-card { flex-direction: row; align-items: stretch; }
  .mh4-card__img { flex: 0 0 38%; }
  .mh4-card__img img { height: 100%; aspect-ratio: auto; min-height: 210px; }
  .mh4-feats { grid-template-columns: 1fr 1fr; }
  .mh4-sapp { grid-template-columns: 1fr; }
  .mh4-sapp__badge { min-height: 0; }
  .mh4-sapp__badge img { max-height: 240px; }
  .mh4-split { grid-template-columns: 1fr; }
  .mh4-docs { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
  .mh4-vids { grid-template-columns: 1fr 1fr; }
  .mh4-cta__grid { grid-template-columns: 1fr; }
  .mh4-offices { grid-template-columns: 1fr; }
  .mh4-office { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-inline: 0; }
  .mh4-office:first-child { border-top: 0; }
  .mh4-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .mh4-pills { grid-template-columns: 1fr; }
  .mh4-stats ul { grid-template-columns: 1fr 1fr; }
  .mh4-stats li:nth-child(odd) { border-left: 0; }
  .mh4-stats li:nth-child(n+3) { border-top: 1px solid var(--hair-soft); }
  .mh4-card { flex-direction: column; }
  .mh4-card__img { flex: 0 0 auto; }
  .mh4-card__img img { aspect-ratio: 16 / 9; min-height: 0; }
  .mh4-docs { grid-template-columns: 1fr; gap: 2rem; }
  .mh4-doc { display: grid; grid-template-columns: 168px 1fr; column-gap: 1.4rem; align-items: center; }
  .mh4-doc .mh4-arch { margin-bottom: 0; aspect-ratio: 4 / 5; grid-row: 1 / span 3; grid-column: 1; }
  .mh4-doc h3, .mh4-doc .mh4-doc__role, .mh4-doc .mh4-link { grid-column: 2; }
  .mh4-emerg { flex-direction: column; align-items: flex-start; }
  .mh4-awards__set img { height: 38px; }
  .mh4-pop__card { grid-template-columns: 1fr; }
  .mh4-pop__media { min-height: 0; height: 190px; }
}

@media (max-width: 640px) {
  .mh4-header__tel { display: none; }
  .mh4-header__in { gap: 1rem; }
}
@media (max-width: 400px) {
  .mh4-logo img { height: 31px; }
  .mh4-header__cta { gap: .5rem; }
  .mh4-header__cta .mh4-btn--cyan { padding: .68rem .8rem; font-size: .7rem; }
}

@media (max-width: 560px) {
  .mh4-feats { grid-template-columns: 1fr; }
  .mh4-vids { grid-template-columns: 1fr; }
  .mh4-vid__thumb img, .mh4-vid__frame { aspect-ratio: 4 / 3; }
  .mh4-btns .mh4-btn { flex: 1 1 100%; }
  .mh4-banner__trust { align-items: flex-start; }
  .mh4-banner { padding-top: 6.5rem; padding-bottom: 3rem; }
  .mh4-chips li { padding: .78rem .85rem; }
  .mh4-film__x { top: -3rem; right: 50%; transform: translateX(50%); }
  .mh4-pop .mh4-btn { width: 100%; }
  .mh4-callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 600;
    padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--hair);
  }
  .mh4-callbar .mh4-btn { padding: .8rem .7rem; font-size: .8rem; }
  body.mh-has-callbar { padding-bottom: 70px; }
}

@media (prefers-reduced-motion: reduce) {
  .mh4 *, .mh4 *::before, .mh4 *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .mh4-ribbon__track, .mh4-awards__track { animation: none; }
}
