/*
 * FaireWolle Redesign CSS – v96
 * Erweiterung der Neve Child style.css
 * Design-Vorbild: We Are Knitters (Split-Layouts, editorial, warm-natürlich)
 * Schriften: Cormorant Garamond (Display) + Jost (Body) – via Google Fonts
 * Farben:    Cream #f7f3ee · Green #3a5c47 · Rust #b85c38 · Charcoal #2a2520
 *
 * ACHTUNG: Diese Datei NUR ergänzen, nie bestehende style.css löschen.
 * Einbindung via fw-enqueue.php (fw-redesign) – wird auf ALLEN Seiten geladen.
 */

/* ══════════════════════════════════════════════════════════
   1. DESIGN TOKENS (überschreiben die Neve-Child-Variablen
      nur für neue Komponenten – alte Werte bleiben erhalten)
   ══════════════════════════════════════════════════════════ */
:root {
  /* Neue Palette */
  --fw-cream:       #f7f3ee;
  --fw-warm:        #ede5d8;
  --fw-stone:       #d6c9b4;
  --fw-green:       #3a5c47;
  --fw-green-lt:    #4d7a5f;
  --fw-green-bg:    #e8f0eb;
  --fw-rust:        #b85c38;
  --fw-rust-lt:     #fdf0eb;
  --fw-charcoal:    #2a2520;
  --fw-mid:         #6b5f54;
  --fw-light:       #9c8e82;

  /* Schriften */
  --fw-ff-display:  'Cormorant Garamond', Georgia, serif;
  --fw-ff-body:     'Jost', 'Helvetica Neue', sans-serif;

  /* Geometrie */
  --fw-radius:      6px;
  --fw-radius-lg:   12px;
  --fw-max:         1260px;
  --fw-ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --fw-shadow:      0 4px 24px rgba(42,37,32,0.08);
  --fw-shadow-lg:   0 12px 48px rgba(42,37,32,0.12);
}

/* ══════════════════════════════════════════════════════════
   2. GOOGLE FONTS IMPORT
   ══════════════════════════════════════════════════════════ */
/* Fonts via Bunny.net (EU, DSGVO-konform, kein Google-Tracking) */
@import url('https://fonts.bunny.net/css?family=cormorant-garamond:300,300i,400,400i,600,600i|jost:300,400,500,600&display=swap');

/* ══════════════════════════════════════════════════════════
   3. GLOBALE BASIS (body-override für neue Seiten)
   ══════════════════════════════════════════════════════════ */
.fw-page {
  font-family: var(--fw-ff-body);
  color: var(--fw-charcoal);
  background: var(--fw-cream);
  -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════════════════════════
   4. NAV – STICKY REDESIGN
   ══════════════════════════════════════════════════════════ */
.fw-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--fw-cream);
  border-bottom: 1px solid var(--fw-warm);
  padding: 14px 0;
  transition: box-shadow 0.3s;
}
.fw-nav.scrolled {
  box-shadow: 0 2px 20px rgba(42,37,32,0.08);
}
.fw-nav-inner {
  max-width: var(--fw-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.fw-nav-logo {
  font-family: var(--fw-ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fw-green);
  text-decoration: none !important;
  letter-spacing: 0.01em;
}
.fw-nav-logo span { color: var(--fw-rust); }
.fw-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.fw-nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fw-mid) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.fw-nav-links a:hover,
.fw-nav-links a.active { color: var(--fw-green) !important; }
.fw-nav-cta {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border: 1.5px solid var(--fw-green);
  color: var(--fw-green) !important;
  border-radius: var(--fw-radius);
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.fw-nav-cta:hover {
  background: var(--fw-green);
  color: #fff !important;
}
.fw-nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.fw-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fw-charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}
@media (max-width: 860px) {
  .fw-nav-links { display: none; }
  .fw-nav-hamburger { display: flex; }
}
.fw-nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--fw-cream);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.fw-nav-mobile.open { display: flex; }
.fw-nav-mobile a {
  font-family: var(--fw-ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--fw-charcoal) !important;
  text-decoration: none !important;
}
.fw-nav-mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  font-size: 1.8rem; cursor: pointer;
  color: var(--fw-mid);
}

