/* =========================================================
   Fliederweg – Custom CSS
   Ergänzungen, die theme.json nicht abdeckt
   ========================================================= */

:root {
  --fw-cream: #faf6f1;
  --fw-cream-deep: #f2ebe0;
  --fw-flieder: #b8a4d4;
  --fw-flieder-soft: #e4d7ec;
  --fw-flieder-deep: #8b6fa8;
  --fw-aubergine: #3d2f4a;
  --fw-gold: #c9a876;
  --fw-text: #2a2333;
  --fw-text-soft: #6b5d7a;
  --fw-shadow-sm: 0 2px 8px rgba(61, 47, 74, 0.06);
  --fw-shadow-md: 0 8px 32px rgba(61, 47, 74, 0.08);
  --fw-shadow-lg: 0 20px 60px rgba(61, 47, 74, 0.12);
}

html { scroll-behavior: smooth; }

body {
  overflow-x: clip; /* clip statt hidden – verhindert dass sticky-Positionierung bricht */
}

/* Dezente Papier-Textur über der gesamten Seite */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 1;
}

/* ---------- Sticky Header ---------- */
/*
  backdrop-filter auf ::before ausgelagert – damit wird der Header NICHT zum
  Containing-Block für fixed-positionierte Kindelemente (Nav-Overlay).
*/
header.wp-block-group {
  position: sticky;
  top: 0;
  z-index: 200;
  background: transparent !important;
  transition: box-shadow 0.3s ease, transform 0.35s ease;
}

header.wp-block-group.fw-hidden {
  transform: translateY(-110%);
}

header.wp-block-group::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

/* Inhalte im Header über dem ::before halten */
header.wp-block-group > * {
  position: relative;
  z-index: 1;
}

header.wp-block-group.fw-scrolled {
  box-shadow: 0 2px 24px rgba(61, 47, 74, 0.09);
}

/* ---------- Navigation ---------- */
.wp-block-site-title a,
.wp-block-site-title a:hover {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  text-decoration: none;
  color: var(--fw-aubergine);
  font-size: 1.6rem;
}

.fw-nav-cta {
  background: var(--fw-aubergine);
  color: var(--fw-cream) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 999px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.fw-nav-cta:hover {
  background: var(--fw-flieder-deep);
  transform: translateY(-1px);
}

/* Desktop-Links: Unterstrich-Hover über Parent-Nav-Block */
.fw-main-nav .wp-block-navigation-item:not(.fw-nav-cta)
.wp-block-navigation-item__content {
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

.fw-main-nav .wp-block-navigation-item:not(.fw-nav-cta)
.wp-block-navigation-item__content::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--fw-flieder-deep);
  transition: width 0.3s ease;
}

.fw-main-nav .wp-block-navigation-item:not(.fw-nav-cta)
.wp-block-navigation-item__content:hover::after { width: 100%; }

/* ---------- Mobile Nav: Hamburger- & Schliessen-Button ---------- */
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  color: var(--fw-aubergine) !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  padding: 0.25rem !important;
}

.wp-block-navigation__responsive-container-open svg,
.wp-block-navigation__responsive-container-close svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ---------- Mobile Nav: Overlay-Container ---------- */
/*
  position: fixed + inset: 0 zwingt das Overlay ins Viewport-Koordinatensystem.
  Ohne dies bleibt es im Stacking-Context des Headers gefangen (z-Index hilft dort nicht).
*/
.wp-block-navigation__responsive-container.is-menu-open {
  position: fixed !important;
  inset: 0 !important;
  background: var(--fw-cream) !important;
  z-index: 99999 !important;
  padding: 0 !important;
  overflow-y: auto !important;
}

/* Dialog innen */
.wp-block-navigation__responsive-container.is-menu-open
.wp-block-navigation__responsive-dialog {
  padding: 1.5rem 2rem 3rem !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100%;
}

/* Schliessen-Zeile */
.wp-block-navigation__responsive-container.is-menu-open
.wp-block-navigation__responsive-close {
  display: flex !important;
  justify-content: flex-end !important;
  margin-bottom: 2rem !important;
}

