/* ─── HERO ──────────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100svh - 64px);
  display: flex;
  align-items: center;
  background: var(--c-night);
  overflow: hidden;
}

/* Foto-Hintergrund (wird aktiv sobald hero-bg.webp vorhanden) */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    oklch(0.18 0.04 260 / 0.85) 0%,
    oklch(0.18 0.04 260 / 0.65) 50%,
    oklch(0.18 0.04 260 / 0.80) 100%
  );
}

/* Topomap-Muster */
.hero__topo {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__topo svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

/* Gold-Glow (radialer Schimmer) */
.hero__glow {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, oklch(0.78 0.12 72 / 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Segelflugzeug-Silhouette */
.hero__glider {
  position: absolute;
  bottom: 8%;
  right: 6%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
}
.hero__glider svg {
  width: min(40vw, 400px);
  height: auto;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
@media (max-width: 640px) {
  .hero__content { padding: var(--space-lg) var(--space-sm); }
}

.hero__eyebrow {
  font-family: var(--font-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-horizon);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-horizon);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--c-paper);
  max-width: 800px;
  margin-bottom: var(--space-md);
}
.hero__title em {
  font-style: normal;
  color: var(--c-gold);
  font-weight: 500;
}

.hero__lead {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.7;
  color: oklch(0.72 0.07 270);
  max-width: 580px;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

/* Hero entrance animations */
.hero__eyebrow { animation: fadeUp 600ms var(--ease-out) 100ms both; }
.hero__title   { animation: fadeUp 600ms var(--ease-out) 220ms both; }
.hero__lead    { animation: fadeUp 600ms var(--ease-out) 360ms both; }
.hero__actions { animation: fadeUp 600ms var(--ease-out) 500ms both; }

@media (max-width: 640px) {
  .hero { min-height: calc(100svh - 64px); }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}