/* ══════════════════════════════════════════════════════════
   5. UTILITY CLASSES
   ══════════════════════════════════════════════════════════ */
.fw-container {
  max-width: var(--fw-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}
.fw-section {
  padding: clamp(60px, 8vw, 120px) 0;
}
.fw-section-warm { background: var(--fw-warm); }
.fw-section-dark { background: var(--fw-charcoal); }
.fw-section-white { background: #fff; }

/* Scroll-Reveal */
.fw-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--fw-ease), transform 0.8s var(--fw-ease);
}
.fw-reveal.fw-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow */
.fw-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fw-rust);
  margin-bottom: 14px;
}

/* Display Heading */
.fw-h-display {
  font-family: var(--fw-ff-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--fw-charcoal);
}
.fw-h-display em { font-style: italic; color: var(--fw-green); }

.fw-h-section {
  font-family: var(--fw-ff-display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--fw-charcoal);
}
.fw-h-section em { font-style: italic; color: var(--fw-green); }

/* Buttons */
.fw-btn {
  display: inline-block;
  font-family: var(--fw-ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--fw-radius);
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.fw-btn:hover { transform: translateY(-2px); }
.fw-btn-green {
  background: var(--fw-green);
  color: #fff !important;
  border-color: var(--fw-green);
}
.fw-btn-green:hover { background: var(--fw-green-lt); border-color: var(--fw-green-lt); }
.fw-btn-outline-dark {
  background: transparent;
  color: var(--fw-charcoal) !important;
  border-color: var(--fw-charcoal);
}
.fw-btn-outline-dark:hover { background: var(--fw-charcoal); color: #fff !important; }
.fw-btn-outline-white {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255,255,255,0.6);
}
.fw-btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.fw-btn-white {
  background: #fff;
  color: var(--fw-green) !important;
  border-color: #fff;
}
.fw-btn-white:hover { background: var(--fw-cream); }

/* ══════════════════════════════════════════════════════════
   6. STARTSEITE – HERO (SPLIT)
   ══════════════════════════════════════════════════════════ */
.fw-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  max-height: 880px;
  overflow: hidden;
}
.fw-hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px,6vw,100px) clamp(28px,5vw,80px);
  background: var(--fw-cream);
}
.fw-hero-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fw-rust);
  margin-bottom: 20px;
  animation: fw-fade-up 0.6s var(--fw-ease) 0.1s both;
}
.fw-hero-text h1 {
  font-family: var(--fw-ff-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.04;
  color: var(--fw-charcoal);
  margin: 0 0 22px;
  animation: fw-fade-up 0.7s var(--fw-ease) 0.25s both;
}
.fw-hero-text h1 em { font-style: italic; color: var(--fw-green); }
.fw-hero-lead {
  font-size: 1.05rem !important;
  line-height: 1.72 !important;
  color: var(--fw-mid) !important;
  max-width: 420px;
  margin-bottom: 34px !important;
  text-shadow: none !important;
  animation: fw-fade-up 0.7s var(--fw-ease) 0.4s both;
}
.fw-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fw-fade-up 0.7s var(--fw-ease) 0.55s both;
}
.fw-hero-image {
  overflow: hidden;
  animation: fw-fade-in 1.2s var(--fw-ease) 0.1s both;
}
.fw-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.fw-hero-split:hover .fw-hero-image img { transform: scale(1.04); }

@keyframes fw-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fw-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Search Strip */
.fw-search-strip {
  background: var(--fw-green);
  padding: 24px 0;
}
.fw-search-inner {
  display: flex;
  align-items: center;
  gap: 18px;
}
.fw-search-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
/* Styling für [fw_search_form] auf grünem Strip */
.fw-search-strip .fw-search-wrap,
.fw-search-strip .fw-search-form { flex: 1; }
.fw-search-strip input[type="text"],
.fw-search-strip input[type="search"] {
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: var(--fw-radius) !important;
  color: #fff !important;
  padding: 12px 18px !important;
}
.fw-search-strip input::placeholder { color: rgba(255,255,255,0.5) !important; }
.fw-search-strip button,
.fw-search-strip input[type="submit"] {
  background: rgba(255,255,255,0.18) !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  color: #fff !important;
  border-radius: var(--fw-radius) !important;
  padding: 12px 22px !important;
}

