/* ============================================================
   MITOVSKA HEALTH — Main Stylesheet
   "The High-Trust Professional" — Luxury Clinic Aesthetic
   ============================================================ */

/* ── 1. CSS Variables ────────────────────────────────────────── */
:root {
  --navy:        #0B2545;
  --navy-mid:    #0D2E55;
  --navy-light:  #153A66;
  --navy-deep:   #071A33;
  --teal:        #1B7A8A;
  --teal-light:  #22A8BC;
  --teal-pale:   #E8F6F8;
  --teal-glow:   rgba(27,122,138,.25);
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-pale:   rgba(201,168,76,.12);
  --white:       #F0F4F8;
  --off-white:   #E8EDF2;
  --gray-50:     #E3E9EF;
  --gray-100:    #D5DCE4;
  --gray-200:    #C2CBD6;
  --gray-300:    #A8B5C2;
  --gray-500:    #7889A0;
  --gray-700:    #3D4F63;
  --text:        #1A2B3C;
  --text-muted:  #5A6D80;
  --surface:     #E8EDF3;
  --surface-alt: #DDE4EC;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --shadow-xs:  0 1px 3px rgba(11,37,69,.05);
  --shadow-sm:  0 2px 8px rgba(11,37,69,.08);
  --shadow-md:  0 6px 24px rgba(11,37,69,.10);
  --shadow-lg:  0 16px 48px rgba(11,37,69,.14);
  --shadow-xl:  0 32px 80px rgba(11,37,69,.18);
  --shadow-glow-teal: 0 8px 32px rgba(27,122,138,.3);
  --shadow-glow-gold: 0 4px 20px rgba(201,168,76,.2);

  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --radius-2xl: 48px;

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .6s cubic-bezier(.4,0,.2,1);
  --transition-bounce: .5s cubic-bezier(.34,1.56,.64,1);

  --container:  1200px;
  --header-h:   80px;
  --action-bar-h: 40px;
  --total-top:  calc(var(--action-bar-h) + var(--header-h));
}

/* ── 2. Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection {
  background: var(--teal);
  color: var(--white);
}

/* ── 3. Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.01em;
}

.mh-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.mh-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
}

.mh-label--light { color: var(--teal-light); }
.mh-label--light::before { background: var(--gold-light); }

/* ── 4. Layout helpers ───────────────────────────────────────── */
.mh-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.mh-section {
  padding: 70px 0;
  position: relative;
}

.mh-section--sm { padding: 50px 0; }

/* Noise texture for dark sections (SVG inline filter) */
.mh-hero::after,
.mh-why::after,
.mh-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: overlay;
}

/* Section gradient dividers */
.mh-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200) 30%, var(--gold-pale) 50%, var(--gray-200) 70%, transparent);
  pointer-events: none;
}
.mh-section:first-of-type::before { display: none; }

/* ── 5. Buttons ──────────────────────────────────────────────── */
.mh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9375rem 2.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.mh-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.mh-btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: var(--shadow-glow-teal);
}
.mh-btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
  opacity: 0;
  transition: opacity var(--transition);
}
.mh-btn--primary:hover::before { opacity: 1; }
.mh-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,122,138,.45);
}
.mh-btn--primary > * { position: relative; z-index: 1; }
.mh-btn--primary > svg { position: relative; z-index: 1; }

.mh-btn--outline {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.mh-btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.mh-btn--ghost-navy {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.mh-btn--ghost-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.mh-btn--full { width: 100%; }

/* ── 6. Action Bar ───────────────────────────────────────────── */
.mh-action-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--action-bar-h);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: transform var(--transition), opacity var(--transition);
}
.mh-action-bar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.mh-action-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mh-action-bar__info {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.mh-action-bar__item {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.mh-action-bar__item svg { width: 13px; height: 13px; opacity: .5; }

.mh-action-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.12);
}

.mh-action-bar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mh-action-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.mh-action-bar__phone svg { width: 14px; height: 14px; }
.mh-action-bar__phone:hover { color: var(--white); }

