.elementor-18 .elementor-element.elementor-element-ca277b4{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-e1de7ba *//* ============================================================
   FALK MONTAGEN – HEADER STYLES
   → Einfügen in: Elementor → Site Settings → Custom CSS
   → Oder: WordPress Customizer → Zusätzliches CSS
   ============================================================ */

/* Google Fonts: Oswald (Display, industriell) + Manrope (Body, modern) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Manrope:wght@500;600;700&display=swap');

/* ---- DESIGN TOKENS ---- */
:root {
  --fm-navy:        #0f1929;
  --fm-navy-2:      #16203a;
  --fm-orange:      #f0a830;
  --fm-orange-hi:   #ffbb44;
  --fm-white:       #ffffff;
  --fm-muted:       #94a3b8;
  --fm-border:      rgba(255, 255, 255, 0.08);

  --fm-h-desktop:   88px;
  --fm-h-mobile:    68px;

  --fm-display:     'Oswald', system-ui, sans-serif;
  --fm-body:        'Manrope', system-ui, sans-serif;

  --fm-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --fm-ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- HEADER CONTAINER ---- */
.fm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--fm-navy);
  font-family: var(--fm-body);
  transition: box-shadow 0.3s var(--fm-ease);
  box-shadow: 0 1px 0 var(--fm-border);
}

.fm-header.is-scrolled {
  box-shadow:
    0 1px 0 var(--fm-border),
    0 8px 24px rgba(0, 0, 0, 0.25);
}

.fm-header__inner {
  height: var(--fm-h-desktop);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* ---- LOGO + BRAND ---- */
.fm-logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  outline: none;
}

.fm-logo:focus-visible {
  outline: 2px solid var(--fm-orange);
  outline-offset: 4px;
  border-radius: 4px;
}

.fm-logo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s var(--fm-ease-out);
  max-height: 72px;
  max-width: 92px;
}

.fm-logo:hover .fm-logo__badge {
  transform: translateY(-1px);
}

.fm-logo__img {
  height: 60px !important;
  width: auto !important;
  max-height: 60px !important;
  max-width: 80px !important;
  min-height: 0;
  min-width: 0;
  display: block;
  object-fit: contain;
}

.fm-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.fm-logo__name {
  font-family: var(--fm-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--fm-white);
  text-transform: uppercase;
  white-space: nowrap;
}

.fm-logo__name span {
  color: var(--fm-orange);
}

.fm-logo__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--fm-muted);
  text-transform: uppercase;
  margin-top: 0.55rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ---- NAVIGATION ---- */
.fm-nav {
  margin-left: auto;
}

.fm-nav__list {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.fm-nav__link {
  position: relative;
  display: inline-block;
  padding: 0.625rem 1rem;
  color: var(--fm-white);
  text-decoration: none;
  font-family: var(--fm-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s var(--fm-ease);
}

.fm-nav__link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.4rem;
  height: 2px;
  background: var(--fm-orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--fm-ease-out);
}

.fm-nav__link:hover,
.fm-nav__link:focus-visible {
  color: var(--fm-orange);
  outline: none;
}

.fm-nav__link:hover::after,
.fm-nav__link:focus-visible::after {
  transform: scaleX(1);
}

/* ---- CTA BUTTON ---- */
.fm-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: var(--fm-orange);
  color: var(--fm-navy);
  text-decoration: none;
  font-family: var(--fm-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: background 0.2s var(--fm-ease), transform 0.2s var(--fm-ease), box-shadow 0.2s var(--fm-ease);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
  cursor: pointer;
  border: none;
}

.fm-cta__icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--fm-ease-out);
}

.fm-cta:hover {
  background: var(--fm-orange-hi);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(240, 168, 48, 0.35);
}

.fm-cta:hover .fm-cta__icon {
  transform: translateX(3px);
}

.fm-cta:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.fm-cta:focus-visible {
  outline: 2px solid var(--fm-white);
  outline-offset: 3px;
}

/* ---- HAMBURGER (Mobile) ---- */
.fm-burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--fm-border);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color 0.2s var(--fm-ease), background 0.2s var(--fm-ease);
}

.fm-burger:hover,
.fm-burger:focus-visible {
  border-color: var(--fm-orange);
  background: rgba(240, 168, 48, 0.08);
  outline: none;
}