/* Stats Stripe */
.fw-stats-stripe {
  background: var(--fw-warm);
  border-bottom: 1px solid var(--fw-stone);
}
.fw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--fw-stone);
}
.fw-stat-item {
  background: var(--fw-warm);
  padding: 28px 20px;
  text-align: center;
}
.fw-stat-num {
  font-family: var(--fw-ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--fw-green);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.fw-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-mid);
}

/* ══════════════════════════════════════════════════════════
   7. KATEGORIE GRID (WAK Card-Stil)
   ══════════════════════════════════════════════════════════ */
.fw-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fw-cat-card {
  position: relative;
  border-radius: var(--fw-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--fw-warm);
  text-decoration: none !important;
  display: block;
}
.fw-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--fw-ease);
}
.fw-cat-card:hover img { transform: scale(1.07); }
.fw-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,37,32,0.75) 0%, transparent 55%);
  transition: background 0.4s;
}
.fw-cat-card:hover .fw-cat-overlay {
  background: linear-gradient(to top, rgba(42,37,32,0.85) 0%, rgba(42,37,32,0.18) 55%);
}
.fw-cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 18px;
  color: #fff;
}
.fw-cat-info h3 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: #fff !important;
  text-shadow: none !important;
  margin: 0 0 4px !important;
  line-height: 1.2 !important;
}
.fw-cat-info span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.fw-cat-badge-new {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--fw-green);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.fw-section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.fw-section-header .fw-section-sub {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--fw-mid);
  font-size: 0.98rem;
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════════
   8. SPLIT LAYOUT (Mission-Sektionen)
   ══════════════════════════════════════════════════════════ */
.fw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.fw-split.fw-split-reverse .fw-split-img { order: -1; }
.fw-split-img {
  border-radius: var(--fw-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.fw-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--fw-ease);
}
.fw-split-img:hover img { transform: scale(1.03); }
.fw-split-text .fw-eyebrow { text-align: left; }
.fw-split-text h2 {
  font-family: var(--fw-ff-display) !important;
  font-size: clamp(1.8rem, 3.2vw, 3rem) !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  color: var(--fw-charcoal) !important;
  margin-bottom: 18px !important;
  text-shadow: none !important;
}
.fw-split-text h2 em { font-style: italic; color: var(--fw-green); }
.fw-split-text p {
  color: var(--fw-mid) !important;
  line-height: 1.75 !important;
  font-size: 0.98rem !important;
  margin-bottom: 14px !important;
  text-shadow: none !important;
}
/* Check-List neu */
.fw-checklist-new {
  list-style: none !important;
  padding: 0 !important; margin: 20px 0 28px !important;
}
.fw-checklist-new li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid var(--fw-warm) !important;
  font-size: 0.9rem !important;
  color: var(--fw-charcoal) !important;
  text-shadow: none !important;
}
.fw-checklist-new li::before {
  content: '';
  display: block;
  width: 18px; height: 18px; min-width: 18px;
  background: var(--fw-green);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3 3 7-7' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   9. PROMOTIONS GRID
   ══════════════════════════════════════════════════════════ */
.fw-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fw-promo-card {
  background: #fff;
  border: 1px solid var(--fw-warm);
  border-radius: var(--fw-radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.fw-promo-card:hover {
  box-shadow: var(--fw-shadow-lg);
  transform: translateY(-4px);
}
.fw-promo-img { aspect-ratio: 16/9; overflow: hidden; }
.fw-promo-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--fw-ease);
}
.fw-promo-card:hover .fw-promo-img img { transform: scale(1.06); }
.fw-promo-body { padding: 18px 20px 22px; }
.fw-promo-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fw-rust);
  margin-bottom: 8px;
}
.fw-promo-body h3 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 8px !important;
  line-height: 1.3 !important;
  text-shadow: none !important;
}
.fw-promo-body p {
  font-size: 0.86rem !important;
  color: var(--fw-mid) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-shadow: none !important;
}

/* ══════════════════════════════════════════════════════════
   10. FDM BANNER (grün)
   ══════════════════════════════════════════════════════════ */
