/* ═══════════════════════════════════════════════════════════════════
   Mountain Tree Landing — Styles
   Nur aktiv auf der Landing-Page (body.page-template-template-landing)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --mt-bg:        #111314;
  --mt-bg-soft:   #1a1d1f;
  --mt-text:      #f5f5f4;
  --mt-muted:     #a8a8a5;
  --mt-brand:     #009639;
  --mt-brand-2:   #00b94a;

  --mt-font-display: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --mt-font-body:    "Inter",       ui-sans-serif, system-ui, sans-serif;

  --mt-step-0: clamp(0.9375rem, 0.88rem + 0.28vw, 1.0625rem);
  --mt-step-1: clamp(1.0625rem, 0.95rem + 0.56vw, 1.3125rem);
  --mt-step-2: clamp(1.25rem, 1.0rem + 1.25vw, 1.75rem);
  --mt-step-h2: clamp(1.75rem, 1.2rem + 2.5vw, 3rem);
  --mt-step-h1: clamp(2.5rem, 1.5rem + 5vw, 5.5rem);
}

/* WPML language menu: centered, stable hover target, all active languages visible */
html body .mt-mh__lang {
    position: relative !important;
}

html body .mt-mh__lang::after {
    content: "";
    position: absolute;
    left: -18px !important;
    right: -18px !important;
    top: 100% !important;
    height: 20px !important;
}

html body .mt-mh__lang-menu {
    left: 50% !important;
    right: auto !important;
    top: calc(100% + 2px) !important;
    min-width: 118px !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 3px !important;
    transform: translate(-50%, -4px) !important;
}

html body .mt-mh__lang:hover .mt-mh__lang-menu,
html body .mt-mh__lang:focus-within .mt-mh__lang-menu,
html body .mt-mh__lang.is-open .mt-mh__lang-menu {
    transform: translate(-50%, 0) !important;
}

html body .mt-mh__lang-menu a {
    min-height: 30px !important;
    padding: 7px 6px !important;
}

/* Landing-only Reset — Enfold hat eigene body-styles, wir überschreiben nur unsere Container */
body.page-template-template-landing {
  /* Matched exakt mit dem Overlay-Bottom rgba(10,12,13,~0.94) auf schwarz-BG:
     Verhindert sichtbaren "dunklen Streifen" unter Hero bei iOS (100lvh-Bug) */
  background: #0a0c0d;
  color: var(--mt-text);
  font-family: var(--mt-font-body);
  font-size: var(--mt-step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Enfold-Header ausblenden auf Landing — wir haben eigenen Logo im Hero */
body.page-template-template-landing #header,
body.page-template-template-landing #top .title_container,
body.page-template-template-landing #main > .container_wrap:first-child { /* falls Breadcrumbs */
  display: none !important;
}

/* Enfold wrapt Pages in .container_wrap + .container — wir wollen full-bleed */
body.page-template-template-landing #main {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
body.page-template-template-landing #main .container_wrap {
  padding: 0 !important;
}
body.page-template-template-landing #main .container_wrap .container,
body.page-template-template-landing #main .entry-content-wrapper {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Enfold-Standard-Footer + Scroll-Top-Button auf Landing ausblenden
   (wir haben unseren eigenen Footer + Scroll-Indicator) */
body.page-template-template-landing #footer,
body.page-template-template-landing #socket,
body.page-template-template-landing #scroll-top-link {
  display: none !important;
}

.mt-landing {
  background: var(--mt-bg);
}

/* ══════════════════════════════════════════════════════════════════
   MINIMAL NAV — schmal, nur wenn's gebraucht wird
   ══════════════════════════════════════════════════════════════════ */
.mt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 6px 0;
  background: rgba(10, 12, 13, 0.72);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), opacity 0.25s ease;
}
/* Dynamischer Admin-Bar-Offset via CSS-Var (von landing.js gesetzt) */
body.admin-bar .mt-nav { top: var(--mt-adminbar-h, 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .mt-nav { top: var(--mt-adminbar-h, 46px); }
}
.mt-nav.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mt-nav__inner {
  width: min(94%, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mt-nav__brand {
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  line-height: 0;
}
.mt-nav__brand img {
  height: 26px;
  width: auto;
  display: block;
}
.mt-nav__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.mt-nav__link {
  color: rgba(245,245,244,0.8);
  text-decoration: none;
  font-family: var(--mt-font-display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.mt-nav__link:hover { color: var(--mt-brand-2); }
.mt-nav__login {
  color: var(--mt-text);
  background: transparent;
  border: 1px solid rgba(0,185,74,0.5);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--mt-font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.mt-nav__login:hover {
  background: var(--mt-brand);
  border-color: var(--mt-brand);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   ══════════════════════════════════════════════════════════════════ */
.mt-hero {
  position: relative;         /* stacking + positioning context für scroll-indicator */
  min-height: 100vh;                          /* Fallback für alte Browser */
  min-height: -webkit-fill-available;         /* iOS Safari Legacy */
  min-height: 100lvh;                         /* Modern: Large viewport — füllt auch hinter iOS-Bars */
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--mt-text);
  contain: layout style;
}
/* WP-Admin-Bar (nur für eingeloggte User) reduziert verfügbare Höhe um 32px
   (bzw. 46px auf Mobile). Ohne diesen Fix ragt .mt-hero unter den Viewport. */
body.admin-bar .mt-hero {
  min-height: calc(100vh - 32px);
  min-height: calc(100lvh - 32px);
}
@media screen and (max-width: 782px) {
  body.admin-bar .mt-hero {
    min-height: calc(100vh - 46px);
    min-height: calc(100lvh - 46px);
  }
}

.mt-hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.mt-hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;  /* Desktop: leicht nach oben */
  display: block;
  transform: scale(1.02);
}
/* Mobile: Portrait-Viewport zeigt nur vertikalen Streifen → rechts-weighted damit
   Koi-Gesichter sichtbar bleiben statt nur Kiesboden-Mitte */
@media (max-width: 768px) {
  .mt-hero__video {
    object-position: 68% center;
  }
}
/* Dark + grüner Color-Grade via Overlay statt Re-Encode — bleibt tweakbar */
.mt-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,13,0.82) 0%, rgba(10,12,13,0.72) 45%, rgba(10,12,13,0.94) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(0,150,57,0.14) 0%, transparent 60%);
  z-index: 1;
}
/* Vignette für Fokus */
.mt-hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  pointer-events: none;
}

.mt-hero__inner {
  position: relative;
  z-index: 3;
  width: min(92%, 1200px);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 56px) 0;
  display: grid;
  gap: clamp(18px, 2.5vw, 40px);
  text-align: center;
  /* Auf Mobile Content in der Mitte statt mit Top/Bottom-Padding asymmetrisch */
  align-self: center;
  justify-self: center;
}