/* Listen-Container im Overlay */
.wp-block-navigation__responsive-container.is-menu-open
.wp-block-navigation__container {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
  width: 100% !important;
}

/* Jeder Eintrag */
.wp-block-navigation__responsive-container.is-menu-open
.wp-block-navigation-item {
  width: 100% !important;
}

/* Link-Text */
.wp-block-navigation__responsive-container.is-menu-open
.wp-block-navigation-item__content {
  font-family: 'Fraunces', Georgia, serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: var(--fw-aubergine) !important;
  text-decoration: none !important;
  padding: 0.75rem 0 !important;
  border-bottom: 1px solid rgba(184, 164, 212, 0.2) !important;
  display: block !important;
  width: 100% !important;
  transition: color 0.2s ease, padding-left 0.2s ease !important;
}

.wp-block-navigation__responsive-container.is-menu-open
.wp-block-navigation-item__content:hover {
  color: var(--fw-flieder-deep) !important;
  padding-left: 0.5rem !important;
}

/* CTA-Eintrag (Erstgespräch) im Overlay */
.wp-block-navigation__responsive-container.is-menu-open
.fw-nav-cta .wp-block-navigation-item__content {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  background: var(--fw-aubergine) !important;
  color: var(--fw-cream) !important;
  border-radius: 999px !important;
  padding: 0.85rem 1.8rem !important;
  border-bottom: none !important;
  display: inline-block !important;
  width: auto !important;
  margin-top: 2rem !important;
}

.wp-block-navigation__responsive-container.is-menu-open
.fw-nav-cta .wp-block-navigation-item__content:hover {
  background: var(--fw-flieder-deep) !important;
  padding-left: 1.8rem !important;
}

/* ---------- Eyebrow label ---------- */
.fw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fw-flieder-soft);
  color: var(--fw-aubergine);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.fw-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--fw-flieder-deep);
  border-radius: 50%;
}

.fw-section-eyebrow {
  font-size: 0.85rem;
  color: var(--fw-flieder-deep);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ---------- Italic accent in headings ---------- */
.fw-accent {
  font-style: italic;
  color: var(--fw-flieder-deep);
  font-weight: 300;
}

/* ---------- Kein Block-Gap zwischen Header und erster Sektion ---------- */
.wp-site-blocks {
  padding-top: 0 !important;
  row-gap: 0 !important;
}

/* Hero: etwas Luft nach innen, aber kein Abstand nach aussen */
#hero {
  padding-top: 2.5rem !important;
  margin-top: 0 !important;
}

/* ---------- Hero image shape ---------- */
.fw-hero-image img {
  border-radius: 180px 180px 30px 30px !important;
  box-shadow: var(--fw-shadow-lg);
}

.fw-about-image img {
  border-radius: 30px 30px 180px 180px !important;
  box-shadow: var(--fw-shadow-lg);
}

/* ---------- Badge card (hero) ---------- */
.fw-badge {
  background: #ffffff;
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  box-shadow: var(--fw-shadow-md);
}

/* ---------- Offer cards ---------- */
.fw-offer-card {
  background: #ffffff !important;
  padding: 2.5rem !important;
  border-radius: 24px !important;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.fw-offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--fw-flieder-soft), var(--fw-flieder-deep), var(--fw-flieder-soft));
  border-radius: 0 0 3px 3px;
  transition: width 0.45s ease;
}

.fw-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fw-shadow-lg);
  border-color: var(--fw-flieder-soft);
}

.fw-offer-card:hover::before {
  width: 100%;
}

.fw-offer-icon {
  width: 56px; height: 56px;
  background: var(--fw-flieder-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Target group section (dark) ---------- */
.fw-target-section {
  border-radius: 40px;
  margin: 3rem 2rem;
  padding: 5rem 2rem;
  color: var(--fw-cream) !important;
}

.fw-target-section p,
.fw-target-section h2,
.fw-target-section h3 {
  color: var(--fw-cream) !important;
}

.fw-target-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.9rem !important;
  padding: 1.25rem 1.5rem !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(184, 164, 212, 0.3) !important;
  color: var(--fw-cream) !important;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease !important;
  cursor: default;
}

.fw-target-item::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--fw-flieder);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45em;
}

