/* ─── FOTO-TRENNER ───────────────────────────────────────────────────────────── */

.photo-divider {
  position: relative;
  height: clamp(280px, 35vw, 420px);
  overflow: hidden;
}
.photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.photo-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0.18 0.04 260 / 0.35) 0%,
    oklch(0.18 0.04 260 / 0.60) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: var(--space-lg) var(--space-xl);
}
.photo-divider__caption {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: oklch(0.975 0.008 260 / 0.92);
  max-width: 640px;
  line-height: 1.5;
}
.photo-divider__credit {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  color: oklch(0.975 0.008 260 / 0.50);
  margin-top: 6px;
  letter-spacing: 0.03em;
}
@media (max-width: 640px) {
  .photo-divider__overlay { padding: var(--space-md); }
}

/* ─── NAVIGATION & HALTUNG – Foto-Hintergrund ───────────────────────────────── */

.nav-haltung-section {
  position: relative;
  overflow: hidden;
}
.nav-haltung-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.nav-haltung-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.nav-haltung-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: oklch(0.975 0.008 260 / 0.88);
}
.nav-haltung-section .container {
  position: relative;
  z-index: 1;
}

/* ─── FÜR WEGSUCHENDE ────────────────────────────────────────────────────────── */

.wegsuchende-section {
  background: var(--c-mist);
}

.wegsuchende-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 768px) {
  .wegsuchende-layout {
    grid-template-columns: 1fr;
  }
  .wegsuchende-photo { order: -1; }
}

.wegsuchende-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.wegsuchende-inner {
  text-align: left;
}

.wegsuchende-inner .eyebrow {
  justify-content: flex-start;
}

.wegsuchende-body {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: oklch(0.38 0.12 265);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.wegsuchende-key {
  position: relative;
  display: inline-block;
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--c-night);
  padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
  margin: var(--space-md) 0 var(--space-lg);
  background: var(--c-paper);
  border-radius: var(--r-md);
  border-left: 4px solid var(--c-gold);
  text-align: left;
}

.wegsuchende-signature {
  margin-top: var(--space-md);
  display: flex;
  justify-content: center;
}
.wegsuchende-signature img {
  height: 56px;
  width: auto;
  opacity: 0.75;
  filter: sepia(0.2);
}

/* ─── ZITAT-ROTATOR ─────────────────────────────────────────────────────────── */

.quotes-section {
  background: var(--c-paper);
  padding: var(--space-lg) 0;
}

.quotes-inner {
  max-width: var(--max-w-text);
  margin: 0 auto;
}

.quote-display {
  position: relative;
  padding: var(--space-lg) var(--space-xl);
  background: var(--c-mist);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--c-gold);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 640px) {
  .quote-display { padding: var(--space-md); }
}

.quote-display::before {
  content: '\201C'; /* " — großes dekoratives Öffnungszeichen, absolut positioniert */
  position: absolute;
  top: 12px;
  left: 28px;
  font-size: 6rem;
  line-height: 1;
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--c-gold);
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.quote-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-night);
  transition: opacity 200ms ease, transform 200ms ease;
}

.quote-meta {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity 200ms ease;
}

.quote-author {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-indigo);
}

.quote-source {
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  color: var(--c-horizon);
}

/* Übergangs-Klassen */
.quote-display.fading .quote-text,
.quote-display.fading .quote-meta {
  opacity: 0;
  transform: translateY(6px);
}

/* Navigation Pfeile */
.quote-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.quote-btn {
  background: none;
  border: 1.5px solid oklch(0.72 0.07 270 / 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-horizon);
  transition: border-color 180ms, color 180ms, background 180ms;
}
.quote-btn:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  background: oklch(0.78 0.12 72 / 0.06);
}

.quote-counter {
  font-family: var(--font-primary);
  font-size: 0.8125rem;
  color: var(--c-lavender);
  min-width: 50px;
  text-align: center;
}

/* ─── AKADEMISCHES FUNDAMENT ─────────────────────────────────────────────────── */

.akademisch-section {
  background: var(--c-paper);
}

.akademisch-portrait {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  display: block;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.akademisch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
  margin-top: var(--space-lg);
}
@media (max-width: 768px) {
  .akademisch-grid { grid-template-columns: 1fr; gap: var(--space-md); }
}

.akademisch-body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: oklch(0.38 0.12 265);
  margin-top: var(--space-md);
}

.akademisch-card {
  background: var(--c-mist);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  border: 1px solid oklch(0.72 0.07 270 / 0.2);
}

.akademisch-role {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-night);
  margin-bottom: 4px;
}

.akademisch-institution {
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  color: var(--c-horizon);
  margin-bottom: var(--space-sm);
}

.akademisch-note {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.6;
  color: oklch(0.55 0.10 268);
  border-top: 1px solid oklch(0.72 0.07 270 / 0.2);
  padding-top: var(--space-sm);
  margin-top: var(--space-sm);
}

/* ─── CTA / ZUSAMMENARBEIT ───────────────────────────────────────────────────── */

.cta-section {
  position: relative;
  background: var(--c-night);
  overflow: hidden;
}

.cta-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.cta-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    oklch(0.18 0.04 260 / 0.88) 0%,
    oklch(0.18 0.04 260 / 0.72) 50%,
    oklch(0.18 0.04 260 / 0.82) 100%
  );
}

.cta-topo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
}

.cta-glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, oklch(0.78 0.12 72 / 0.10) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-glider {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%) scaleX(-1);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
}
.cta-glider svg { width: min(35vw, 320px); height: auto; }

.cta-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w-text);
  margin: 0 auto;
  text-align: center;
}

.cta-content .eyebrow {
  justify-content: center;
  color: var(--c-horizon);
}
.cta-content .eyebrow::before {
  background: var(--c-horizon);
}

.cta-content h2 {
  color: var(--c-paper);
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: oklch(0.72 0.07 270);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}