/* Logo — Original-PNG aus EPS-Brand-Guide, tight-cropped.
   margin-bottom kompensiert den Whitespace der durch Tight-Crop weg ist —
   so bleibt optischer Atemraum zur Headline. */
.mt-hero__logo {
  justify-self: center;
  display: inline-block;
  text-decoration: none;
  width: clamp(160px, 20vw, 240px);
  margin-bottom: clamp(16px, 3vw, 40px);
  opacity: 0;
  transform: translateY(-10px);
  animation: mt-fade-down 4.5s cubic-bezier(.19,1,.22,1) 0.3s forwards;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
}
.mt-hero__logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Headline */
.mt-hero__headline {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-h1);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--mt-text);
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.mt-hero__headline-line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: mt-fade-up 4.5s cubic-bezier(.19,1,.22,1) forwards;
}
.mt-hero__headline-line:nth-child(1) { animation-delay: 1.1s; }
.mt-hero__headline-line:nth-child(2) { animation-delay: 2.0s; color: var(--mt-brand-2); }

/* Sub */
.mt-hero__sub {
  font-size: var(--mt-step-1);
  color: var(--mt-muted);
  max-width: 60ch;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  animation: mt-fade-up 4.5s cubic-bezier(.19,1,.22,1) 3.0s forwards;
  text-wrap: balance;
}

/* CTAs */
.mt-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  animation: mt-fade-up 4.5s cubic-bezier(.19,1,.22,1) 4.0s forwards;
}
.mt-btn {
  --pad-y: 14px;
  --pad-x: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-family: var(--mt-font-display);
  font-weight: 600;
  font-size: var(--mt-step-0);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.mt-btn:hover { transform: translateY(-1px); }
.mt-btn:active { transform: translateY(0); }
.mt-btn__arrow {
  width: 16px; height: 16px;
  transition: transform 0.25s cubic-bezier(.3,.7,.3,1);
}
.mt-btn:hover .mt-btn__arrow { transform: translateX(3px); }

.mt-btn--primary {
  background: var(--mt-brand);
  color: var(--mt-text);
  box-shadow: 0 10px 40px -12px rgba(0,150,57,0.6);
}
.mt-btn--primary:hover {
  background: var(--mt-brand-2);
  box-shadow: 0 14px 46px -10px rgba(0,185,74,0.7);
}
.mt-btn--ghost {
  background: transparent;
  color: var(--mt-text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}
.mt-btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.55);
}

/* Scroll-Indicator — direktes Kind von .mt-hero, bottom-fixed.
   Zentrierung über left+right 0 statt translateX (robuster bei contain) */
.mt-hero__scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(24px, 4vh, 48px);
  /* iOS: über der Safari-Toolbar dank safe-area-inset */
  bottom: calc(env(safe-area-inset-bottom, 0px) + clamp(24px, 4vh, 48px));
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 245, 244, 0.75);
  opacity: 0;
  animation: mt-fade-up 4.0s 5.0s cubic-bezier(.19,1,.22,1) forwards;
  /* Klickbar, nicht mehr pointer-events:none */
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease;
}
.mt-hero__scroll:hover {
  color: var(--mt-text);
}
.mt-hero__scroll:hover .mt-hero__scroll-arrow {
  transform: translateY(3px);
}
.mt-hero__scroll-arrow {
  transition: transform 0.25s cubic-bezier(.2,.7,.3,1);
}
.mt-hero__scroll-label {
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.mt-hero__scroll-arrow {
  width: 14px;
  height: 22px;
  color: var(--mt-brand-2);
  animation: mt-scroll-pulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(0,150,57,0.45));
}

/* ══════════════════════════════════════════════════════════════════
   Shared layout tokens
   ══════════════════════════════════════════════════════════════════ */
.mt-container {
  width: min(92%, 1200px);
  margin: 0 auto;
}
.mt-eyebrow {
  font-family: var(--mt-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mt-brand-2);
  margin: 0 0 16px;
}

/* Scroll-Reveal: Elemente mit data-reveal starten unsichtbar, fahren hoch */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  animation: mt-reveal-in 1.6s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes mt-reveal-in {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 2 — Beratung · Planung · Realisierung
   ══════════════════════════════════════════════════════════════════ */
.mt-pillars {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--mt-bg);
  color: var(--mt-text);
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.mt-pillars__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.mt-pillars__title {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-h2);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--mt-text);
}
.mt-pillars__title span {
  display: inline-block;
  margin: 0 0.1em;
}
.mt-pillars__title span:nth-child(2) { color: var(--mt-brand-2); }

.mt-pillars__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.mt-pillar {
  text-align: center;
  padding: 20px;
}

.mt-pillar__icon {
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  margin: 0 auto 28px;
  color: var(--mt-brand-2);
  display: grid;
  place-items: center;
  position: relative;
}
.mt-pillar__icon::after {
  content: '';
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(0,185,74,0.16) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.mt-pillar__icon svg { width: 100%; height: 100%; }
.mt-pillar__icon .mt-draw,
.mt-pillar__icon .mt-draw-highlight {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.8s cubic-bezier(.19,1,.22,1);
}
.mt-pillar__icon .mt-draw-fill {
  opacity: 0;
  transition: opacity 0.9s ease-out 1.3s;
}
.mt-pillar.is-visible .mt-pillar__icon .mt-draw,
.mt-pillar.is-visible .mt-pillar__icon .mt-draw-highlight { stroke-dashoffset: 0; }
.mt-pillar.is-visible .mt-pillar__icon .mt-draw-fill { opacity: 1; }

.mt-pillar__head {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-2);
  margin: 0 0 14px;
  color: var(--mt-text);
  letter-spacing: -0.01em;
}

.mt-pillar__text {
  font-size: var(--mt-step-1);
  color: var(--mt-muted);
  line-height: 1.7;
  max-width: 34ch;
  margin: 0 auto;
  text-wrap: pretty;
}

/* Staggered reveal delays innerhalb der Pillars */
.mt-pillar:nth-child(1) { transition-delay: 0s; }
.mt-pillar:nth-child(2) { transition-delay: 0.25s; }
.mt-pillar:nth-child(3) { transition-delay: 0.5s; }

/* Shared section utilities */
.mt-section-title {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-h2);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--mt-text);
  text-wrap: balance;
}
.mt-section-sub {
  font-size: var(--mt-step-1);
  color: var(--mt-muted);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
  text-wrap: pretty;
}
.mt-eyebrow--on-dark { color: var(--mt-brand-2); }

/* ══════════════════════════════════════════════════════════════════
   SECTION 3 — Produkt-Welten
   ══════════════════════════════════════════════════════════════════ */