.mh-action-bar__cta {
  display: inline-flex;
  align-items: center;
  padding: .325rem 1rem;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}
.mh-action-bar__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── 7. Header / Navigation ─────────────────────────────────── */
.mh-header {
  position: fixed;
  top: var(--action-bar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: all var(--transition);
}

.mh-header.is-scrolled {
  top: 0;
  background: rgba(224,231,240,.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(11,37,69,.08), var(--shadow-sm);
  height: 68px;
}

.mh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.mh-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  transition: opacity var(--transition);
}
.mh-logo:hover { opacity: .85; }

.mh-logo__icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(27,122,138,.25);
}
.mh-logo__icon svg { width: 22px; height: 22px; }

.mh-logo__text { display: flex; flex-direction: column; line-height: 1.15; }

.mh-logo__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

.mh-logo__title {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.mh-header.is-scrolled .mh-logo__name  { color: var(--navy); }
.mh-header.is-scrolled .mh-logo__title { color: var(--text-muted); }

/* Nav */
.mh-nav { display: flex; align-items: center; gap: 2rem; }

.mh-nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.mh-nav__link {
  position: relative;
  padding: .5rem .875rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  letter-spacing: .01em;
}
.mh-nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 1px;
  transition: transform var(--transition);
}
.mh-nav__link:hover { color: var(--white); }
.mh-nav__link:hover::after { transform: translateX(-50%) scaleX(1); }

.mh-header.is-scrolled .mh-nav__link { color: var(--gray-700); }
.mh-header.is-scrolled .mh-nav__link:hover { color: var(--navy); }

.mh-nav__cta {
  padding: .625rem 1.5rem !important;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .8125rem;
  letter-spacing: .03em;
  transition: all var(--transition) !important;
  box-shadow: var(--shadow-glow-teal);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.mh-nav__cta svg { width: 15px; height: 15px; }
.mh-nav__cta::after { display: none !important; }
.mh-nav__cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(27,122,138,.45) !important;
}

/* Hamburger */
.mh-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  z-index: 1002;
}
.mh-hamburger:hover { background: rgba(255,255,255,.1); }
.mh-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.mh-header.is-scrolled .mh-hamburger span { background: var(--navy); }
.mh-header.is-scrolled .mh-hamburger:hover { background: var(--gray-100); }

/* Hamburger open state */
.mh-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mh-hamburger.is-active span:nth-child(2) { opacity: 0; }
.mh-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mh-hamburger.is-active span { background: var(--white) !important; }

/* ── 8. Mobile Menu Overlay ──────────────────────────────────── */
.mh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.mh-mobile-menu.is-open {
  pointer-events: all;
  visibility: visible;
}

.mh-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,26,51,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .4s ease;
}
.mh-mobile-menu.is-open .mh-mobile-menu__backdrop { opacity: 1; }

.mh-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(380px, 85vw);
  height: 100%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.mh-mobile-menu.is-open .mh-mobile-menu__panel {
  transform: translateX(0);
}

.mh-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.mh-mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), padding-left var(--transition);
  opacity: 0;
  transform: translateX(30px);
}
.mh-mobile-menu.is-open .mh-mobile-menu__link {
  opacity: 1;
  transform: translateX(0);
}
.mh-mobile-menu__link:hover {
  color: var(--white);
  padding-left: .75rem;
}

/* Stagger the links */
.mh-mobile-menu__link:nth-child(1) { transition-delay: .1s; }
.mh-mobile-menu__link:nth-child(2) { transition-delay: .15s; }
.mh-mobile-menu__link:nth-child(3) { transition-delay: .2s; }
.mh-mobile-menu__link:nth-child(4) { transition-delay: .25s; }

.mh-mobile-menu__footer {
  margin-top: auto;
  padding-top: 2rem;
}

.mh-mobile-menu__hours {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  margin-top: 1.25rem;
}
.mh-mobile-menu__hours svg { width: 16px; height: 16px; opacity: .5; }

