/* ============================================================
   STARTSEITE – startseite.css
   Akzent: #e73938  |  Schrift: Inter 900/800/700/400
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */

.home-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
}

.home-hero__foto {
  position: absolute;
  inset: 0;
}

.home-hero__foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  filter: contrast(1.05) saturate(0.95) brightness(1.05);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.15) 0%,
      rgba(0,0,0,0) 30%,
      rgba(0,0,0,0) 45%,
      rgba(0,0,0,.78) 100%
    );
}

.home-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(100px, 12vw, 150px) var(--edge) 0;
}

/* EYEBROW */
.home-hero__eyebrow {
  margin: 0;
  padding: 0;
  background: transparent;
}

.home-hero__eyebrow-inner {
  font-family: Georgia, serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: #e73938;
  padding: 4px 12px;
  display: inline;
}

/* HEADLINE */
.home-hero__h1 {
  position: absolute;
  bottom: clamp(30px, 4vw, 60px);
  left: calc(var(--edge) + 10px);
  right: auto;
  text-align: left;
  max-width: 60vw;
  margin: 0;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  text-shadow: 0 2px 40px rgba(0,0,0,.5);
}

.home-hero__punkt {
  color: #e73938;
  -webkit-text-fill-color: #e73938;
}

.home-hero__h1--mobile { display: none; }

/* ============================================================
   SCHWARZE LEISTE – Navigation
   ============================================================ */

.home-hero__after {
  background: #111;
  border-top: 3px solid #e73938;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.home-hero__after-inner {
  max-width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.home-hero__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(36px, 5vw, 64px) var(--edge);
  background: #1a1a1a;
  text-decoration: none;
  transition: background .18s;
}

.home-hero__nav-nr {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  color: #e73938;
  letter-spacing: -4px;
  line-height: 1;
  flex-shrink: 0;
}

.home-hero__nav-label {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: #fff;
  flex: 1;
}

.home-hero__nav-arrow {
  font-size: clamp(24px, 3vw, 40px);
  color: rgba(255,255,255,.2);
  transition: color .18s, transform .18s;
}

.home-hero__nav:hover .home-hero__nav-arrow {
  color: #e73938;
  transform: translateX(8px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 860px) {
  .home-hero__content {
    padding-top: clamp(140px, 22vw, 200px);
  }

  .home-hero__h1--desktop { display: none; }

  .home-hero__h1--mobile {
    display: block;
    font-size: clamp(36px, 11vw, 52px);
    letter-spacing: -1px;
    bottom: clamp(160px, 30vw, 260px);
  }

  .home-hero__eyebrow-inner {
    font-size: 12px;
    padding: 3px 10px;
  }

  .home-hero__after-inner {
    grid-template-columns: 1fr;
  }

  .home-hero__nav {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}
@media (max-width: 1180px) and (min-width: 761px) {
  .home-hero__after-inner {
    grid-template-columns: 1fr;
  }
}

/* ── iPad Pro (1024px) ── */
@media (max-width: 1180px) and (min-width: 981px) {
  .home-hero__after-inner {
    grid-template-columns: 1fr;
  }

  .home-hero__h1--desktop {
    bottom: clamp(180px, 20vw, 280px);
    font-size: clamp(64px, 8vw, 100px);
  }
}

/* ── iPad Air + Mini (761px–980px) ── */
@media (max-width: 980px) and (min-width: 761px) {
  .home-hero__after-inner {
    grid-template-columns: 1fr;
  }

  .home-hero__h1--desktop { display: none; }

  .home-hero__h1--mobile {
    display: block;
    font-size: clamp(52px, 8vw, 72px);
    letter-spacing: -2px;
    bottom: clamp(220px, 28vw, 320px);
  }
}

.home-hero__h1--tablet { display: none; }

@media (max-width: 980px) and (min-width: 761px) {
  .home-hero__h1--desktop { display: none; }
  .home-hero__h1--mobile { display: none; }
  .home-hero__h1--tablet {
    display: block;
    font-size: clamp(52px, 8vw, 72px);
    letter-spacing: -2px;
    bottom: clamp(220px, 28vw, 320px);
  }
}