.mt-worlds {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--mt-bg-soft);
  color: var(--mt-text);
}
.mt-worlds__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.mt-worlds__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.5vw, 32px);
}
.mt-world {
  border-radius: 16px;
  overflow: hidden;
  background: var(--mt-bg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s cubic-bezier(.19,1,.22,1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
}
.mt-world:hover {
  transform: translateY(-4px);
  border-color: rgba(0,185,74,0.25);
  box-shadow: 0 20px 60px -20px rgba(0,150,57,0.2);
}
.mt-world__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.mt-world__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.mt-world__image {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #0f1112;
  transition: transform 0.8s cubic-bezier(.19,1,.22,1), filter 0.5s ease;
  filter: saturate(0.92) contrast(1.05) brightness(0.9);
}
.mt-world:hover .mt-world__image {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08) brightness(1);
}
.mt-world__image--aquarium { background-image: url('world-aquarium.jpg'); }
.mt-world__image--marine   { background-image: url('world-marine.jpg'); }
.mt-world__image--pond     { background-image: url('world-pond.jpg'); }
/* Dark Vignette am Bottom für Text-Lesbarkeit wenn Titel drüber käme */
.mt-world__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,12,13,0.65) 100%);
  pointer-events: none;
  z-index: 1;
}
.mt-world__body { padding: 28px 24px 32px; }
.mt-world__title {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-2);
  margin: 0 0 12px;
  color: var(--mt-text);
}
.mt-world__desc {
  color: var(--mt-muted);
  font-size: var(--mt-step-0);
  line-height: 1.6;
  margin: 0 0 20px;
}
.mt-world__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mt-font-display);
  font-weight: 600;
  color: var(--mt-brand-2);
  font-size: var(--mt-step-0);
}
.mt-world__cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.mt-world:hover .mt-world__cta svg { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════════
   SECTION 4 — Bionik-Anchor
   ══════════════════════════════════════════════════════════════════ */
.mt-bionik {
  padding: clamp(100px, 16vw, 200px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #050808;
}
.mt-bionik__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(5,8,8,0.82) 0%, rgba(5,8,8,0.7) 50%, rgba(5,8,8,0.92) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(0,150,57,0.18) 0%, transparent 55%),
    url('bionik-bg.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
}
.mt-bionik__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,185,74,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
}
.mt-bionik__content { max-width: 860px; margin: 0 auto; text-align: center; }
.mt-bionik__title {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-h2);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 28px;
  color: var(--mt-text);
  text-wrap: balance;
}
.mt-bionik__text {
  font-size: var(--mt-step-1);
  color: rgba(245,245,244,0.75);
  line-height: 1.75;
  max-width: 62ch;
  margin: 0 auto;
}
.mt-bionik__text em { color: var(--mt-brand-2); font-style: normal; font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════
   SECTION 5 — Produkt-Highlights
   ══════════════════════════════════════════════════════════════════ */
.mt-highlights {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--mt-bg);
}
.mt-highlights__header { text-align: center; margin-bottom: clamp(48px, 7vw, 80px); }
.mt-highlights__grid {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.mt-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--mt-bg-soft);
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s cubic-bezier(.19,1,.22,1),
              border-color 0.3s ease,
              box-shadow 0.4s ease;
}
.mt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,185,74,0.3);
  box-shadow: 0 14px 40px -16px rgba(0,0,0,0.6);
}
.mt-card__link { display: block; text-decoration: none; color: inherit; }
.mt-card__image {
  aspect-ratio: 1 / 1;
  background-color: #f4f4f2;         /* heller BG für Produktbilder */
  background-size: contain;          /* contain statt cover — zeigt volles Bild, kein Abschneiden */
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: transform 0.5s cubic-bezier(.19,1,.22,1);
  image-rendering: -webkit-optimize-contrast;  /* verbessert 200px → 400px scaling */
}
.mt-card:hover .mt-card__image { transform: scale(1.02); }
.mt-card__image--skimmer  { background-image: url('prod-skimmer.jpg'); }
.mt-card__image--rings    { background-image: url('prod-nitroring.jpg'); }
.mt-card__image--uv       { background-image: url('prod-uv.jpg'); }
.mt-card__image--brush    { background-image: url('prod-brush.jpg'); }
.mt-card__body { padding: 20px 18px 22px; }
.mt-card__badge {
  display: inline-block;
  font-family: var(--mt-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mt-brand-2);
  padding: 4px 10px;
  border: 1px solid rgba(0,185,74,0.3);
  border-radius: 999px;
  margin-bottom: 12px;
}
.mt-card__title {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--mt-text);
  line-height: 1.3;
}
.mt-card__desc {
  font-size: 13px;
  color: var(--mt-muted);
  line-height: 1.5;
  margin: 0 0 14px;
}
.mt-card__price {
  font-family: var(--mt-font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--mt-brand-2);
  letter-spacing: 0.02em;
}
.mt-highlights__footer { text-align: center; }
.mt-btn--on-dark {
  color: var(--mt-text);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  background: transparent;
}
.mt-btn--on-dark:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 6 — Team
   ══════════════════════════════════════════════════════════════════ */
.mt-team {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--mt-bg-soft);
}
.mt-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (min-width: 900px) {
  .mt-team__grid { grid-template-columns: 1fr 1fr; }
}
.mt-team__photo {
  position: relative;
  aspect-ratio: 3 / 2;           /* Landscape — matcht Team-Foto-Proportionen */
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d1f, #0a0c0d);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.mt-team__image {
  width: 100%; height: 100%;
  background-size: contain;       /* KEINE Personen croppen */
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f8f8f7;      /* weißer Studio-BG des Fotos → nahtlos */
  background-image: url('team-mt.jpg');
  filter: saturate(0.95) contrast(1.03);
  transition: filter 0.6s ease;
}
.mt-team__photo:hover .mt-team__image {
  filter: saturate(1.05) contrast(1);
}
/* Subtle grünen Akzent-Bar unten am Foto */
.mt-team__photo::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mt-brand) 0%, var(--mt-brand-2) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(.19,1,.22,1);
}
.mt-team__photo.is-visible::after { transform: scaleX(1); }
.mt-team__content { padding: 0; }
.mt-team__text {
  font-size: var(--mt-step-1);
  color: var(--mt-muted);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 50ch;
}
.mt-team__facts {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mt-team__facts li {
  padding: 14px 18px;
  background: var(--mt-bg);
  border-left: 2px solid var(--mt-brand);
  border-radius: 4px;
  color: var(--mt-muted);
}
.mt-team__facts strong {
  color: var(--mt-text);
  font-family: var(--mt-font-display);
  font-weight: 700;
  margin-right: 8px;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 6.5 — Projekte-Galerie
   ══════════════════════════════════════════════════════════════════ */
.mt-projekte {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--mt-bg);
}
.mt-projekte__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.mt-projekte__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.mt-projekt {
  position: relative;
  display: block;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(.19,1,.22,1);
}
.mt-projekt:hover { transform: translateY(-4px); }
.mt-projekt:focus-visible {
  outline: 2px solid #38b867;
  outline-offset: 4px;
}
.mt-projekt__img {
  display: block;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(.19,1,.22,1), filter 0.4s ease;
  filter: saturate(0.92) contrast(1.05);
}
.mt-projekt:hover .mt-projekt__img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.1);
}
.mt-projekt__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 16px;
  font-family: var(--mt-font-display);
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.19,1,.22,1), opacity 0.3s ease;
}
.mt-projekt:hover .mt-projekt__caption,
.mt-projekt:focus-within .mt-projekt__caption {
  transform: translateY(0);
  opacity: 1;
}
/* Mobile: caption immer sichtbar (kein hover) */
@media (max-width: 720px) {
  .mt-projekt__caption {
    transform: translateY(0);
    opacity: 1;
    padding-top: 24px;
    font-size: 12px;
  }
}
.mt-projekte__footer {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 46px);
}
.mt-projekte__footer .mt-btn {
  width: auto;
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  line-height: 1;
}
.mt-projekte__footer .mt-btn span {
  white-space: nowrap;
}
.mt-projekte__footer .mt-btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* ══════════════════════════════════════════════════════════════════
   SECTION 7 — Trust
   ══════════════════════════════════════════════════════════════════ */