/* ── 9. Mobile Sticky CTA (bottom bar) ──────────────────────── */
.mh-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: .75rem 1rem;
  padding-bottom: calc(.75rem + env(safe-area-inset-bottom, 0));
  background: rgba(7,26,51,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.mh-mobile-cta.is-visible {
  transform: translateY(0);
}

.mh-mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .875rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow-teal);
}
.mh-mobile-cta__btn svg { width: 18px; height: 18px; }

/* ── 10. Hero ────────────────────────────────────────────────── */
.mh-hero {
  position: relative;
  min-height: min(100vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.mh-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: .45;
  pointer-events: none;
}

.mh-hero__bg {
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(27,122,138,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(13,46,85,.9) 0%, transparent 70%),
    linear-gradient(135deg, #0B2545 0%, #0D2E55 50%, #102D52 100%);
  will-change: transform;
  z-index: 0;
}

/* Dot grid pattern */
.mh-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* Decorative circle */
.mh-hero__bg::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.08);
  pointer-events: none;
}

/* Animated rings */
.mh-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(27,122,138,.08);
  pointer-events: none;
  z-index: 2;
}
.mh-hero__ring--1 { width: 400px; height: 400px; top: -100px; right: -50px; }
.mh-hero__ring--2 { width: 700px; height: 700px; top: -250px; right: -250px; }
.mh-hero__ring--3 { width: 1000px; height: 1000px; top: -400px; right: -450px; border-color: rgba(27,122,138,.04); }

/* Tilt overlay for mouse tracking */
.mh-hero__tilt-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle 600px at var(--mx, 50%) var(--my, 50%), rgba(27,122,138,.08), transparent);
  transition: background .3s ease;
}

.mh-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--total-top) + 2rem) 2rem 3rem;
}

.mh-hero__content {
  max-width: 580px;
  will-change: transform;
}

.mh-hero__label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 1.75rem;
}
.mh-hero__label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.mh-hero__title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 40px rgba(0,0,0,.3);
  letter-spacing: -.02em;
}
.mh-hero__title span {
  color: var(--teal-light);
  display: inline-block;
}

.mh-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 480px;
  font-weight: 300;
}

.mh-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero image — circular portrait */
.mh-hero__photo-wrap {
  position: relative;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mh-hero__photo-frame {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  overflow: visible;
  background: transparent;
}

/* Outer glow ring */
.mh-hero__photo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,122,138,.25), rgba(201,168,76,.15));
  z-index: 0;
  filter: blur(20px);
  pointer-events: none;
}

.mh-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.35));
}

/* Decorative orbit rings around the photo */
.mh-hero__photo-orbit {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.15);
  pointer-events: none;
  z-index: 0;
}
.mh-hero__photo-orbit--2 {
  inset: -55px;
  border-color: rgba(27,122,138,.1);
}

/* Decorative badge */
.mh-hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.375rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: .875rem;
  z-index: 4;
  min-width: 180px;
  will-change: transform;
}

.mh-hero__badge-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--teal-pale), rgba(27,122,138,.15));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}
.mh-hero__badge-icon svg { width: 22px; height: 22px; }

.mh-hero__badge-num {
  font-size: 1.625rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1;
}
.mh-hero__badge-text {
  font-size: .725rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .01em;
}

/* Accent line — repositioned for circle */
.mh-hero__photo-accent {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  border-radius: 2px;
}

/* ── 11. Trust Bar ───────────────────────────────────────────── */
.mh-trust {
  background: var(--navy);
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
/* Subtle gold line at top */
.mh-trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
}

.mh-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.mh-trust__item {
  padding: 2.75rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
  transition: background var(--transition);
}
.mh-trust__item:last-child { border-right: none; }

.mh-trust__item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: transform var(--transition-slow);
}
.mh-trust__item:hover::before { transform: translateX(-50%) scaleX(1); }
.mh-trust__item:hover { background: rgba(255,255,255,.02); }