.fw-fdm-wrap {
  background: var(--fw-green);
  border-radius: var(--fw-radius-lg);
  padding: clamp(36px, 5vw, 60px) clamp(32px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.fw-fdm-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: block; margin-bottom: 12px;
}
.fw-fdm-wrap h2 {
  font-family: var(--fw-ff-display) !important;
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 300 !important;
  color: #fff !important;
  margin: 0 0 10px !important;
  line-height: 1.15 !important;
  text-shadow: none !important;
}
.fw-fdm-wrap h2 em { font-style: italic; }
.fw-fdm-wrap p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.95rem !important;
  max-width: 460px;
  line-height: 1.7 !important;
  margin: 0 !important;
  text-shadow: none !important;
}

/* ══════════════════════════════════════════════════════════
   11. QUOTE BLOCK (dunkel)
   ══════════════════════════════════════════════════════════ */
.fw-quotes-dark {
  background: var(--fw-charcoal);
  padding: clamp(60px, 8vw, 100px) 0;
}
.fw-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.fw-quote-item {
  padding: 44px 36px;
  background: var(--fw-charcoal);
}
.fw-quote-mark-big {
  font-family: var(--fw-ff-display);
  font-size: 4rem;
  line-height: 0.8;
  color: var(--fw-green);
  display: block;
  margin-bottom: 16px;
}
.fw-quote-item blockquote {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.2rem !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: rgba(255,255,255,0.88) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
  text-shadow: none !important;
}

/* ══════════════════════════════════════════════════════════
   12. JOIN CTA
   ══════════════════════════════════════════════════════════ */
.fw-join-section {
  background: var(--fw-warm);
  padding: clamp(80px, 10vw, 140px) 0;
}
.fw-join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.fw-join-text h2 {
  font-family: var(--fw-ff-display) !important;
  font-size: clamp(2.2rem, 4vw, 3.6rem) !important;
  font-weight: 300 !important;
  line-height: 1.05 !important;
  color: var(--fw-charcoal) !important;
  margin-bottom: 18px !important;
  text-shadow: none !important;
}
.fw-join-text h2 em { font-style: italic; color: var(--fw-green); }
.fw-join-text p {
  color: var(--fw-mid) !important;
  font-size: 0.98rem !important;
  line-height: 1.75 !important;
  margin-bottom: 28px !important;
  max-width: 400px;
  text-shadow: none !important;
}
.fw-join-img {
  border-radius: var(--fw-radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.fw-join-img img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════
   13. KARTE SEITE
   ══════════════════════════════════════════════════════════ */
.fw-karte-page { min-height: 100vh; background: var(--fw-cream); }
.fw-karte-header {
  padding: clamp(40px, 6vw, 80px) 0 clamp(32px, 4vw, 56px);
  background: var(--fw-warm);
  border-bottom: 1px solid var(--fw-stone);
}
.fw-karte-header h1 {
  font-family: var(--fw-ff-display) !important;
  font-size: clamp(1.8rem, 3.5vw, 3rem) !important;
  font-weight: 300 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 12px !important;
  text-shadow: none !important;
}
.fw-karte-header h1 em { font-style: italic; color: var(--fw-green); }
.fw-karte-header p {
  color: var(--fw-mid) !important;
  font-size: 1rem !important;
  max-width: 560px;
  line-height: 1.7 !important;
  text-shadow: none !important;
}
.fw-karte-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  min-height: 70vh;
}
.fw-karte-sidebar {
  background: #fff;
  border-right: 1px solid var(--fw-warm);
  padding: 28px 20px;
  overflow-y: auto;
}
.fw-karte-sidebar h3 {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--fw-mid) !important;
  margin: 0 0 16px !important;
}
.fw-filter-group { margin-bottom: 24px; }
.fw-filter-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--fw-charcoal);
  border-bottom: 1px solid var(--fw-warm);
}
.fw-filter-label input[type="checkbox"] {
  accent-color: var(--fw-green);
  width: 16px; height: 16px;
}
.fw-filter-count {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--fw-light);
  background: var(--fw-warm);
  padding: 2px 8px;
  border-radius: 10px;
}
.fw-karte-map-wrap {
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
}
/* Override Leaflet-Map container */
.fw-karte-map-wrap #fw-karte-container,
.fw-karte-map-wrap .fw-map-container {
  height: 100% !important;
  width: 100% !important;
  border-radius: 0 !important;
}
.fw-karte-cta {
  background: var(--fw-warm);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--fw-stone);
}
.fw-karte-cta p {
  color: var(--fw-mid) !important;
  margin-bottom: 18px !important;
  font-size: 1rem !important;
}
@media (max-width: 768px) {
  .fw-karte-body { grid-template-columns: 1fr; }
  .fw-karte-sidebar { border-right: none; border-bottom: 1px solid var(--fw-warm); max-height: 220px; }
  .fw-karte-map-wrap { position: static; height: 60vw; min-height: 300px; }
}