.mt-trust {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--mt-bg);
  text-align: center;
}
.mt-trust__header { margin-bottom: clamp(48px, 7vw, 80px); }
.mt-trust__certs {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.mt-cert {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border: 1px solid rgba(0,185,74,0.25);
  border-radius: 12px;
  background: rgba(0,185,74,0.04);
  text-decoration: none;
  color: var(--mt-text);
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.mt-cert:hover {
  border-color: rgba(0,185,74,0.5);
  background: rgba(0,185,74,0.08);
  transform: translateY(-2px);
}
.mt-cert__badge {
  width: 36px; height: 36px;
  color: var(--mt-brand-2);
  flex-shrink: 0;
}
.mt-cert__badge svg { width: 100%; height: 100%; }
.mt-cert__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
  font-family: var(--mt-font-display);
  font-size: 13px;
}
.mt-cert__text strong { font-weight: 700; }
.mt-cert__text span { color: var(--mt-muted); font-size: 12px; }
.mt-trust__partners { margin-top: 40px; }
.mt-trust__partners-label {
  color: var(--mt-muted);
  font-size: 14px;
  margin: 0 0 16px;
}
.mt-trust__regions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  font-family: var(--mt-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--mt-text);
  letter-spacing: 0.04em;
}
.mt-trust__regions .mt-dot { color: var(--mt-brand-2); }

/* ══════════════════════════════════════════════════════════════════
   SECTION 8 — Partner-Pitch
   ══════════════════════════════════════════════════════════════════ */
