.elementor-kit-5{--e-global-color-primary:#0c0d0f;--e-global-color-accent:#2e686b;--e-global-color-text:#0c0d0f;--e-global-color-secondary:#f0f2f4;--e-global-color-background:#fafafa;--e-global-color-section_alt:#f0f2f4;--e-global-color-muted_fg:#51565b;--e-global-color-border:#dbdee1;--e-global-color-card:#ffffff;--e-global-typography-primary-font-family:"Bricolage Grotesque";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Bricolage Grotesque";--e-global-typography-accent-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */body { background:#fafafa; color:#0c0d0f; font-family:'Inter', sans-serif; }

h1,h2,h3,h4,h5,h6 { font-family:'Bricolage Grotesque', sans-serif; letter-spacing:-0.01em; }

/* === Aspect-Ratio-Helpers (für image()-Widget mit aspect_ratio-Param) ===
   Setzt object-fit:cover + width:100% damit Image die Container-Höhe füllt
   bei den im image()-Widget ausgewählten Aspect-Ratios. */
.site-aspect-4-5 img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.site-aspect-5-4 img { aspect-ratio: 5/4; object-fit: cover; width: 100%; }
.site-aspect-16-10 img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.site-aspect-1-1 img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.site-aspect-3-2 img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.site-aspect-3-4 img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }

/* === FAQ-Toggle: Card-Rahmen + chevron-Animation ===
   Generator nutzt <details>-inline-HTML für FAQ-Accordion. Diese Regeln
   verstecken den nativen ▶︎-Marker und animieren das chevron-Icon.
   Memory: lovable-to-elementor-faq-toggle-styling.md */
.site-faq-list details > summary::-webkit-details-marker { display: none; }
.site-faq-list details[open] .site-faq-chevron { transform: rotate(180deg); }
.site-faq-list .site-faq-chevron { transition: transform .2s; }

/* === Hello-Theme Page-Title verstecken ===
   Bei Theme-Builder-Header + default Page-Template rendert Hello-Theme
   sonst doppeltes H1 (Header-Brand + Entry-Title). Memory:
   hello-elementor-page-title-hide.md */
.page-header, .entry-title { display: none; }

/* === Sticky-Header: position + Schatten beim Scroll ===
   Elementor v4 atomic ignoriert das `position: sticky` Setting auf Container,
   selbst auf Theme-Builder-Header-Templates. Wir setzen es deshalb per CSS:
   sowohl auf `<header class="elementor-location-header">` (outer wrapper) als
   auch auf `.site-header` (inner Container) — wenn nur der inner sticky ist,
   bleibt er innerhalb der outer-Wrapper-Höhe und scrollt mit raus.
   top:0 + hohe z-index, damit Header über Hero/Image bleibt. Box-Shadow erst
   wenn Elementor's Sticky-Effect `.elementor-sticky--effects` aktiv wird. */
header.elementor-location-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header.elementor-sticky--effects,
header.elementor-location-header.elementor-sticky--effects {
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* === Header Mobile: Desktop-Nav verstecken ===
   `.site-nav-desktop` Container nur auf >=768 anzeigen. Mobile bekommt
   stattdessen Hamburger oder direkten CTA-Button. */
@media (max-width: 767px) {
  .site-nav-desktop { display: none !important; }
}

/* === Map-Iframe: Wrapper-Höhe propagieren ===
   text-editor mit iframe-content + flex_align_self:stretch braucht expliziten
   height-Hint, sonst kollabiert Map auf 1px. Memory:
   lovable-to-elementor-flex-stretch-via-wrapper-css.md */
.site-map-wrap > .elementor-widget-text-editor,
.site-map-wrap > .elementor-widget-text-editor > .elementor-widget-container,
.site-map-wrap > .elementor-widget-text-editor > .elementor-widget-container > div,
.site-map-wrap iframe {
  height: 100% !important;
  min-height: 320px;
}

/* === Card-Hover: Lift-Animation ===
   Lovable Cards haben oft `hover:shadow-md transition` — wir imitieren
   das mit Translate + Shadow-Increase. Memory:
   lovable-to-elementor-card-elevation-and-hover.md */
.site-service-card,
.site-testimonial-card {
  transition: transform .25s ease, box-shadow .25s ease;
}
.site-service-card:hover,
.site-testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.12);
}

/* === v4-Atomic Button-Override (primary) ===
   Elementor v4 ignoriert button_background_color/_padding etc. */
.site-btn-primary .elementor-button {
  background-color: #0c0d0f !important;
  color: #fafafa !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  border: none !important;
}
.site-btn-primary .elementor-button:hover {
  background-color: #1a1c1f !important;
}

/* === v4-Atomic Button-Override (accent) === */
.site-btn-accent .elementor-button {
  background-color: #2e686b !important;
  color: #fafafa !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  border: none !important;
}
.site-btn-accent .elementor-button:hover {
  background-color: #225559 !important;
}

/* === v4-Atomic Button-Override (outline) === */
.site-btn-outline .elementor-button {
  background-color: rgba(255,255,255,0) !important;
  color: #0c0d0f !important;
  padding: 12px 24px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  border: 1px solid #dbdee1 !important;
}
.site-btn-outline .elementor-button:hover {
  background-color: rgba(0,0,0,0.05) !important;
  color: #0c0d0f !important;
}

/* === Section-Alt-Background (3 Sections) === */
.site-stimmen, .site-gut-zu-wissen, .site-about {
  background-color: #f0f2f4;
}

/* === Stimmen Dark-Section (modern-min Inverted) ===
   bg-foreground text-background — alle texts werden weiß auf schwarz. */
.site-stimmen, .site-stimmen .elementor-heading-title,
.site-stimmen p, .site-stimmen blockquote {
  color: #fafafa;
}
.site-stimmen .site-eyebrow span,
.site-stimmen [class*="eyebrow"] {
  color: rgba(250,250,250,0.7);
}
/* Card-content reduzieren um Lichtwerk-Lov-Card-Höhe zu matchen
   (Lov hat flex-grow blockquote → quote nimmt volle card-Width inkl. padding;
   bei WP rendert blockquote nur (card-w - 2*padding) wide → mehr Wraps).
   Workaround: card-internal-flex-gap reduzieren + blockquote-margin-x negative. */
.site-testimonial-card { gap: 12px !important; }
.site-testimonial-card blockquote {
  margin-left: -16px !important;
  margin-right: -16px !important;
}

/* === FAQ Mobile: Item-Padding für Drift-Reduktion === */
@media (max-width: 767px) {
  .site-faq-list-split details summary { padding: 28px 0 !important; }
}

/* === Kontakt Desktop: info-items kompakter, map-Höhe matched Lov === */
@media (min-width: 768px) {
  #kontakt .site-contact-info > div > div { margin-bottom: 16px !important; }
  #kontakt .elementor-widget-html [style*="aspect-ratio"] { min-height: 0 !important; max-height: 240px; }
}

.site-hairline { display: none; }

/* === Lichtwerk Termin: mobile full-width fields ===
   Completeness-Fix 2026-05-11: Lovable nutzt Desktop 2-col fuer Wunschdatum/Ort,
   aber Mobile single-column im 36rem Container. Override nur mobil, weil inline
   grid-template-columns sonst auf 393px zwei zu schmale Felder erzwingt. */
@media (max-width: 767px) {
  #termin .site-termin-inner div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}/* End custom CSS */