/* Glow behind number on count */
.mh-trust__num {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .625rem;
  position: relative;
  display: inline-block;
}
.mh-trust__num sup { font-size: 1.2rem; }

.mh-trust__num::after {
  content: '';
  position: absolute;
  inset: -8px -16px;
  background: radial-gradient(ellipse, var(--gold-pale), transparent 70%);
  opacity: 0;
  transition: opacity .6s ease;
  z-index: -1;
  border-radius: 50%;
}
.mh-trust__num.is-counted::after { opacity: 1; }

.mh-trust__label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  letter-spacing: .02em;
}

/* ── 12. About Section ──────────────────────────────────────── */
.mh-about {
  background: var(--surface);
  overflow: hidden;
}
.mh-about::before { display: none; }

.mh-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mh-about__img-wrap {
  position: relative;
  padding-bottom: 12%;
}

.mh-about__img-bg {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-pale), rgba(201,168,76,.08));
  z-index: 0;
  top: 5%;
  left: 5%;
}

.mh-about__img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.12));
  transition: transform .6s ease;
}
.mh-about__img:hover img {
  transform: scale(1.03);
}

/* Primary image — in flow, sets container height */
.mh-about__img--primary {
  position: relative;
  width: 80%;
  z-index: 1;
}

/* Secondary image — smaller, overlaps bottom-right */
.mh-about__img--secondary {
  position: absolute;
  width: 48%;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.mh-about__content { padding: 1rem 0; }

.mh-about__label { margin-bottom: 1rem; }

.mh-about__title {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}

.mh-about__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.mh-about__subtitle {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.mh-about__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.mh-about__list-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  position: relative;
  cursor: default;
}

.mh-about__check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: .1rem;
  box-shadow: 0 2px 6px rgba(27,122,138,.25);
}
.mh-about__check svg { width: 11px; height: 11px; }

.mh-about__list-item p {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.6;
}

/* Frosted glass tooltip */
.mh-about__tooltip {
  position: absolute;
  top: calc(100% + 12px);
  left: 2rem;
  right: -2rem;
  background: rgba(11,37,69,.85);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  line-height: 1.65;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 10;
}
.mh-about__tooltip::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 1.5rem;
  width: 12px;
  height: 12px;
  background: rgba(11,37,69,.85);
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.mh-about__list-item:hover .mh-about__tooltip {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mh-about__quote {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, var(--white), var(--off-white));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
  font-family: var(--font-serif);
  position: relative;
}
.mh-about__quote::before {
  content: '\201C';
  position: absolute;
  top: -.25rem;
  left: .75rem;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: .3;
  font-family: var(--font-serif);
  line-height: 1;
}

/* ── 13. Services Section ───────────────────────────────────── */
.mh-services {
  background: var(--off-white);
  position: relative;
}

.mh-services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(11,37,69,.02));
  pointer-events: none;
}

.mh-section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.mh-section-head .mh-label {
  justify-content: center;
  margin-bottom: 1rem;
}

.mh-section-head__title {
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  margin-bottom: 1rem;
}

.mh-section-head__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.mh-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.mh-service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.mh-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.mh-service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.mh-service-card:hover::before { transform: scaleX(1); }

.mh-service-card__icon {
  width: 60px;
  height: 60px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 1.5rem;
  transition: all var(--transition);
  position: relative;
}
.mh-service-card__icon svg { width: 28px; height: 28px; position: relative; z-index: 1; }

/* Persistent subtle pulse ring */
.mh-service-card__icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--teal-pale);
  opacity: 0;
  animation: mh-icon-pulse 3s ease-in-out infinite;
}

.mh-service-card:hover .mh-service-card__icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  box-shadow: var(--shadow-glow-teal);
  transform: scale(1.05);
}

.mh-service-card__title {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  color: var(--navy);
}

.mh-service-card__desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@keyframes mh-icon-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.15); }
}

/* ── 14. Why Choose Us (dark parallax) ──────────────────────── */
.mh-why {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 80px 0;
}
.mh-why::before { display: none; }