.mt-partner {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--mt-text);
}
.mt-partner__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,150,57,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(0,120,160,0.14) 0%, transparent 55%),
    linear-gradient(180deg, #0a100c 0%, #07100c 100%);
}
.mt-partner__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0,185,74,0.06) 1px, transparent 0);
  background-size: 28px 28px;
}
.mt-partner__header { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.mt-partner__title {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-h2);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--mt-text);
  text-wrap: balance;
}
.mt-partner__sub {
  font-size: var(--mt-step-1);
  color: rgba(245,245,244,0.75);
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.6;
}
.mt-partner__services {
  list-style: none; padding: 0;
  margin: 0 0 clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.mt-partner__services li {
  padding: 24px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mt-partner__services strong {
  font-family: var(--mt-font-display);
  font-weight: 700;
  font-size: var(--mt-step-1);
  color: var(--mt-brand-2);
}
.mt-partner__services span {
  color: rgba(245,245,244,0.8);
  font-size: var(--mt-step-0);
  line-height: 1.5;
}
.mt-partner__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.mt-btn--large {
  --pad-y: 18px;
  --pad-x: 32px;
  font-size: var(--mt-step-1);
}

/* Final CTA: both buttons must read as one control pair. */
.mt-partner__cta .mt-btn {
  --pad-y: 18px;
  --pad-x: 32px;
  min-height: 70px;
  padding: var(--pad-y) var(--pad-x);
  font-size: var(--mt-step-1);
  line-height: 1.2;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.mt-foot {
  padding: clamp(56px, 8vw, 88px) 0 24px;
  background: #07090a;
  color: var(--mt-muted);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mt-foot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 24px;
}
@media (min-width: 720px) {
  .mt-foot__grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
}
.mt-foot__brand img { max-width: 160px; height: auto; display: block; }
.mt-foot__tag {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--mt-muted);
  max-width: 28ch;
}
.mt-foot__nav h4,
.mt-foot__contact h4 {
  font-family: var(--mt-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mt-text);
  margin: 0 0 16px;
}
.mt-foot__nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.mt-foot__nav a {
  color: var(--mt-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.mt-foot__nav a:hover { color: var(--mt-brand-2); }
.mt-foot__contact address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
}
.mt-foot__contact a {
  color: var(--mt-brand-2);
  text-decoration: none;
}
.mt-foot__contact a:hover { text-decoration: underline; }
.mt-foot__copy {
  font-size: 12px;
  color: rgba(168,168,165,0.6);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes mt-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mt-fade-down {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes mt-scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(5px); opacity: 0.5; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  .mt-hero__video { display: none; }
  .mt-hero__logo,
  .mt-hero__headline-line,
  .mt-hero__sub,
  .mt-hero__cta,
  .mt-hero__scroll {
    animation-duration: 0.01ms !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .mt-hero__scroll-line { animation: none; }
}

/* Mobile Tuning */
@media (max-width: 640px) {
  .mt-btn { padding: 12px 18px; font-size: 15px; }
  .mt-hero__scroll {
    font-size: 10px;
    letter-spacing: 0.28em;
    gap: 6px;
    /* Default-Fallback wenn JS nicht lief — JS überschreibt mit dynamischem Wert */
    bottom: calc(env(safe-area-inset-bottom, 0px) + 90px);
  }
  .mt-hero__scroll-arrow { width: 11px; height: 18px; }
  .mt-hero__inner {
    gap: 14px;
    padding: 12px 0;
    padding-bottom: var(--mt-ios-bar, 80px);
    /* Content deutlich über Mitte — optisch ausbalanciert auf Mobile */
    margin-top: -15vh;
  }
  .mt-hero__headline { line-height: 1.05; }
}

/* ═══ MT MOBILE LANDING REDESIGN ═══ */
/* Nur unter 1024px aktiv. Desktop bleibt unangetastet. */
@media (max-width: 1023px) {

  /* === Desktop-Mininav verstecken === */
  .mt-nav { display: none !important; }

  /* === Mobile-Header === */
  .mt-mh {
    position: fixed; top: 0; left: 0; right: 0;
    padding-top: 0;
    background: rgba(7,9,10,0.55);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    z-index: 1000;
  }
  /* Trees-Logo im Header initial unsichtbar — erscheint wenn Hero-Logo wegscrollt */
  .mt-mh__brand {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .mt-mh.has-brand .mt-mh__brand {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mt-mh__row {
    /* Inner: 44px Apple-Standard, Icons knapp unter Notch */
    height: 44px;
    display: flex; align-items: center; justify-content: space-between;
    padding-left: max(14px, env(safe-area-inset-left, 14px));
    padding-right: max(14px, env(safe-area-inset-right, 14px));
  }
  /* body.admin-bar .mt-mh — entfernt: WP-Admin-Bar ist auf iPhone-Safari unsichtbar */
  .mt-mh__burger {
    width: 48px; height: 34px;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    background: transparent; cursor: pointer; padding: 0;
    border: 2px solid #00b94a;
    border-radius: 7px;
    transition: background .15s, border-color .15s;
  }
  .mt-mh__burger:hover {
    background: rgba(0,185,74,0.12);
    border-color: #00d65a;
  }
  .mt-mh__burger span {
    display: block; width: 28px; height: 4px;
    background: #fff; border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }
  .mt-mh__brand {
    display: inline-flex; align-items: center;
    flex: 0 1 auto;
  }
  .mt-mh__brand img {
    height: 32px; width: auto; display: block;
  }
  .mt-mh__login {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none;
    border-radius: 999px;
    transition: background .15s;
  }
  .mt-mh__login:hover { background: rgba(255,255,255,0.08); }
  .mt-mh__login svg { width: 30px; height: 30px; stroke-width: 2.1; }

  /* Body-padding-top für fixed header */
  .mt-landing { padding-top: 0; }

  /* === Drawer === */
  .mt-drawer {
    position: fixed; top: 0; left: 0;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    width: min(72vw, 300px); height: 100vh;
    height: 100dvh;
    background: rgba(7,9,10,0.78);
    backdrop-filter: saturate(160%) blur(22px);
    -webkit-backdrop-filter: saturate(160%) blur(22px);
    border-right: 1px solid rgba(255,255,255,0.06);
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    z-index: 1100;
    display: flex; flex-direction: column;
    overflow-y: auto;
  }
  body.admin-bar .mt-drawer { top: 46px; height: calc(100dvh - 46px); }
  .mt-drawer.is-open {
    transform: translateX(0);
    box-shadow: 6px 0 32px rgba(0,0,0,.55);
  }
  .mt-drawer__overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 1050;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
  }
  .mt-drawer__overlay.is-open { opacity: 1; pointer-events: auto; }

  .mt-drawer__head {
    display: flex; justify-content: flex-end;
    padding: 14px 14px 6px;
  }
  .mt-drawer__close {
    width: 38px; height: 38px;
    background: transparent; border: 0; color: #fff;
    cursor: pointer; padding: 0;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px;
  }
  .mt-drawer__close:hover { background: rgba(255,255,255,0.06); }

  .mt-drawer__nav {
    list-style: none; margin: 0; padding: 8px 0;
    flex: 1 1 auto;
  }
  .mt-drawer__nav li { margin: 0; }
  .mt-drawer__nav a {
    display: block;
    padding: 12px 22px;
    font-family: "Inter Tight", "Inter", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e6e8e6;
    text-decoration: none;
    transition: color .15s, background .15s;
  }
  /* Legal-Links unten: kleiner, dezenter */
  .mt-drawer__nav--legal {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .mt-drawer__nav--legal a {
    padding: 8px 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #8a8e8a;
  }
  .mt-drawer__nav--legal a:hover {
    color: #cfd3d0;
  }
  .mt-drawer__nav a:hover,
  .mt-drawer__nav a:focus-visible {
    color: #4fd27a;
    background: rgba(255,255,255,0.03);
  }

  .mt-drawer__shop {
    margin: 8px 18px 24px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #009639 0%, #00b94a 100%);
    color: #fff;
    border-radius: 14px;
    font-family: "Inter Tight", "Inter", sans-serif;
    font-weight: 700; font-size: 17px;
    letter-spacing: -0.01em;
    text-align: center;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(0,150,57,0.35);
    transition: transform .15s, box-shadow .15s;
  }
  .mt-drawer__shop:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,150,57,0.45);
  }

  /* Drawer geöffnet → body scroll lock */
  body.mt-drawer-open { overflow: hidden; }

  /* === Horizontal-Scroll: Bestseller-Kacheln === */
  .mt-highlights__grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch;
    padding: 0 18px 12px !important;
    margin: 0 -18px !important;
    scrollbar-width: none !important;
  }
  .mt-highlights__grid::-webkit-scrollbar { display: none !important; }
  .mt-highlights__grid > .mt-card {
    flex: 0 0 70% !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }
  .mt-card__body { padding: 14px 14px 16px !important; }
  .mt-card__title { font-size: 15px !important; line-height: 1.25 !important; }
  .mt-card__desc { font-size: 13px !important; line-height: 1.4 !important; }

  /* === Horizontal-Scroll: Projekte === */
  .mt-projekte__grid,
  .mt-projekte ul[class*="grid"],
  .mt-projekte [class*="__grid"] {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 18px 12px !important;
    margin: 0 -18px !important;
    scrollbar-width: none !important;
    overscroll-behavior-y: contain !important;
    touch-action: pan-x !important;
  }
  .mt-projekte__grid::-webkit-scrollbar,
  .mt-projekte ul[class*="grid"]::-webkit-scrollbar,
  .mt-projekte [class*="__grid"]::-webkit-scrollbar { display: none !important; }
  .mt-projekte__grid > *,
  .mt-projekte ul[class*="grid"] > *,
  .mt-projekte [class*="__grid"] > * {
    flex: 0 0 70% !important;
    scroll-snap-align: start;
    margin: 0 !important;
  }

  /* === Section-Density: weniger Padding, dichter wie Jalin === */
  .mt-pillars,
  .mt-worlds,
  .mt-bionik,
  .mt-highlights,
  .mt-team,
  .mt-projekte,
  .mt-trust,
  .mt-partner {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .mt-section-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 18px !important;
  }
  .mt-eyebrow {
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    margin: 0 0 10px !important;
  }
  .mt-pillars__grid,
  .mt-worlds__grid {
    gap: 18px !important;
  }
  .mt-card {
    border-radius: 12px !important;
  }
  .mt-card__image {
    aspect-ratio: 4 / 3 !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* === Hero etwas kompakter — kein full-screen-leerer-fish === */
  .mt-hero {
    min-height: 100vh !important;
    min-height: calc(100lvh + 1px) !important; /* +1px Buffer gegen Safari-Subpixel-Bleed */
    height: 100lvh !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
  }
  body.admin-bar .mt-hero {
    min-height: calc(100lvh - 46px) !important;
  }
  /* Hero-Inhalt kompakter */
  .mt-hero__inner {
    text-align: center;
    padding: 0 22px;
    width: 100%;
    max-width: 100%;
  }
  .mt-hero__title,
  .mt-hero__headline,
  .mt-hero__headline-line {
    font-size: 32px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
    margin: 0 0 12px !important;
  }
  .mt-hero__subtitle,
  .mt-hero__sub {
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin: 0 auto 18px !important;
    max-width: 36ch;
  }
  .mt-hero__ctas,
  .mt-hero__buttons,
  .mt-hero__cta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px !important;
    margin: 0 !important;
  }
  .mt-hero__scroll {
    position: absolute !important;
    /* Always near bottom of CURRENT visible viewport (dvh = dynamic viewport) */
    top: calc(100dvh - env(safe-area-inset-bottom, 0) - 70px) !important;
    bottom: auto !important;
    left: 0; right: 0;
    text-align: center;
    padding: 0 !important;
    z-index: 10;
  }
  .mt-hero__title {
    font-size: 38px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.025em !important;
  }
  .mt-hero__subtitle {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }

  /* Scroll-Indikator zwischen Hero+Pillars knapper */
  .mt-hero__scroll { padding: 24px 0 12px !important; }

}

/* Reduce motion: Drawer animation skip */
@media (prefers-reduced-motion: reduce) {
  .mt-drawer, .mt-drawer__overlay { transition: none !important; }
}
/* ═══ END MT MOBILE LANDING REDESIGN ═══ */

/* iPhone-Notch: body-BG dunkel auf Landing damit safe-area nicht weiß durchblitzt */
@media (max-width: 1023px) {
  html, body { background: #07090a !important; }
}

/* Mobile: Section-Übergang Hero→Pillars optisch nahtlos (verhindert Leak-Eindruck) */
@media (max-width: 1023px) {
  .mt-pillars {
    background-color: #07090a !important;
  }
}

/* Mobile-Hero: data-reveal-Inhalte sofort sichtbar (Hero ist beim Load sowieso im Viewport) */
@media (max-width: 1023px) {
  .mt-hero [data-reveal],
  .mt-hero .mt-hero__sub,
  .mt-hero .mt-hero__cta,
  .mt-hero .mt-hero__cta * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* MOBILE: Hero-Logo mehr Abstand zum Title-Text + Pillars-Section card-style */
@media (max-width: 1023px) {
  .mt-hero__logo {
    margin-bottom: 36px !important;
  }

  /* === Pillars: 1-spaltig, horizontal Icon+Text, BG-Glow, lesbare Schrift === */
  .mt-pillars {
    padding: 56px 16px !important;
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,150,57,0.12), transparent 70%),
      radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,150,57,0.06), transparent 60%),
      #0a0d0e !important;
    position: relative;
  }
  .mt-pillars__header {
    margin-bottom: 32px !important;
    text-align: center;
  }
  .mt-pillars__title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.025em !important;
  }
  .mt-pillars__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  .mt-pillars__grid > .mt-pillar {
    display: grid !important;
    grid-template-columns: 44px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 18px !important;
    row-gap: 6px !important;
    padding: 18px 18px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
    text-align: left !important;
    margin: 0 !important;
    list-style: none !important;
    color: #cfd3d0 !important;
    align-items: start !important;
  }
  .mt-pillar__icon {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 44px !important;
    height: 44px !important;
    margin: 2px 0 0 !important;
    color: #4fd27a !important;
    align-self: start !important;
  }
  .mt-pillar__head {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }
  .mt-pillar__text {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }
  .mt-pillar__icon svg {
    width: 100% !important;
    height: 100% !important;
  }
  .mt-pillar__head {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 0 0 6px !important;
    color: #ffffff !important;
    letter-spacing: -0.01em !important;
  }
  .mt-pillar__text {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    color: #b3b8bc !important;
    margin: 0 !important;
  }
}

/* Landscape-Phone / Tablet-Portrait: Pillars wieder 3 nebeneinander, Icon oben */
@media (min-width: 600px) and (max-width: 1023px) {
  .mt-pillars__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    flex-direction: unset !important;
    gap: 14px !important;
  }
  .mt-pillars__grid > .mt-pillar {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    text-align: center !important;
    padding: 24px 18px !important;
    column-gap: 0 !important;
    row-gap: 8px !important;
  }
  .mt-pillar__icon {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 auto 10px !important;
    width: 42px !important;
    height: 42px !important;
    align-self: center !important;
  }
  .mt-pillar__head {
    grid-column: 1 !important;
    grid-row: 2 !important;
    text-align: center !important;
  }
  .mt-pillar__text {
    grid-column: 1 !important;
    grid-row: 3 !important;
    text-align: center !important;
  }
}

/* Force-show entfernt — Pillars sollen normal animieren */
/* ═══ MT CAROUSEL DOTS ═══ */
.mt-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px auto 0;
  padding: 0;
  list-style: none;
}
.mt-carousel-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, width 0.3s ease, border-radius 0.3s ease;
}
.mt-carousel-dots button.is-active {
  background: #4fd27a;
  width: 22px;
  border-radius: 4px;
}
.mt-carousel-dots button:hover {
  background: rgba(255,255,255,0.4);
}
.mt-carousel-dots button.is-active:hover {
  background: #4fd27a;
}
@media (min-width: 1024px) {
  .mt-carousel-dots { display: none; }
}
/* ═══ END MT CAROUSEL DOTS ═══ */