.fm-burger__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fm-white);
  border-radius: 2px;
  transition: transform 0.3s var(--fm-ease), opacity 0.2s var(--fm-ease);
}

.fm-burger.is-active .fm-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.fm-burger.is-active .fm-burger__line:nth-child(2) {
  opacity: 0;
}
.fm-burger.is-active .fm-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- DURCHGEHENDER ORANGER HEADER-STRICH ---- */
.fm-header__accent {
  position: fixed;
  top: var(--fm-h-desktop);
  left: 0;
  right: 0;
  width: 100vw;
  height: 3px;
  background: var(--fm-orange);
  z-index: 1001;
}

/* Mobile Position an Headerhöhe anpassen */
@media (max-width: 860px) {
  .fm-header__accent {
    top: var(--fm-h-mobile);
  }
}

/* ---- MOBILE MENÜ ---- */
.fm-mobile {
  position: fixed;
  top: var(--fm-h-desktop);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--fm-navy-2);
  border-bottom: 1px solid var(--fm-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--fm-ease-out);
}

.fm-mobile.is-open {
  max-height: calc(100vh - var(--fm-h-desktop));
  overflow-y: auto;
}

.fm-mobile__nav {
  padding: 1rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fm-mobile__link {
  display: block;
  padding: 1.05rem 0;
  color: var(--fm-white);
  text-decoration: none;
  font-family: var(--fm-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--fm-border);
  transition: color 0.2s var(--fm-ease), padding-left 0.2s var(--fm-ease);
}

.fm-mobile__link:hover,
.fm-mobile__link:focus-visible {
  color: var(--fm-orange);
  padding-left: 0.5rem;
  outline: none;
}

.fm-mobile__cta {
  margin-top: 1.25rem;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* ---- SPACER (verhindert Content unter Sticky-Header) ---- */
.fm-header__spacer {
  height: var(--fm-h-desktop);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet & kleine Desktops */
@media (max-width: 1100px) {
  .fm-header__inner {
    padding: 0 1.5rem;
    gap: 1.25rem;
  }
  .fm-logo__badge  { max-height: 64px; max-width: 80px; }
  .fm-logo__img    {
    height: 52px !important;
    max-height: 52px !important;
    max-width: 70px !important;
  }
  .fm-logo__name   { font-size: 1.3rem; }
  .fm-nav__link    { padding: 0.5rem 0.75rem; font-size: 0.875rem; }
  .fm-cta          { padding: 0.7rem 1.2rem; font-size: 0.875rem; }
}

/* Mobile (Hamburger an, Nav + CTA aus) */
@media (max-width: 860px) {
  .fm-header__inner {
    height: var(--fm-h-mobile);
    padding: 0 1rem;
    gap: 1rem;
  }
  .fm-nav,
  .fm-header__inner > .fm-cta {
    display: none;
  }
  .fm-burger {
    display: inline-flex;
  }
  .fm-mobile {
    top: var(--fm-h-mobile);
  }
  .fm-mobile.is-open {
    max-height: calc(100vh - var(--fm-h-mobile));
  }
  .fm-header__spacer {
    height: var(--fm-h-mobile);
  }
  .fm-logo {
    gap: 0.7rem;
  }
  .fm-logo__badge {
    max-height: 56px;
    max-width: 72px;
  }
  .fm-logo__img {
    height: 44px !important;
    max-height: 44px !important;
    max-width: 60px !important;
  }
  .fm-logo__name {
    font-size: 1.15rem;
  }
  .fm-logo__tagline {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    margin-top: 0.4rem;
  }
}

/* Sehr schmal: Tagline ausblenden */
@media (max-width: 420px) {
  .fm-logo__tagline {
    display: none;
  }
  .fm-logo__name {
    font-size: 1.05rem;
  }
  .fm-logo__badge {
    max-height: 52px;
    max-width: 68px;
  }
  .fm-logo__img {
    height: 40px !important;
    max-height: 40px !important;
    max-width: 54px !important;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .fm-header,
  .fm-logo__badge,
  .fm-nav__link,
  .fm-nav__link::after,
  .fm-cta,
  .fm-cta__icon,
  .fm-burger,
  .fm-burger__line,
  .fm-mobile,
  .fm-mobile__link {
    transition: none !important;
  }
}/* End custom CSS */