.fw-target-item:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(184, 164, 212, 0.65) !important;
}

/* ---------- Process step number ---------- */
.fw-step-number {
  font-family: 'Fraunces', serif !important;
  font-size: 3rem !important;
  font-style: italic;
  color: var(--fw-flieder);
  line-height: 1;
  font-weight: 300;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

/* ---------- Ablauf: eigener Creme-Hintergrund ---------- */
#ablauf {
  background: var(--fw-cream-deep);
}

/* ---------- Ablauf: Hover auf Schritt-Spalten ---------- */
.fw-process-cols > .wp-block-column {
  padding: 1.5rem 1rem;
  border-radius: 16px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.fw-process-cols > .wp-block-column:hover {
  transform: translateY(-5px);
  background: rgba(184, 164, 212, 0.07);
}

.fw-process-cols > .wp-block-column:hover .fw-step-number {
  color: var(--fw-flieder-deep);
  transform: scale(1.1);
}

/* ---------- Contact form styling (works with Fluent Forms & CF7) ---------- */
.fw-form-wrap {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 24px;
  box-shadow: var(--fw-shadow-md);
  align-self: flex-start;
}

.fw-form-wrap input[type="text"],
.fw-form-wrap input[type="email"],
.fw-form-wrap input[type="tel"],
.fw-form-wrap textarea,
.fw-form-wrap select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(61, 47, 74, 0.15);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--fw-cream);
  color: var(--fw-text);
  transition: all 0.3s ease;
}

.fw-form-wrap input:focus,
.fw-form-wrap textarea:focus,
.fw-form-wrap select:focus {
  outline: none;
  border-color: var(--fw-flieder-deep);
  background: #ffffff;
  box-shadow: 0 0 0 3px var(--fw-flieder-soft);
}

.fw-form-wrap textarea {
  min-height: 90px;
  resize: vertical;
}

/* Fluent Forms: Abstände zwischen Feldern reduzieren */
.fw-form-wrap .ff-el-group {
  margin-bottom: 0.75rem !important;
}

.fw-form-wrap .ff-el-form-control {
  padding: 0.6rem 0.85rem !important;
  font-size: 0.95rem !important;
  border-radius: 10px !important;
}

.fw-form-wrap .ff-el-form-group label,
.fw-form-wrap .ff-el-group label {
  font-size: 0.9rem !important;
  margin-bottom: 0.3rem !important;
}

.fw-form-wrap button[type="submit"],
.fw-form-wrap input[type="submit"],
.fw-form-wrap .ff-btn,
.fw-form-wrap .ff-btn-submit,
.fw-form-wrap .ff-btn-md {
  background: var(--fw-aubergine) !important;
  color: var(--fw-cream) !important;
  padding: 0.95rem 1.8rem !important;
  border-radius: 999px !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 600 !important;
  border: none !important;
  cursor: pointer;
  transition: all 0.3s ease !important;
  box-shadow: none !important;
}