/* Carousel: scroll-snap-bypass während Hint-Scroll-Animation */
@media (max-width: 1023px) {
  .mt-highlights__grid.mt-no-snap,
  .mt-projekte__grid.mt-no-snap {
    scroll-snap-type: none !important;
  }
}


/* Landscape-Phone / Tablet-Portrait: Bestseller + Projekte schmalere Cards (mehr nebeneinander) */
@media (min-width: 600px) and (max-width: 1023px) {
  .mt-highlights__grid > .mt-card {
    flex: 0 0 32% !important;  /* ca. 3 Cards sichtbar */
  }
  .mt-projekte__grid > *,
  .mt-projekte ul[class*=grid] > *,
  .mt-projekte [class*=__grid] > * {
    flex: 0 0 38% !important;  /* ca. 2.5 Projekte sichtbar */
  }
}

/* Tablet-Landscape (1024+): Cards noch schmaler */
@media (min-width: 768px) and (max-width: 1023px) {
  .mt-highlights__grid > .mt-card {
    flex: 0 0 28% !important;
  }
  .mt-projekte__grid > *,
  .mt-projekte ul[class*=grid] > *,
  .mt-projekte [class*=__grid] > * {
    flex: 0 0 32% !important;
  }
}

/* Hero Händler-Login Button: leicht transparent + Backdrop-Blur */
.mt-hero .mt-btn--primary {
  background: rgba(0, 150, 57, 0.82) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}
.mt-hero .mt-btn--primary:hover {
  background: rgba(0, 185, 74, 0.92) !important;
}

