/*
Theme Name: Massage Home Theme
Theme URI: https://massage-home.de/
Author: Ruber Media
Description: Custom lightweight WordPress theme for Massage-home with Elementor-ready content area, responsive header, footer and Polylang language support.
Version: 1.1.11
Text Domain: massage-home-theme
*/

:root {
  --mh-turquoise: #17bdd4;
  --mh-turquoise-dark: #0795aa;
  --mh-gold: #d9a86c;
  --mh-blush: #fff3ec;
  --mh-ink: #153039;
  --mh-muted: #5e7076;
  --mh-line: #e3eef1;
  --mh-soft: #f4fbfc;
  --mh-white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--mh-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: #fff;
}
a { color: var(--mh-turquoise-dark); text-decoration: none; }
a:hover { color: var(--mh-ink); }
img { max-width: 100%; height: auto; }

.mh-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mh-topbar {
  background: linear-gradient(90deg, var(--mh-ink), #0c4a55);
  color: #fff;
  font-size: 13px;
}
.mh-topbar-inner {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
}
.mh-topbar-note {
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.mh-topbar-links {
  display: inline-flex;
  gap: 18px;
  align-items: center;
}
.mh-topbar a { color: #fff; opacity: .95; }

.mh-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mh-line);
  box-shadow: 0 14px 36px rgba(21,48,57,.06);
}
.mh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 22px;
}
.mh-brand {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 12px;
  min-width: 230px;
  padding: 8px 0;
}
.mh-brand .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.mh-brand img,
.mh-brand .custom-logo,
.mh-brand .custom-logo-link img {
  width: 190px !important;
  height: auto !important;
  max-width: 190px !important;
  max-height: 62px !important;
  object-fit: contain;
}
.mh-brand-text {
  font-family: Georgia, serif;
  color: var(--mh-turquoise-dark);
  font-size: 26px;
  letter-spacing: .04em;
}
.mh-brand-sub {
  width: 100%;
  margin-left: 2px;
  color: var(--mh-muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mh-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mh-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.mh-menu li { position: relative; }
.mh-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--mh-ink);
  font-weight: 760;
  font-size: 14px;
  white-space: nowrap;
}
.mh-menu a:hover,
.mh-menu .current-menu-item > a {
  color: var(--mh-turquoise-dark);
  background: linear-gradient(180deg, #fff, var(--mh-soft));
  box-shadow: inset 0 0 0 1px rgba(23,189,212,.12);
}
.mh-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--mh-line);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(21,48,57,.12);
}
.mh-menu li:hover > .sub-menu { display: block; }
.mh-menu .sub-menu a {
  width: 100%;
  justify-content: flex-start;
  border-radius: 10px;
}