.fw-form-wrap button[type="submit"]:hover,
.fw-form-wrap input[type="submit"]:hover,
.fw-form-wrap .ff-btn:hover,
.fw-form-wrap .ff-btn-submit:hover {
  background: var(--fw-flieder-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(61, 47, 74, 0.18) !important;
}

/* ---------- Reveal animation on scroll ---------- */
.fw-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fw-reveal.fw-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Richtungsbasierte Varianten */
.fw-reveal.fw-reveal-left  { transform: translateX(-50px); }
.fw-reveal.fw-reveal-right { transform: translateX(50px); }
.fw-reveal.fw-reveal-left.fw-visible,
.fw-reveal.fw-reveal-right.fw-visible { transform: translateX(0); }

/* Stagger-Delays für direkt verschachtelte Spalten */
.wp-block-columns > .fw-reveal:nth-child(2) { transition-delay: 0.12s; }
.wp-block-columns > .fw-reveal:nth-child(3) { transition-delay: 0.24s; }
.wp-block-columns > .fw-reveal:nth-child(4) { transition-delay: 0.36s; }

/* Stagger für Zielgruppen-Items (Paragraphen im gleichen Parent) */
.fw-target-item.fw-reveal:nth-child(2) { transition-delay: 0.1s; }
.fw-target-item.fw-reveal:nth-child(3) { transition-delay: 0.2s; }

/* ---------- Hero-Bild: sanftes Schweben ---------- */
@keyframes fw-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.fw-hero-image.fw-visible img {
  animation: fw-float 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fw-reveal,
  .fw-reveal.fw-reveal-left,
  .fw-reveal.fw-reveal-right { opacity: 1; transform: none; transition: none; }
  .fw-hero-image.fw-visible img,
  .fw-visible .fw-step-number,
  .fw-visible .fw-section-eyebrow,
  .fw-visible .fw-accent,
  #hero::before,
  #hero::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Eyebrow in dunklen Sektionen: heller Flieder statt Flieder-tief ---------- */
.fw-target-section .fw-section-eyebrow,
.fw-target-section .has-flieder-color {
  color: var(--fw-flieder) !important;
}

/* ---------- Footer: Lesbarkeit ---------- */
footer.wp-block-group a,
footer.wp-block-group a:visited {
  color: var(--fw-flieder-soft) !important;
  text-decoration: none;
}

footer.wp-block-group a:hover {
  color: var(--fw-cream) !important;
  text-decoration: underline;
}

footer.wp-block-group p,
footer.wp-block-group h4 {
  color: var(--fw-cream) !important;
}

/* ---------- Hero: Trust-Bar ---------- */
.fw-trust-bar p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.fw-trust-bar p::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--fw-flieder);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Über mich: Zitat-Block ---------- */
.fw-quote-block {
  position: relative;
}

.fw-quote-block::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--fw-flieder);
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- Hero: sanfte Hintergrund-Blobs ---------- */
#hero {
  position: relative;
  overflow: hidden;
}

#hero > * { position: relative; z-index: 1; }

@keyframes fw-blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18px, -14px) scale(1.04); }
  66%       { transform: translate(-12px, 8px) scale(0.97); }
}

#hero::before {
  content: '';
  position: absolute;
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--fw-flieder-soft) 0%, transparent 70%);
  top: -180px; right: -120px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: fw-blob-drift 20s ease-in-out infinite;
}

#hero::after {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,168,118,0.18) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: fw-blob-drift 26s ease-in-out infinite reverse;
}

/* ---------- Abschnittstitel: Letter-Spacing Settle ---------- */
@keyframes fw-eyebrow-settle {
  from { letter-spacing: 0.35em; }
  to   { letter-spacing: 0.15em; }
}

.fw-visible .fw-section-eyebrow {
  animation: fw-eyebrow-settle 0.9s ease both;
}

/* ---------- Kursive Akzent-Wörter: Farbübergang ---------- */
@keyframes fw-accent-settle {
  from { color: var(--fw-flieder); }
  to   { color: var(--fw-flieder-deep); }
}

.fw-visible .fw-accent {
  animation: fw-accent-settle 1.1s ease both 0.35s;
}

