/* ============================================================
   FUER WEN
   ============================================================ */

/* ---- FÜR WEN — FULLBLEED IMAGE PANELS ---- */

.fuer-wen {
  padding: 160px 0 120px;
  background: transparent;
  text-align: center;
  position: relative;
  z-index: 3;
  transform: translateZ(0);
}

.fuer-wen .eyebrow { margin-bottom: 14px; }

.fw-h {
  font-size: 64px;
  font-weight: 600;
  color: #111;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 96px;
}

/* Panel row — full bleed, 3:2 ratio */

.fw-panels {
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 80vh;
  overflow: hidden;
}

.fw-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  background: #C489FF;
}

.fw-panel:hover { flex: 1.9; }

/* Image — slightly desaturated at rest, full color on hover */

.fw-panel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.35) brightness(1.03) contrast(1.03);
  transition: filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.fw-panel:hover .fw-panel-img {
  filter: saturate(1) brightness(1) contrast(1);
}

/* Vertical tint — bottom up, fades out toward top */

.fw-panel-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(192, 132, 252, 0.85) 0%,
    rgba(196, 137, 255, 0.6) 25%,
    rgba(159, 173, 255, 0.3) 55%,
    transparent 85%
  );
  mix-blend-mode: screen;
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.fw-panel:hover .fw-panel-tint { opacity: 0.3; }

/* Soft edge vignette for cohesive panel transitions */

.fw-panel-edges {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(120, 90, 200, 0.18) 0%,
    transparent 8%,
    transparent 92%,
    rgba(120, 90, 200, 0.18) 100%
  );
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.7s ease;
}

.fw-panel:hover .fw-panel-edges { opacity: 0.5; }

/* Center title — visible at rest */

.fw-panel-title-center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 3;
  padding: 0 24px;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fw-panel:hover .fw-panel-title-center {
  opacity: 0;
  transform: translateY(-65%);
}

.fw-panel-title-center .title {
  font-size: 56px;
  font-weight: 600;
  color: white;
  line-height: 1;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 28px rgba(40, 25, 80, 0.3);
}

/* Bottom dim overlay — only on hover */

.fw-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 60%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fw-panel:hover .fw-panel-overlay { opacity: 1; }

/* Hover content — slides up from bottom */

.fw-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 36px;
  text-align: left;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.15s, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.fw-panel:hover .fw-panel-content {
  opacity: 1;
  transform: translateY(0);
}

.fw-panel-content .title {
  font-size: 44px;
  font-weight: 600;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(40, 25, 80, 0.3);
}

.fw-panel-content .body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  font-weight: 400;
  max-width: 380px;
  margin-bottom: 16px;
}

.fw-panel-content .meta {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fw-panel-content .meta span {
  margin: 0 8px;
  opacity: 0.5;
}
