/* Hero A+B – Basis-Styles für index.html (baut auf sichtwert-v9.css auf) */

.hv {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hv-ov {
  font-family: var(--m);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hv-ov::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* –– Variante A (Editorial-Layout) –– */
.hv-a {
  background: #0d0d0b;
  color: var(--on-dark);
  justify-content: flex-end;
  padding-bottom: clamp(84px, 9vh, 104px);
}

.a-bg {
  position: absolute;
  inset: -6%;
  z-index: 0;
}

.a-bg-media {
  width: 100%;
  height: 100%;
  background: url("uploads/story-shoot.jpeg") center / cover no-repeat;
  filter: blur(38px) saturate(1.25) brightness(0.62);
  transform: scale(1.1);
}

.a-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 7, 0.82) 0%,
    rgba(8, 8, 7, 0.5) 40%,
    rgba(8, 8, 7, 0.9) 100%
  );
}

.a-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  padding-top: clamp(96px, 13vh, 140px);
  padding-bottom: clamp(32px, 4vw, 56px);
  width: 100%;
}

.a-copy {
  min-width: 0;
}

.a-h1 {
  font-family: var(--d);
  font-weight: 700;
  font-size: clamp(46px, 7.4vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--on-dark);
  margin: 0;
  transform-origin: 50% 50%;
  will-change: transform;
}

.a-h1 .ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}

.a-h1 .ln i {
  display: block;
  font-style: normal;
  transform: translateY(118%);
  transition: transform 1s cubic-bezier(0.16, 0.84, 0.24, 1);
}

.a-h1 .acc {
  color: var(--accent);
}

.hv-a.lit .a-h1 .ln i {
  transform: none;
}

.hv-a.lit .a-h1 .ln:nth-child(2) i {
  transition-delay: 0.1s;
}

.a-fade {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hv-a.settled .a-fade {
  opacity: 1;
  transform: none;
}

.hv-a.settled .a-fade.d1 {
  transition-delay: 0.08s;
}

.hv-a.settled .a-fade.d2 {
  transition-delay: 0.16s;
}

.a-ovl {
  margin-bottom: clamp(20px, 2.4vw, 34px);
  color: var(--on-dark-soft);
  display: block;
}

.a-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hv .btn {
  border-color: var(--on-dark-line);
  color: var(--on-dark);
}

.hv .btn-primary {
  border-color: transparent;
  color: var(--accent-ink);
  background: var(--accent);
}

.hv .btn-primary:hover {
  transform: translateY(-2px);
}

.hv .btn-ghost:hover {
  background: var(--on-dark);
  color: var(--ink);
  border-color: var(--on-dark);
}

.a-reel {
  position: relative;
  aspect-ratio: 4 / 5;
  height: min(58vh, 560px);
  justify-self: end;
  width: auto;
  max-width: 100%;
  background: #15140f;
  overflow: hidden;
  border: 1px solid rgba(245, 244, 240, 0.16);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.a-reel video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 7, 0.55));
}

/* –– Variante B (Knockout-Intro) –– */
.hv-b {
  background: #080807;
  color: var(--on-dark);
  justify-content: space-between;
  padding-bottom: clamp(70px, 7vh, 90px);
}

.b-stage {
  position: relative;
  isolation: isolate;
  background: #080807;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--gutter) 0;
  overflow: hidden;
}

.b-h1 {
  position: relative;
  z-index: 1;
  font-family: var(--d);
  font-weight: 700;
  font-size: clamp(66px, 15.5vw, 270px);
  line-height: 0.82;
  letter-spacing: -0.055em;
  color: #fff;
  text-align: center;
  margin: 0;
}

.b-h1 .ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.2em;
  margin-bottom: -0.2em;
}

.b-h1 .ln i {
  display: block;
  font-style: normal;
  transform: translateY(118%);
  transition: transform 1.15s cubic-bezier(0.16, 0.84, 0.24, 1);
}

.hv-b.lit .b-h1 .ln i {
  transform: none;
}

.hv-b.lit .b-h1 .ln:nth-child(2) i {
  transition-delay: 0.12s;
}

.b-vid {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: brightness(1.5) contrast(1.06) saturate(1.15);
  opacity: 0;
  transform: scale(1.14);
  transition:
    opacity 1.4s ease,
    transform 2.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hv-b.lit .b-vid {
  opacity: 1;
  transform: none;
}

.b-noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Cpath d='M0 6L6 0M-1.5 1.5L1.5 -1.5M4.5 7.5L7.5 4.5' stroke='white' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 6px 6px;
}

@media (max-width: 1040px) {
  .a-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
  }

  .a-reel {
    height: min(48vh, 420px);
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .a-h1 .ln i,
  .b-h1 .ln i {
    transform: none !important;
  }

  .a-fade {
    opacity: 1 !important;
    transform: none !important;
  }

  .b-vid {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-height: 720px) {
  .a-reel {
    height: min(46vh, 380px);
  }
}