/* ---------- Ablauf: Schritt-Nummern Pop-Animation ---------- */
@keyframes fw-step-pop {
  0%   { transform: scale(0.55); }
  65%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.fw-visible .fw-step-number {
  animation: fw-step-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.fw-process-cols > .fw-reveal:nth-child(2).fw-visible .fw-step-number { animation-delay: 0.12s; }
.fw-process-cols > .fw-reveal:nth-child(3).fw-visible .fw-step-number { animation-delay: 0.24s; }
.fw-process-cols > .fw-reveal:nth-child(4).fw-visible .fw-step-number { animation-delay: 0.36s; }

/* ---------- Ablauf: dezente Verbindungslinie ---------- */
.fw-process-cols {
  position: relative;
}

.fw-process-cols::before {
  content: '';
  position: absolute;
  top: 1.6rem;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    var(--fw-flieder) 15%,
    var(--fw-flieder) 85%,
    transparent 100%
  );
  opacity: 0.2;
  pointer-events: none;
}

/* =============================================================
   RESPONSIVE SYSTEM
   Breakpoints:
   – 1024px  Tablet gross: Animationsoffset reduzieren
   –  900px  Tablet mittel: Zielgruppe, Blobs
   –  781px  Mobil (WP Stack-Breakpoint): Padding, Layout
   –  600px  Mobil mittel: Ablauf 2×2
   –  480px  Klein-Mobil: maximale Kompaktheit
   ============================================================= */

/* --- Tablet gross (≤1024px) --------------------------------- */
@media (max-width: 1024px) {
  /* Animationsoffset auf Tablet reduzieren */
  .fw-reveal.fw-reveal-left  { transform: translateX(-35px); }
  .fw-reveal.fw-reveal-right { transform: translateX(35px); }
}

/* --- Tablet mittel (≤900px) --------------------------------- */
@media (max-width: 900px) {
  .fw-target-section { margin: 2rem 1rem; border-radius: 28px; padding: 3rem 1.5rem; }
  .fw-process-cols::before { display: none; }
  #hero::before { width: 300px; height: 300px; }
  #hero::after  { display: none; }
}

/* --- Mobil (≤781px, WP-Stack-Grenze) ----------------------- */
@media (max-width: 781px) {
  /* Animationsoffset weiter reduzieren */
  .fw-reveal.fw-reveal-left  { transform: translateX(-25px); }
  .fw-reveal.fw-reveal-right { transform: translateX(25px); }

  /* Hero: wenig Abstand oben, Image-Kurve mobil-freundlicher */
  #hero { padding-top: 2rem !important; padding-bottom: 3rem !important; }
  .fw-hero-image img  { border-radius: 60px 60px 20px 20px !important; }
  .fw-about-image img { border-radius: 20px 20px 60px 60px !important; }

  /* Hauptsektionen: kompakteres Padding (nicht fw-target-section) */
  #ueber, #angebot, #ablauf, #kontakt {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  /* Angebotskarten */
  .fw-offer-card { padding: 1.75rem !important; }

  /* Schritt-Nummern */
  .fw-step-number { font-size: 2.2rem !important; }

  /* Ablauf-Spalten: kein Hover-Padding auf Mobile */
  .fw-process-cols > .wp-block-column { padding: 0.75rem 0.5rem; }

  /* Zielgruppe-Items */
  .fw-target-item { padding: 1rem 1.25rem !important; }

  /* Zitat */
  .fw-quote-block::before { font-size: 4rem; }

  /* Trust-Bar */
  .fw-trust-bar { gap: 1rem !important; }

  /* Formular */
  .fw-form-wrap { padding: 1.25rem !important; align-self: stretch; }

  /* Nav CTA */
  .fw-nav-cta { padding: 0.5rem 1rem !important; font-size: 0.9rem !important; }

  /* Offer-Card Hover-Linie deaktivieren (kein Hover auf Touch) */
  .fw-offer-card::before { display: none; }
}

/* --- Ablauf 2×2 (600px–781px) ------------------------------ */
@media (min-width: 600px) and (max-width: 781px) {
  .fw-process-cols {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
  }
  .fw-process-cols > .wp-block-column {
    width: 100% !important;
    flex-basis: auto !important;
    min-width: 0 !important;
  }
}

/* --- Klein-Mobil (≤480px) ---------------------------------- */
@media (max-width: 480px) {
  #hero { padding-top: 1.5rem !important; }

  #ueber, #angebot, #ablauf, #kontakt {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .fw-target-section {
    margin: 1.5rem 0.5rem;
    padding: 2.5rem 1.25rem;
  }

  /* Titel auf kleinen Screens */
  .fw-section-eyebrow { font-size: 0.78rem; letter-spacing: 0.1em; }
}