/* ══════════════════════════════════════════════════════════
   14. EVENTS SEITE
   ══════════════════════════════════════════════════════════ */
.fw-events-page { background: var(--fw-cream); min-height: 100vh; }
.fw-events-header {
  padding: clamp(48px, 6vw, 80px) 0 clamp(36px, 5vw, 60px);
  background: var(--fw-warm);
  border-bottom: 1px solid var(--fw-stone);
}
.fw-events-header h1 {
  font-family: var(--fw-ff-display) !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 300 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 14px !important;
  text-shadow: none !important;
}
.fw-events-header h1 em { font-style: italic; color: var(--fw-green); }
.fw-events-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.fw-filter-pill {
  padding: 7px 18px;
  border: 1.5px solid var(--fw-stone);
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  background: #fff;
  color: var(--fw-mid);
  transition: all 0.2s;
}
.fw-filter-pill:hover,
.fw-filter-pill.active {
  background: var(--fw-green);
  color: #fff;
  border-color: var(--fw-green);
}
/* Events-Grid nutzt bestehenden [fw_veranstaltungen] Output */
.fw-events-grid-wrap {
  padding: clamp(40px, 6vw, 80px) 0;
}
/* Override für fw_veranstaltungen Shortcode-Output */
.fw-events-page .fw-vk-grid {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
  gap: 20px !important;
}
.fw-events-page .fw-vk-card {
  border-radius: var(--fw-radius-lg) !important;
  border: 1px solid var(--fw-warm) !important;
  box-shadow: none !important;
  transition: box-shadow 0.3s, transform 0.3s !important;
}
.fw-events-page .fw-vk-card:hover {
  box-shadow: var(--fw-shadow-lg) !important;
  transform: translateY(-3px) !important;
}
.fw-events-submit-cta {
  background: var(--fw-charcoal);
  border-radius: var(--fw-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 0 clamp(40px, 6vw, 80px);
}
.fw-events-submit-cta h3 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  color: #fff !important;
  margin: 0 0 8px !important;
  text-shadow: none !important;
}
.fw-events-submit-cta p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
  text-shadow: none !important;
}

/* ══════════════════════════════════════════════════════════
   15. EINTRAGEN SEITE (Conversion-Optimiert)
   ══════════════════════════════════════════════════════════ */