.mh-why__bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(27,122,138,.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(201,168,76,.06) 0%, transparent 50%),
    linear-gradient(135deg, #0B2545 0%, #0D2E55 100%);
  will-change: transform;
}

.mh-why__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

.mh-why__inner { position: relative; z-index: 2; }

.mh-why .mh-section-head__title { color: var(--white); }
.mh-why .mh-section-head__sub   { color: rgba(255,255,255,.5); }
.mh-why .mh-label::before { background: var(--gold-light); }

.mh-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mh-why-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md);
  padding: 2.75rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.mh-why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,122,138,.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.mh-why-card:hover::before { opacity: 1; }
.mh-why-card:hover {
  border-color: rgba(27,122,138,.25);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.mh-why-card__icon {
  width: 72px;
  height: 72px;
  background: rgba(27,122,138,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  margin: 0 auto 1.5rem;
  transition: all var(--transition);
  position: relative;
}
.mh-why-card__icon svg { width: 32px; height: 32px; }
.mh-why-card:hover .mh-why-card__icon {
  background: rgba(27,122,138,.2);
  box-shadow: 0 0 24px rgba(27,122,138,.2);
}

.mh-why-card__title {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: .875rem;
  position: relative;
}

.mh-why-card__desc {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  position: relative;
}

/* ── 15. Contact Section ────────────────────────────────────── */
.mh-contact {
  background: var(--surface);
}

.mh-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

.mh-contact__info { padding: 2rem 0; }

.mh-contact__label { margin-bottom: 1rem; }

.mh-contact__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.mh-contact__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.mh-contact__items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mh-contact__item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.mh-contact__item:hover { background: var(--white); }

.mh-contact__item-icon {
  width: 50px;
  height: 50px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
  transition: all var(--transition);
}
.mh-contact__item-icon svg { width: 22px; height: 22px; }
.mh-contact__item:hover .mh-contact__item-icon {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-teal);
}

.mh-contact__item-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .3rem;
}

.mh-contact__item-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}

.mh-contact__item-value a {
  color: var(--teal);
  transition: color var(--transition);
}
.mh-contact__item-value a:hover { color: var(--teal-light); }

.mh-contact__item-sub {
  font-size: .85rem;
  color: var(--text-muted);
  margin-top: .2rem;
}

/* Map container */
.mh-contact__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  height: 480px;
  position: relative;
  background: var(--navy);
}

.mh-contact__map-wrap #map {
  width: 100%;
  height: 100%;
}

/* Directions overlay on map */
.mh-contact__map-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1000;
  display: flex;
  gap: .75rem;
  align-items: center;
}

.mh-contact__directions-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.25rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: .85rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.mh-contact__directions-btn svg { width: 16px; height: 16px; color: var(--teal); }
.mh-contact__directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Fallback iframe map */
.mh-contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  height: 480px;
}
.mh-contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(.85) contrast(1.05);
}

/* ── 16. Footer ─────────────────────────────────────────────── */
.mh-footer {
  background: #060D17;
  padding: 3.5rem 0 1.5rem;
  position: relative;
}
.mh-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.15), transparent);
}

.mh-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 1.5rem;
}

.mh-footer__brand { max-width: 340px; }

.mh-footer__brand .mh-logo__name  { color: var(--white); }
.mh-footer__brand .mh-logo__title { color: rgba(255,255,255,.35); }
.mh-footer__brand .mh-logo        { margin-bottom: 1.25rem; }

.mh-footer__tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}

.mh-footer__col-title {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.mh-footer__links {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.mh-footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.4);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
}
.mh-footer__links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.mh-footer__hours-line {
  font-size: .875rem;
  color: rgba(255,255,255,.4);
}

.mh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.mh-footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}

.mh-footer__legal {
  display: flex;
  gap: 1.5rem;
}
.mh-footer__legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
  transition: color var(--transition);
}
.mh-footer__legal a:hover { color: rgba(255,255,255,.6); }