/* Desktop-Mininav (.mt-nav) entfernt — Mobile-Header (.mt-mh) übernimmt überall */
.mt-nav {
  display: none !important;
}

/* ═══ DESKTOP OVERRIDES — Mobile-Header + Carousel auch ≥1024px ═══ */
@media (min-width: 1024px) {
  /* Mobile-Header bleibt sichtbar (override the display:none from earlier) */
  .mt-mh {
    display: block !important;
  }
  .mt-drawer {
    display: flex !important;
    /* Auf Desktop breiter: 380px max */
    width: min(50vw, 380px) !important;
  }
  .mt-drawer__overlay {
    display: block !important;
  }

  /* Mobile-Hero-Hide rules sollen auf Desktop NICHT greifen — hero-Logo + reveal sichtbar machen */
  .mt-mh__brand img {
    height: 32px !important;
  }
  .mt-mh__row {
    height: 50px !important;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px !important;
  }

  /* Bestseller-Carousel: kleinere Cards, mehr sichtbar */
  .mt-highlights__grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    padding: 8px 24px 16px !important;
    margin: 0 -24px !important;
    scrollbar-width: none !important;
  }
  .mt-highlights__grid::-webkit-scrollbar { display: none !important; }
  .mt-highlights__grid > .mt-card {
    flex: 0 0 24% !important;  /* ca. 4 Cards sichtbar */
    scroll-snap-align: start;
    margin: 0 !important;
  }

  /* Projekte-Carousel: kleinere Cards, mehr sichtbar */
  .mt-projekte__grid,
  .mt-projekte ul[class*="grid"],
  .mt-projekte [class*="__grid"] {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    padding: 8px 24px 16px !important;
    margin: 0 -24px !important;
    scrollbar-width: none !important;
  }
  .mt-projekte__grid::-webkit-scrollbar,
  .mt-projekte ul[class*="grid"]::-webkit-scrollbar,
  .mt-projekte [class*="__grid"]::-webkit-scrollbar { display: none !important; }
  .mt-projekte__grid > *,
  .mt-projekte ul[class*="grid"] > *,
  .mt-projekte [class*="__grid"] > * {
    flex: 0 0 28% !important;  /* ca. 3.5 Projekte sichtbar */
    scroll-snap-align: start;
    margin: 0 !important;
  }

  /* Carousel-Dots auf Desktop ebenfalls sichtbar */
  .mt-carousel-dots {
    display: flex !important;
  }
}
/* ═══ END DESKTOP OVERRIDES ═══ */

/* ═══ DESKTOP: Mobile-Header + Drawer komplette Properties (nicht mehr media-query-gegated) ═══ */
@media (min-width: 1024px) {
  .mt-mh {
    position: fixed; top: 0; left: 0; right: 0;
    padding-top: 0;
    background: rgba(7,9,10,0.55);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    z-index: 1000;
  }
  .mt-mh__brand {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .mt-mh.has-brand .mt-mh__brand {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mt-mh__burger {
    width: 48px; height: 34px;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    background: transparent; cursor: pointer; padding: 0;
    border: 2px solid #00b94a;
    border-radius: 7px;
    transition: background .15s, border-color .15s;
  }
  .mt-mh__burger:hover {
    background: rgba(0,185,74,0.12);
    border-color: #00d65a;
  }
  .mt-mh__burger span {
    display: block; width: 28px; height: 4px;
    background: #fff; border-radius: 2px;
  }
  .mt-mh__brand img {
    height: 32px; width: auto; display: block;
  }
  .mt-mh__login {
    width: 44px; height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; text-decoration: none;
    border-radius: 999px;
  }
  .mt-mh__login svg { width: 30px; height: 30px; stroke-width: 2.1; }

  /* Drawer mit kompletten Properties */
  .mt-drawer {
    position: fixed; top: 0; left: 0;
    padding-top: env(safe-area-inset-top, 0);
    padding-bottom: env(safe-area-inset-bottom, 0);
    width: min(50vw, 380px); height: 100dvh;
    background: rgba(7,9,10,0.78);
    backdrop-filter: saturate(160%) blur(22px);
    -webkit-backdrop-filter: saturate(160%) blur(22px);
    border-right: 1px solid rgba(255,255,255,0.06);
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.22,.61,.36,1);
    z-index: 1100;
    flex-direction: column;
    overflow-y: auto;
  }
  .mt-drawer.is-open {
    transform: translateX(0);
    box-shadow: 6px 0 32px rgba(0,0,0,.55);
  }
  .mt-drawer__overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
    z-index: 1050;
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
  }
  .mt-drawer__overlay.is-open { opacity: 1; pointer-events: auto; }
  body.mt-drawer-open { overflow: hidden; }
}

/* Desktop: __row Flex-Layout für 3-zonen Burger | Brand | Login */
@media (min-width: 1024px) {
  .mt-mh__row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 50px !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 32px !important;
  }
}