.mh-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--mh-turquoise), var(--mh-turquoise-dark));
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(23,189,212,.28);
}
.mh-header-cta:hover { color: #fff; filter: brightness(.96); }

.mh-language { display: inline-flex; align-items: center; }
.mh-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--mh-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(21,48,57,.06);
}
.mh-lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--mh-muted);
  font-size: 12px;
  font-weight: 900;
}
.mh-lang-switch a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--mh-ink), var(--mh-turquoise-dark));
}
.mh-flag {
  display: inline-grid;
  width: 18px;
  height: 18px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(21,48,57,.12);
}
.mh-flag-de {
  background: linear-gradient(180deg, #111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66% 100%);
}
.mh-flag-en {
  position: relative;
  background:
    linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(180deg, transparent 38%, #fff 38% 62%, transparent 62%),
    #123a7a;
}
.mh-flag-en::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(180deg, transparent 43%, #c8102e 43% 57%, transparent 57%);
}

.mh-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--mh-soft);
  color: var(--mh-ink);
}
.mh-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mh-main {
  min-height: 58vh;
}
.mh-page-shell {
  padding: 64px 0;
}
.mh-page-title {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.mh-designed-page {
  background: #fff;
}
.mh-fallback-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  background:
    radial-gradient(circle at 88% 18%, rgba(217,168,108,.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(23,189,212,.16), transparent 30%),
    linear-gradient(120deg, rgba(244,251,252,.98) 0%, rgba(255,255,255,1) 56%);
}
.mh-fallback-hero::before,
.mh-import-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(23,189,212,.16);
  border-radius: 8px;
}
.mh-fallback-hero::after,
.mh-import-hero::after {
  content: "";
  position: absolute;
  right: min(9vw, 120px);
  bottom: -120px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(217,168,108,.12);
}
.mh-fallback-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 54px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mh-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--mh-turquoise-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mh-fallback-hero h1 {
  margin: 0 0 22px;
  color: var(--mh-ink);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
}
.mh-fallback-hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--mh-muted);
  font-size: 19px;
}
.mh-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}
.mh-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(23,189,212,.2);
  border-radius: 999px;
  color: #23464f;
  background: rgba(255,255,255,.7);
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(21,48,57,.05);
}
.mh-button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mh-button-primary,
.mh-button-secondary,
.mh-button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 850;
}
.mh-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--mh-turquoise), var(--mh-turquoise-dark));
  box-shadow: 0 16px 34px rgba(23,189,212,.25);
}
.mh-button-secondary {
  color: var(--mh-ink);
  background: #fff;
  border: 1px solid var(--mh-line);
}
.mh-button-light {
  color: var(--mh-ink);
  background: #fff;
}
.mh-button-primary:hover {
  color: #fff;
  filter: brightness(.96);
}
.mh-button-light:hover {
  color: var(--mh-ink);
  filter: brightness(.96);
}
.mh-button-secondary:hover {
  color: var(--mh-turquoise-dark);
}
.mh-fallback-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(21,48,57,.16);
}
.mh-fallback-hero-media {
  position: relative;
}
.mh-mobile-wa-band {
  display: none;
}
.mh-highlight-band {
  padding: 42px 0;
  background:
    linear-gradient(135deg, rgba(21,48,57,1), rgba(9,79,91,1)),
    var(--mh-ink);
}
.mh-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mh-highlight-grid article {
  position: relative;
  min-height: 176px;
  padding: 28px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .22s ease, background .22s ease;
}
.mh-highlight-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(217,168,108,.18);
}
.mh-highlight-grid article:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.12);
}
.mh-highlight-grid span {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--mh-gold);
}
.mh-highlight-grid h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
}
.mh-highlight-grid p {
  margin: 0;
  color: rgba(255,255,255,.8);
}
.mh-fallback-content {
  padding: 78px 0;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
}
.mh-home-section {
  padding: 78px 0;
}
.mh-visual-story {
  background:
    linear-gradient(180deg, #fff, #f7fbfc);
}
.mh-visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}
.mh-visual-pair,
.mh-page-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.mh-visual-pair figure,
.mh-page-visual-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(21,48,57,.12);
}
.mh-visual-pair img,
.mh-page-visual-grid img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.mh-visual-pair figure:nth-child(2) {
  transform: translateY(34px);
}
.mh-page-visual-strip {
  padding: 40px 0 10px;
  background: linear-gradient(180deg, #fff, #f7fbfc);
}
.mh-page-visual-grid img {
  height: 300px;
}
.mh-page-visual-grid figure:first-child img {
  height: 340px;
}
.mh-city-service-signature {
  padding: 34px 0 16px;
  background: linear-gradient(180deg, #f7fbfc, #fff);
}
.mh-signature-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(23,189,212,.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 4% 12%, rgba(23,189,212,.14), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(244,251,252,.92));
  box-shadow: 0 22px 56px rgba(21,48,57,.09);
}
.mh-signature-panel span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--mh-turquoise-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mh-signature-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}
.mh-signature-panel p {
  margin: 0;
  color: var(--mh-muted);
}
.mh-signature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.mh-signature-points article {
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(227,238,241,.92);
}
.mh-signature-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--mh-ink);
  font-size: 17px;
}
.mh-contact-rich {
  padding: 42px 0 18px;
  background:
    radial-gradient(circle at 86% 0%, rgba(217,168,108,.18), transparent 28%),
    linear-gradient(180deg, #fff, #f7fbfc);
}
.mh-contact-rich-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 22px;
  align-items: stretch;
}
.mh-contact-panel,
.mh-contact-details,
.mh-contact-form-shell {
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(21,48,57,.08);
}
.mh-contact-panel {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 320px;
  padding: 36px;
  color: #fff;
  background: linear-gradient(135deg, rgba(21,48,57,.94), rgba(7,149,170,.82));
  overflow: hidden;
}
.mh-contact-panel::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
.mh-contact-panel span,
.mh-contact-panel h2,
.mh-contact-panel p,
.mh-contact-actions {
  position: relative;
  z-index: 1;
}
.mh-contact-panel span {
  margin-bottom: 12px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mh-contact-panel h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}