/* ── 17. Scroll-to-top ──────────────────────────────────────── */
.mh-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 997;
  opacity: 0;
  transform: translateY(12px) scale(.9);
  transition: all var(--transition);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.08);
}
.mh-scroll-top:hover {
  background: var(--teal);
  transform: translateY(-3px) scale(1);
  box-shadow: var(--shadow-glow-teal);
}
.mh-scroll-top svg { width: 18px; height: 18px; }

/* ── 18. Inner Pages ────────────────────────────────────────── */
.mh-page {
  padding-top: calc(var(--header-h) + 3rem);
}

.mh-page__container {
  max-width: 800px;
}

.mh-page__title {
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.mh-page__content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

/* ── 19. Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .mh-hero__inner {
    grid-template-columns: 1fr 360px;
    gap: 3rem;
  }
  .mh-hero__photo-frame { width: 360px; height: 360px; }
}

@media (max-width: 900px) {
  :root {
    --header-h: 68px;
    --action-bar-h: 0px;
  }

  .mh-action-bar { display: none; }
  .mh-hero__video { display: none; }
  .mh-header { top: 0; }
  .mh-mobile-cta { display: block; }

  .mh-nav__list { display: none; }
  .mh-hamburger { display: flex; }

  .mh-hero { min-height: auto; align-items: start; }
  .mh-hero__inner {
    grid-template-columns: 1fr;
    padding: 160px 2rem 2.5rem;
    gap: 2rem;
    align-items: start;
  }
  .mh-hero__label { display: none; }
  .mh-hero__content { padding-top: 100px !important; }
  .mh-hero__content { transform: none !important; translate: none !important; }
  .mh-hero__title { font-size: clamp(2rem, 7vw, 2.75rem); margin-bottom: 1rem; transform: none !important; translate: none !important; }
  .mh-hero__subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .mh-hero__content { max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
  .mh-hero__photo-wrap { margin: 0 auto; }
  .mh-hero__photo-frame { width: 280px; height: 280px; }
  .mh-hero__badge { left: -1rem; bottom: .5rem; }

  .mh-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .mh-about__grid  { grid-template-columns: 1fr; gap: 3rem; }
  .mh-about__img-wrap { max-width: 380px; margin: 0 auto; }
  .mh-services__grid { grid-template-columns: repeat(2, 1fr); }
  .mh-why__grid { grid-template-columns: 1fr 1fr; }
  .mh-contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mh-contact__map,
  .mh-contact__map-wrap  { height: 360px; }
  .mh-footer__top   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Frosted tooltip -> accordion on mobile */
  .mh-about__tooltip {
    position: relative;
    top: auto; left: auto; right: auto;
    margin-top: .75rem;
    margin-left: 2rem;
    display: none;
  }
  .mh-about__list-item.is-expanded .mh-about__tooltip {
    display: block;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 600px) {
  .mh-container { padding: 0 1.25rem; }
  .mh-section { padding: 50px 0; }
  .mh-why__grid { grid-template-columns: 1fr; }
  .mh-trust__inner { grid-template-columns: repeat(2, 1fr); }
  .mh-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .mh-hero__actions { flex-direction: column; }
  .mh-hero__actions .mh-btn { text-align: center; justify-content: center; }
  .mh-hero__title { font-size: clamp(2.25rem, 8vw, 3rem); }

  .mh-mobile-menu__link { font-size: 1.5rem; }
  .mh-mobile-menu__panel { width: 100%; padding: 5rem 2rem 3rem; }

  .mh-scroll-top { bottom: 5.5rem; right: 1rem; }
}

/* ── 19. Preloader ──────────────────────────────────────────── */
.mh-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.mh-preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mh-preloader__icon {
  width: 60px;
  height: 60px;
  color: var(--teal-light);
  animation: mh-preloader-pulse 1.2s ease-in-out infinite;
}

@keyframes mh-preloader-pulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.1); opacity: 1; }
}