.fw-eintragen-page { background: var(--fw-cream); }
.fw-eintragen-header {
  padding: clamp(48px, 6vw, 80px) 0 clamp(36px, 5vw, 60px);
  background: var(--fw-warm);
  border-bottom: 1px solid var(--fw-stone);
}
.fw-eintragen-header h1 {
  font-family: var(--fw-ff-display) !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 300 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 14px !important;
  text-shadow: none !important;
}
.fw-eintragen-header h1 em { font-style: italic; color: var(--fw-green); }
.fw-eintragen-header p {
  color: var(--fw-mid) !important;
  font-size: 1.05rem !important;
  max-width: 520px;
  line-height: 1.72 !important;
  text-shadow: none !important;
}
/* Benefits Grid */
.fw-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: clamp(40px, 5vw, 64px) 0;
}
.fw-benefit-card {
  background: #fff;
  border: 1px solid var(--fw-warm);
  border-radius: var(--fw-radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.fw-benefit-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.fw-benefit-card h3 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 8px !important;
  text-shadow: none !important;
}
.fw-benefit-card p {
  font-size: 0.86rem !important;
  color: var(--fw-mid) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  text-shadow: none !important;
}
/* Example Entry Preview */
.fw-example-entry {
  background: #fff;
  border: 1px solid var(--fw-warm);
  border-radius: var(--fw-radius-lg);
  padding: 28px;
  margin-bottom: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.fw-example-logo {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--fw-warm);
  border: 3px solid var(--fw-stone);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.fw-example-text h3 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.3rem !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 6px !important;
  text-shadow: none !important;
}
.fw-example-tag {
  display: inline-block;
  background: var(--fw-green-bg);
  color: var(--fw-green);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}
/* FAQ Accordion */
.fw-faq-list { margin: 0; padding: 0; list-style: none; }
.fw-faq-item {
  border-bottom: 1px solid var(--fw-warm);
}
.fw-faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-family: var(--fw-ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fw-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.fw-faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--fw-green);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.fw-faq-item.open .fw-faq-question::after { transform: rotate(45deg); }
.fw-faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 0.9rem;
  color: var(--fw-mid);
  line-height: 1.7;
}
.fw-faq-item.open .fw-faq-answer { display: block; }
/* Testimonial */
.fw-testimonial {
  background: var(--fw-green);
  border-radius: var(--fw-radius-lg);
  padding: 36px 40px;
  margin: clamp(40px, 5vw, 64px) 0;
}
.fw-testimonial blockquote {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.35rem !important;
  font-weight: 300 !important;
  font-style: italic !important;
  color: #fff !important;
  margin: 0 0 16px !important;
  line-height: 1.5 !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
}
.fw-testimonial cite {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}
/* Formular-Wrapper */
.fw-form-section {
  background: #fff;
  border: 1px solid var(--fw-warm);
  border-radius: var(--fw-radius-lg);
  padding: clamp(28px, 4vw, 56px);
  margin: clamp(40px, 5vw, 64px) 0;
}
.fw-form-section h2 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 6px !important;
  text-shadow: none !important;
}
.fw-form-section .fw-form-subtitle {
  color: var(--fw-mid);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════════
   16. PODCAST SEITE
   ══════════════════════════════════════════════════════════ */
.fw-podcast-page { background: var(--fw-cream); }
.fw-podcast-hero {
  background: var(--fw-charcoal);
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  position: relative;
}
.fw-podcast-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,92,71,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.fw-podcast-hero-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.fw-podcast-cover {
  width: clamp(160px, 18vw, 260px);
  height: clamp(160px, 18vw, 260px);
  border-radius: var(--fw-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.fw-podcast-cover img { width: 100%; height: 100%; object-fit: cover; }
.fw-podcast-cover-placeholder {
  width: 100%; height: 100%;
  background: var(--fw-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.fw-podcast-meta span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 12px;
}
.fw-podcast-meta h1 {
  font-family: var(--fw-ff-display) !important;
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 300 !important;
  color: #fff !important;
  margin: 0 0 16px !important;
  line-height: 1.08 !important;
  text-shadow: none !important;
}
.fw-podcast-meta h1 em { font-style: italic; color: rgba(255,255,255,0.6); }
.fw-podcast-meta p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 1rem !important;
  max-width: 480px;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
  text-shadow: none !important;
}
.fw-podcast-subscribe {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.fw-podcast-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--fw-radius);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none !important;
  transition: background 0.2s;
}
.fw-podcast-sub-btn:hover { background: rgba(255,255,255,0.2); }
/* Episode List */
.fw-episodes-section { padding: clamp(48px, 6vw, 80px) 0; }
.fw-episode-card {
  background: #fff;
  border: 1px solid var(--fw-warm);
  border-radius: var(--fw-radius-lg);
  padding: 24px 28px;
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.fw-episode-card:hover {
  box-shadow: var(--fw-shadow);
  transform: translateY(-2px);
}
.fw-episode-num {
  font-family: var(--fw-ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--fw-stone);
  line-height: 1;
  min-width: 48px;
  text-align: right;
}
.fw-episode-info h3 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 6px !important;
  text-shadow: none !important;
}
.fw-episode-info .fw-episode-meta {
  font-size: 0.78rem;
  color: var(--fw-light);
}
.fw-episode-play {
  width: 42px; height: 42px;
  background: var(--fw-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none !important;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.fw-episode-play:hover { background: var(--fw-green-lt); transform: scale(1.08); }
.fw-episode-play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
/* Podcast CTA */
.fw-podcast-cta {
  background: var(--fw-warm);
  border-radius: var(--fw-radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.fw-podcast-cta h3 {
  font-family: var(--fw-ff-display) !important;
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  color: var(--fw-charcoal) !important;
  margin: 0 0 8px !important;
  text-shadow: none !important;
}
.fw-podcast-cta p {
  color: var(--fw-mid) !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
  text-shadow: none !important;
}

/* ══════════════════════════════════════════════════════════
   17. FOOTER (neu)
   ══════════════════════════════════════════════════════════ */
.fw-footer-new {
  background: var(--fw-charcoal);
  padding: clamp(48px, 6vw, 80px) 0 28px;
  margin-top: 0;
}
.fw-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.fw-footer-brand .fw-nav-logo { font-size: 1.5rem; display: block; margin-bottom: 14px; }
.fw-footer-brand p {
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.85rem !important;
  line-height: 1.7 !important;
  max-width: 220px;
  text-shadow: none !important;
}
.fw-footer-col h4 {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.35) !important;
  margin: 0 0 16px !important;
  text-shadow: none !important;
}
.fw-footer-col ul { list-style: none; padding: 0; margin: 0; }
.fw-footer-col li { margin-bottom: 10px; }
.fw-footer-col a {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}
.fw-footer-col a:hover { color: rgba(255,255,255,0.95) !important; }
.fw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.fw-footer-bottom p {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.3) !important;
  margin: 0 !important;
  text-shadow: none !important;
}

/* ══════════════════════════════════════════════════════════
   18. RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .fw-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .fw-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .fw-fdm-wrap { grid-template-columns: 1fr; }
  .fw-events-submit-cta { grid-template-columns: 1fr; text-align: center; }
  .fw-podcast-cta { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
  .fw-hero-split { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .fw-hero-image { display: none; }
  .fw-hero-text { min-height: 75vh; }
  .fw-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fw-split, .fw-split.fw-split-reverse { grid-template-columns: 1fr; gap: 36px; }
  .fw-split.fw-split-reverse .fw-split-img { order: 0; }
  .fw-promo-grid { grid-template-columns: 1fr; }
  .fw-quotes-grid { grid-template-columns: 1fr; }
  .fw-join-inner { grid-template-columns: 1fr; }
  .fw-benefits-grid { grid-template-columns: 1fr; }
  .fw-footer-grid { grid-template-columns: 1fr; }
  .fw-podcast-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .fw-podcast-cover { margin: 0 auto; }
  .fw-podcast-subscribe { justify-content: center; }
  .fw-episode-card { grid-template-columns: 1fr auto; }
  .fw-episode-num { display: none; }
  .fw-example-entry { grid-template-columns: 1fr; text-align: center; }
  .fw-example-logo { margin: 0 auto; }
}
@media (max-width: 480px) {
  .fw-cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fw-hero-text h1 { font-size: 2.6rem; }
}

/* ── FDM BANNER ─────────────────────────────────────── */
.fw-fdm-banner {
  display: flex;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid #ede5d8;
  border-radius: 12px;
  padding: 22px 24px;
  margin: 24px 0;
  box-shadow: 0 2px 12px rgba(42,37,32,.05);
}
.fw-fdm-banner-logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  border: 1px solid #ede5d8;
  background: #f7f3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fw-fdm-banner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fw-fdm-banner-body { flex: 1; min-width: 0; }
.fw-fdm-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b85c38;
  display: block;
  margin-bottom: 6px;
}
.fw-fdm-title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  color: #2a2520 !important;
  margin: 0 0 8px !important;
  line-height: 1.2 !important;
}
.fw-fdm-title a { color: inherit !important; text-decoration: none !important; }
.fw-fdm-title a:hover { color: #3a5c47 !important; }
.fw-fdm-excerpt {
  font-size: 0.88rem !important;
  color: #6b5f54 !important;
  margin: 0 0 14px !important;
  line-height: 1.6 !important;
}
@media (max-width: 480px) {
  .fw-fdm-banner { flex-direction: column; align-items: flex-start; }
  .fw-fdm-banner-logo { width: 60px; height: 60px; }
}