.mh-contact-panel p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}
.mh-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.mh-contact-actions .mh-button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}
.mh-contact-details {
  display: grid;
  gap: 12px;
  padding: 24px;
}
.mh-contact-details article {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbfc, #fff);
  border: 1px solid rgba(227,238,241,.9);
}
.mh-contact-details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mh-ink);
  font-size: 17px;
}
.mh-contact-details p,
.mh-contact-form-shell p {
  margin: 0;
  color: var(--mh-muted);
}
.mh-contact-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mh-contact-areas span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--mh-ink);
  font-size: 13px;
  font-weight: 800;
  background: rgba(23,189,212,.1);
}
.mh-contact-form-shell {
  grid-column: 1 / -1;
  padding: 26px;
  background:
    radial-gradient(circle at 92% 18%, rgba(23,189,212,.12), transparent 24%),
    linear-gradient(120deg, #fff, #fff7f1);
}
.mh-contact-form-shell h3 {
  margin: 0 0 8px;
  font-size: 24px;
}
.mh-home-services {
  background: #fff;
}
.mh-home-cities {
  background:
    radial-gradient(circle at 16% 20%, rgba(23,189,212,.12), transparent 24%),
    linear-gradient(180deg, #f7fbfc, #fff);
}
.mh-home-gallery {
  background:
    linear-gradient(180deg, #fff, #f9fcfd 58%, #fff),
    radial-gradient(circle at 86% 12%, rgba(217,168,108,.18), transparent 26%);
}
.mh-section-head {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: 34px;
}
.mh-section-head span {
  color: var(--mh-turquoise-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mh-section-head h2 {
  margin: 0;
  color: var(--mh-ink);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
}
.mh-section-head p {
  margin: 0;
  color: var(--mh-muted);
  font-size: 18px;
}
.mh-service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mh-service-card {
  position: relative;
  min-height: 320px;
  padding: 18px 18px 26px;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  color: var(--mh-ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(244,251,252,.82));
  box-shadow: 0 16px 40px rgba(21,48,57,.07);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.mh-service-thumb {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mh-soft);
}
.mh-service-thumb img {
  display: block;
  width: 100%;
  height: 156px;
  object-fit: cover;
  transition: transform .35s ease;
}
.mh-service-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(23,189,212,.12);
}
.mh-service-card .mh-card-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--mh-turquoise-dark);
  background: linear-gradient(135deg, rgba(23,189,212,.14), rgba(217,168,108,.18));
  box-shadow: inset 0 0 0 1px rgba(23,189,212,.16);
}
.mh-card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mh-service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--mh-ink);
  font-size: 23px;
  line-height: 1.16;
}
.mh-service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--mh-muted);
}
.mh-service-card:hover {
  transform: translateY(-5px);
  color: var(--mh-ink);
  border-color: rgba(23,189,212,.28);
  box-shadow: 0 24px 54px rgba(21,48,57,.12);
}
.mh-service-card:hover .mh-service-thumb img {
  transform: scale(1.04);
}
.mh-city-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.mh-city-card {
  display: grid;
  gap: 8px;
  min-height: 184px;
  padding: 22px;
  align-content: end;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(21,48,57,.92), rgba(7,149,170,.82));
  box-shadow: 0 18px 42px rgba(21,48,57,.14);
  overflow: hidden;
  position: relative;
}
.mh-city-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.02);
}
.mh-city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(21,48,57,.18), rgba(21,48,57,.86)),
    linear-gradient(120deg, rgba(7,149,170,.42), rgba(217,168,108,.18));
}
.mh-city-card strong,
.mh-city-card small {
  position: relative;
  z-index: 2;
}
.mh-city-card strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.15;
}
.mh-city-card small {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.mh-city-card:hover {
  color: #fff;
  filter: brightness(1.05);
  transform: translateY(-3px);
}
.mh-city-card:hover img {
  transform: scale(1.08);
}
.mh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mh-gallery-grid article {
  overflow: hidden;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(21,48,57,.09);
}
.mh-gallery-grid figure {
  margin: 0;
  overflow: hidden;
}
.mh-gallery-grid img {
  display: block;
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform .35s ease;
}
.mh-gallery-grid article:hover img {
  transform: scale(1.04);
}
.mh-gallery-grid div {
  padding: 22px;
}
.mh-gallery-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}
.mh-gallery-grid p {
  margin: 0;
  color: var(--mh-muted);
}
.mh-process-section {
  background: #fff;
}
.mh-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mh-process-grid article {
  position: relative;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--mh-line);
  background: linear-gradient(180deg, #fff, #f7fbfc);
  box-shadow: 0 16px 38px rgba(21,48,57,.07);
}
.mh-process-grid strong {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--mh-gold);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
}
.mh-process-grid h3 {
  margin: 0 0 10px;
  color: var(--mh-ink);
  font-size: 24px;
}
.mh-process-grid p {
  margin: 0;
  color: var(--mh-muted);
}
.mh-fallback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.mh-content-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,.96)),
    var(--mh-white);
  box-shadow: 0 12px 34px rgba(21,48,57,.06);
  overflow: hidden;
}
.mh-content-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 4px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mh-turquoise), var(--mh-gold));
}
.mh-content-card-wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(120deg, rgba(244,251,252,.98), rgba(255,243,236,.92));
}
.mh-content-card h2 {
  margin: 0 0 16px;
  color: var(--mh-ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
}
.mh-content-card p {
  color: #314950;
}
.mh-content-card p:last-child {
  margin-bottom: 0;
}
.mh-fallback-cta {
  padding: 70px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(217,168,108,.24), transparent 26%),
    linear-gradient(135deg, var(--mh-ink), #0b5965);
}
.mh-fallback-cta h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
}
.mh-fallback-cta p {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
}

