.heroA {
  min-height: 100vh;
  background: var(--nd);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.heroA::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .02;
  background-image:
    linear-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .4) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ── Layout ── */

.ha-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(6rem, 12vh, 9rem) 0 3rem;
  position: relative;
  z-index: 2;
}

/* Verhindert Grid-Overflow: Text links nicht abschneiden, Spalten dürfen schrumpfen */
.ha-inner > * {
  min-width: 0;
}

/* ── Typography ── */

.heroA h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

.heroA h1 span {
  color: var(--or);
  display: block;
  font-style: italic;
  font-weight: 700;
}

.ha-sub {
  font-size: .98rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.8;
  margin-bottom: 1.8rem;
  max-width: 480px;
}

/* ── Badge ── */

.ha-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(226, 138, 47, .1);
  border: 1px solid rgba(226, 138, 47, .2);
  padding: .32rem .75rem;
  border-radius: 100px;
  font-size: .66rem;
  font-weight: 600;
  color: var(--og);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.ha-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--or);
}

/* ── Buttons ── */

.ha-btns {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

/* ── Photo ──
   Festes Seitenverhältnis (wie 800×1000) + cover: Bild füllt die Karte komplett,
   kein „leerer“ Navy-Streifen unten durch zu kleines <img>. */

.ha-photo {
  width: 100%;
  max-width: min(100%, 420px);
  margin-inline: auto;
  aspect-ratio: 8 / 10;
  max-height: min(78vh, 720px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
  background: var(--nk);
}

.ha-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

/* ── Wave ── */

.ha-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.ha-wave svg {
  display: block;
  width: 100%;
}

/* ── Timeline (in hero) ── */

.ha-tl {
  padding: 2.5rem 0 1rem;
  position: relative;
  z-index: 2;
}

.ha-tl .tl-date {
  background: var(--nd);
}

.tl-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  position: relative;
}

.tl-row::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 12%;
  right: 12%;
  height: 2px;
  background: rgba(226, 138, 47, .2);
}

.tl-item {
  position: relative;
  z-index: 2;
}

.tl-date {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--or);
  margin-bottom: .2rem;
  background: var(--sp);
  display: inline-block;
  padding: 0 .5rem;
}

.tl-label {
  font-size: .74rem;
  color: var(--tl);
  font-weight: 500;
}

/* ── Mobile ── */

@media (max-width: 900px) {
  .ha-inner {
    grid-template-columns: 1fr;
  }

  .ha-photo {
    border-radius: 10px;
    max-width: 360px;
    max-height: min(62vh, 520px);
  }
}

@media (max-width: 600px) {
  .tl-row {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
  }

  .tl-row::before {
    display: none;
  }
}