/* Drawer-Inhalte universal (waren in mobile-only block) */
.mt-drawer__head {
  display: flex; justify-content: flex-end;
  padding: 14px 14px 6px;
}
.mt-drawer__close {
  width: 38px; height: 38px;
  background: transparent; border: 0; color: #fff;
  cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
}
.mt-drawer__nav {
  list-style: none; margin: 0; padding: 8px 0;
  flex: 1 1 auto;
}
.mt-drawer__nav li { margin: 0; }
.mt-drawer__shop {
  margin: 8px 18px 24px;
  padding: 16px 22px;
  background: linear-gradient(135deg, #009639 0%, #00b94a 100%);
  color: #fff;
  border-radius: 14px;
  font-family: Inter Tight, Inter, sans-serif;
  font-weight: 700; font-size: 17px;
  text-align: center;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
}

/* WP-Admin-Bar Offset: Desktop 32px, mobile 46px (nur wenn Admin-Bar sichtbar) */
@media (min-width: 783px) {
  body.admin-bar .mt-mh { top: 32px !important; }
  body.admin-bar .mt-drawer { top: 32px !important; height: calc(100dvh - 32px) !important; }
}

/* ═══ DRAWER-INHALTE universal (auch Desktop) ═══ */
.mt-drawer__nav a {
  display: block !important;
  padding: 12px 22px !important;
  font-family: Inter Tight, Inter, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: #e6e8e6 !important;
  text-decoration: none !important;
  transition: color .15s, background .15s !important;
}
.mt-drawer__nav a:hover,
.mt-drawer__nav a:focus-visible {
  color: #4fd27a !important;
  background: rgba(255,255,255,0.03) !important;
}
.mt-drawer__nav--legal {
  margin-top: auto !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
}
.mt-drawer__nav--legal a {
  padding: 8px 22px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  color: #8a8e8a !important;
}
.mt-drawer__nav--legal a:hover {
  color: #cfd3d0 !important;
}

/* ═══ CAROUSEL FULL-WIDTH auf Desktop ═══ */
@media (min-width: 1024px) {
  .mt-highlights__grid,
  .mt-projekte__grid {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: max(40px, calc(50vw - 580px)) !important;
    padding-right: max(40px, calc(50vw - 580px)) !important;
  }
  /* Carousel-Dots zentriert in container, nicht full-width */
  .mt-carousel-dots {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ═══ FORCE FULL-WIDTH carousel auf Desktop (höhere Spezifizität) ═══ */
@media (min-width: 1024px) {
  body .mt-projekte__grid,
  body .mt-projekte ul[class*="grid"],
  body .mt-projekte [class*="__grid"],
  body .mt-highlights__grid {
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: max(40px, calc(50vw - 580px)) !important;
    padding-right: max(40px, calc(50vw - 580px)) !important;
  }
}

/* Login-Icon gruen wenn eingeloggt */
body.logged-in .mt-mh__login { color: #00b94a; }

/* Bestseller carousel: keep dots and CTA from visually touching. */
.mt-highlights .mt-carousel-dots--bestseller {
  margin-bottom: 34px !important;
}

.mt-highlights .mt-highlights__footer {
  margin-top: 0 !important;
}

.mt-highlights .mt-highlights__footer .mt-btn {
  min-width: min(420px, calc(100% - 32px)) !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

.mt-highlights .mt-highlights__footer .mt-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
}

/* Landing header: same cart/account cluster as shop header. */
.mt-mh__right {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  flex: 0 0 auto !important;
}

.mt-mh__lang {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
}

.mt-mh__lang::after {
  content: "" !important;
  position: absolute !important;
  left: -6px !important;
  right: -6px !important;
  top: 100% !important;
  height: 10px !important;
}

.mt-mh__lang-toggle {
  height: 32px !important;
  width: 40px !important;
  padding: 0 9px !important;
  border: 1px solid rgba(79,210,122,0.34) !important;
  box-sizing: border-box !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.07) !important;
  color: #eff6f0 !important;
  cursor: pointer !important;
  font-family: poppins, Inter, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}

.mt-mh__lang-toggle:hover,
.mt-mh__lang:focus-within .mt-mh__lang-toggle {
  border-color: rgba(79,210,122,0.62) !important;
  background: rgba(79,210,122,0.12) !important;
}

.mt-mh__lang-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  min-width: 86px !important;
  padding: 6px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;
  background: rgba(7,9,10,0.94) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,0.34) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-4px) !important;
  transition: opacity .16s ease, transform .16s ease, visibility 0s linear .16s !important;
  z-index: 10030 !important;
}

.mt-mh__lang:hover .mt-mh__lang-menu,
.mt-mh__lang:focus-within .mt-mh__lang-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  transition-delay: 0s !important;
}

.mt-mh__lang-menu a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 32px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  color: #edf3ee !important;
  font-family: poppins, Inter, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.mt-mh__lang-menu a:visited {
  color: #edf3ee !important;
}

.mt-mh__lang-menu a:hover,
.mt-mh__lang-menu a.is-active {
  color: #f6fbf7 !important;
  background: rgba(79,210,122,0.09) !important;
}

.mt-mh__cart,
.mt-mh__login {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 999px !important;
  position: relative !important;
  transition: background .15s !important;
}

.mt-mh__cart:hover,
.mt-mh__login:hover {
  background: rgba(255,255,255,0.08) !important;
}

.mt-mh__cart svg {
  width: 26px !important;
  height: 26px !important;
  stroke-width: 2.1 !important;
}

.mt-mh__login svg {
  width: 30px !important;
  height: 30px !important;
  stroke-width: 2.1 !important;
}

.mt-mh__cart-count {
  position: absolute !important;
  top: 3px !important;
  right: 3px !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 4px !important;
  border-radius: 999px !important;
  background: #00b94a !important;
  color: #fff !important;
  font-family: "Inter", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
}

.mt-mh__cart-count[data-count="0"] {
  display: none !important;
}

body.logged-in .mt-mh__login {
  color: #00b94a !important;
}

/* WPML language menu: final override after legacy header rules */
html body .mt-mh__lang {
  position: relative !important;
}

html body .mt-mh__lang::after {
  content: "";
  position: absolute;
  left: -18px !important;
  right: -18px !important;
  top: 100% !important;
  height: 20px !important;
}

html body .mt-mh__lang-menu {
  left: 50% !important;
  right: auto !important;
  top: calc(100% + 2px) !important;
  min-width: 118px !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 3px !important;
  transform: translate(-50%, -4px) !important;
}

html body .mt-mh__lang:hover .mt-mh__lang-menu,
html body .mt-mh__lang:focus-within .mt-mh__lang-menu,
html body .mt-mh__lang.is-open .mt-mh__lang-menu {
  transform: translate(-50%, 0) !important;
}

html body .mt-mh__lang-menu a {
  min-height: 30px !important;
  padding: 7px 6px !important;
}

/* WPML language menu: readable five-language flyout, kept open while crossing from icon to menu */
html body#top .mt-mh .mt-mh__lang {
  position: relative !important;
}

html body#top .mt-mh .mt-mh__lang::after {
  content: "" !important;
  position: absolute !important;
  left: -20px !important;
  right: -20px !important;
  top: 100% !important;
  height: 22px !important;
}

html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: calc(100% + 3px) !important;
  min-width: 132px !important;
  padding: 7px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 14px !important;
  background: rgba(8, 12, 10, 0.97) !important;
  box-shadow: 0 14px 36px rgba(0,0,0,0.42) !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 4px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translate(-50%, -4px) !important;
  transition: opacity .14s ease, transform .14s ease, visibility 0s linear .14s !important;
  z-index: 100300 !important;
}

html body#top .mt-mh .mt-mh__lang:hover .mt-mh__lang-menu,
html body#top .mt-mh .mt-mh__lang:focus-within .mt-mh__lang-menu,
html body#top .mt-mh .mt-mh__lang.is-open .mt-mh__lang-menu,
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
  transition-delay: 0s !important;
}

html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button),
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button):visited {
  min-height: 30px !important;
  padding: 7px 6px !important;
  border-radius: 9px !important;
  color: #f4f7f4 !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button):hover,
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button):focus-visible,
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button).is-active {
  color: #ffffff !important;
  background: rgba(79, 210, 122, 0.20) !important;
}

/* WPML language menu: high-contrast final paint layer */
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu {
  background: rgba(244, 250, 246, 0.98) !important;
  border-color: rgba(12, 80, 48, 0.18) !important;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28) !important;
}

html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button),
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button):visited {
  color: #1f342b !important;
  background: transparent !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}

html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button):hover,
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button):focus-visible,
html body#top .mt-mh .mt-mh__lang .mt-mh__lang-menu a:not(.button).is-active {
  color: #087a43 !important;
  background: rgba(23, 155, 83, 0.12) !important;
}