.mh-import-hero h1,
.elementor .mh-import-hero h1 {
  color: var(--mh-ink);
  font-size: clamp(40px, 6vw, 74px);
  line-height: 1.04;
  margin-bottom: 18px;
}
.mh-import-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(217,168,108,.22), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(23,189,212,.16), transparent 30%),
    linear-gradient(120deg, rgba(244,251,252,.98) 0%, rgba(255,255,255,1) 56%) !important;
}
.mh-import-hero .elementor-container,
.mh-import-hero .e-con-inner {
  position: relative;
  z-index: 1;
}
.mh-import-hero .elementor-widget-text-editor {
  color: var(--mh-muted);
  font-size: 18px;
  max-width: 690px;
}
.mh-import-hero img {
  border-radius: 8px;
  box-shadow: 0 24px 58px rgba(21,48,57,.16);
}
.mh-home-slider {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(21,48,57,.2);
  background: var(--mh-soft);
}
.mh-home-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .7s ease, transform 1.2s ease;
}
.mh-home-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.mh-home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.mh-slider-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 8px;
  color: #fff;
  background: rgba(21,48,57,.68);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.2);
}
.mh-slider-card strong {
  font-size: 18px;
}
.mh-slider-card span {
  font-size: 13px;
  opacity: .88;
}
.mh-import-highlight-wrap {
  background: transparent;
}
.mh-import-highlight-wrap .mh-highlight-band {
  margin: 0;
}
.mh-import-content-card {
  background: #f7fbfc;
}
.mh-import-content-card > .elementor-container,
.mh-import-content-card > .e-con-inner {
  padding: 34px;
  border: 1px solid var(--mh-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(21,48,57,.06);
}
.mh-import-feature-card > .elementor-container,
.mh-import-feature-card > .e-con-inner {
  background: linear-gradient(120deg, rgba(244,251,252,.98), rgba(255,243,236,.92));
}
.mh-import-content h2,
.elementor .mh-import-content h2 {
  color: var(--mh-ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}
.mh-import-content .elementor-widget-text-editor {
  color: #314950;
  font-size: 17px;
}
.mh-import-content ul {
  padding-left: 22px;
}
.mh-import-content li + li {
  margin-top: 7px;
}
.mh-import-cta,
.mh-import-cta h2,
.mh-import-cta .elementor-widget-text-editor {
  color: #fff;
}
.mh-import-cta .elementor-widget-text-editor {
  opacity: .9;
  max-width: 760px;
}

.mh-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(217,168,108,.18), transparent 28%),
    radial-gradient(circle at 8% 96%, rgba(23,189,212,.16), transparent 26%),
    linear-gradient(135deg, #153039 0%, #0c414b 58%, #12313a 100%);
  color: rgba(255,255,255,.86);
  margin-top: 72px;
}
.mh-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 34px 34px;
}
.mh-footer::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  pointer-events: none;
  border: 34px solid rgba(23,189,212,.12);
  border-radius: 50%;
}
.mh-footer a { color: #fff; }
.mh-footer-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 44px 0 8px;
}
.mh-footer-cta span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--mh-gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mh-footer-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}
.mh-footer-cta p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,.78);
}
.mh-footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr .72fr .72fr .72fr;
  gap: 34px;
  padding: 46px 0 56px;
}
.mh-footer-about p {
  max-width: 520px;
}
.mh-footer-brand {
  display: inline-flex;
  margin-bottom: 18px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 30px;
  letter-spacing: .02em;
}
.mh-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 18px;
}
.mh-footer-contact a,
.mh-footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  font-size: 13px;
  font-weight: 800;
}
.mh-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mh-footer-badges span {
  color: rgba(255,255,255,.78);
  background: rgba(23,189,212,.1);
}
.mh-footer h3 {
  color: #fff;
  margin: 0 0 16px;
  font-size: 17px;
}
.mh-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mh-footer li + li { margin-top: 9px; }
.mh-footer li a {
  opacity: .84;
  transition: opacity .18s ease, color .18s ease;
}
.mh-footer li a:hover {
  opacity: 1;
  color: #fff;
}
.mh-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.mh-floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0,0,0,.22);
}
.mh-floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .mh-topbar .mh-container { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .mh-topbar-inner { justify-content: center; gap: 8px; }
  .mh-topbar-note { display: none; }
  .mh-topbar-links { flex-wrap: wrap; justify-content: center; gap: 10px 14px; }
  .mh-header-inner { min-height: 72px; }
  .mh-brand { min-width: 0; }
  .mh-brand img,
  .mh-brand .custom-logo,
  .mh-brand .custom-logo-link img {
    width: 150px !important;
    max-width: 150px !important;
    max-height: 56px !important;
  }
  .mh-brand-sub { display: none; }
  .mh-menu-toggle { display: block; }
  .mh-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 24px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--mh-line);
    box-shadow: 0 18px 44px rgba(21,48,57,.12);
  }
  body.mh-menu-open .mh-nav { display: flex; }
  .mh-menu {
    flex-direction: column;
    align-items: stretch;
  }
  .mh-menu a { width: 100%; justify-content: center; }
  .mh-menu .sub-menu {
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
  }
  .mh-header-cta { width: 100%; }
  .mh-footer-main { grid-template-columns: 1fr; }
  .mh-footer-cta {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }
  .mh-footer-cta .mh-button-light {
    width: 100%;
    justify-content: center;
  }
  .mh-home-slider { min-height: 320px; }
  .mh-fallback-hero { padding: 46px 0 38px; }
  .mh-fallback-hero::before,
  .mh-import-hero::before {
    inset: 10px;
  }
  .mh-fallback-hero-grid,
  .mh-highlight-grid,
  .mh-visual-story-grid,
  .mh-visual-pair,
  .mh-page-visual-grid,
  .mh-fallback-grid,
  .mh-service-card-grid,
  .mh-city-card-grid,
  .mh-process-grid {
    grid-template-columns: 1fr;
  }
  .mh-signature-panel,
  .mh-signature-points,
  .mh-contact-rich-grid {
    grid-template-columns: 1fr;
  }
  .mh-contact-panel,
  .mh-contact-details,
  .mh-contact-form-shell {
    padding: 22px;
  }
  .mh-fallback-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 9.5vw, 44px);
  }
  .mh-fallback-hero p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.6;
  }
  .mh-content-card-wide {
    grid-column: auto;
  }
  .mh-content-card {
    padding: 24px;
  }
  .mh-home-section {
    padding: 52px 0;
  }
  .mh-visual-pair img,
  .mh-page-visual-grid img {
    height: 230px;
  }
  .mh-page-visual-grid figure:first-child img {
    height: 250px;
  }
  .mh-visual-pair figure:nth-child(2) {
    transform: none;
  }
  .mh-page-visual-strip {
    padding: 26px 0 0;
  }
  .mh-service-card {
    min-height: auto;
    padding: 16px 16px 24px;
  }
  .mh-service-thumb img {
    height: 190px;
  }
  .mh-city-card {
    min-height: 148px;
  }
  .mh-gallery-grid {
    grid-template-columns: 1fr;
  }
  .mh-gallery-grid img {
    height: 220px;
  }
  .mh-slider-card {
    left: 14px;
    bottom: 14px;
    min-width: 180px;
  }
  .mh-hero-pills {
    gap: 7px;
    margin-bottom: 18px;
  }
  .mh-button-primary,
  .mh-button-secondary,
  .mh-button-light {
    min-height: 46px;
    padding: 0 18px;
  }
  .mh-mobile-wa-band {
    display: block;
    padding: 0 0 26px;
    background: linear-gradient(180deg, #fff, #f7fbfc);
  }
  .mh-mobile-wa-band .mh-container {
    width: min(100% - 28px, 420px);
  }
  .mh-mobile-wa-band a {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    min-height: 66px;
    padding: 10px 16px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 18px 40px rgba(18,140,126,.26);
  }
  .mh-mobile-wa-band strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.1;
  }
  .mh-mobile-wa-band small {
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 700;
  }
  .mh-wa-icon {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
  }
  .mh-wa-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}
