/* Alternative Startseiten-Inszenierung: ruhige Text-Bild-Teilung statt Vollbildfoto. */
.hero {
  display: block;
  min-height: clamp(650px, calc(100svh - var(--site-chrome-height)), 760px);
  padding: 0;
  overflow: hidden;
  background: #e8e0d4;
}

.hero::before {
  display: none;
}

.hero__media {
  position: absolute;
  inset: clamp(2.5rem, 5vw, 4.5rem)
    max(1rem, calc((100vw - 1180px) / 2))
    clamp(2.5rem, 5vw, 4.5rem)
    calc(50% + 0.75rem);
  width: auto;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(36, 37, 37, 0.14);
  border-radius: 1.25rem;
  background: #27323c;
  box-shadow: 0 24px 70px rgba(35, 32, 27, 0.2);
}

.hero__media picture,
.hero__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: 53% 50%;
  transform: none;
}

.hero__veil {
  display: none;
}

.hero__content {
  display: flex;
  min-height: clamp(650px, calc(100svh - var(--site-chrome-height)), 760px);
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--ink);
}

.hero__content > * {
  width: min(43%, 32rem);
}

.hero__content .eyebrow {
  color: var(--accent-dark);
}

.hero__content .display {
  max-width: 10.5ch;
  font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  line-height: 0.98;
}

.hero__content .lead {
  max-width: 31rem;
  color: #4f4e4a;
}

.hero__content .button--ghost {
  border-color: rgba(36, 37, 37, 0.55);
  background: transparent;
  color: var(--ink);
  backdrop-filter: none;
}

.hero__content .button--ghost:hover {
  border-color: var(--ink);
  background: rgba(36, 37, 37, 0.06);
}

@media (max-width: 900px) {
  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
    background: #e8e0d4;
  }

  .hero::before {
    inset: 0;
    background:
      radial-gradient(circle at 10% 8%, rgba(154, 104, 65, 0.12), transparent 28%),
      linear-gradient(180deg, #eee7dc 0 52%, var(--paper) 52% 100%);
  }

  .hero__content {
    order: 1;
    min-height: 0;
    padding-block: clamp(2.75rem, 10vw, 4.5rem) 2rem;
  }

  .hero__content > * {
    width: 100%;
  }

  .hero__content .display {
    max-width: 11ch;
    font-size: clamp(2.8rem, 12vw, 4.4rem);
  }

  .hero__media {
    position: relative;
    inset: auto;
    order: 2;
    width: var(--container);
    height: auto;
    aspect-ratio: 5 / 4;
    margin: 0 auto 2.5rem;
    border-radius: 1rem;
  }

  .hero__media img {
    object-position: 53% 50%;
  }
}

@media (max-width: 520px) {
  .hero__content .button-row {
    align-items: stretch;
  }

  .hero__content .button {
    justify-content: center;
    text-align: center;
  }
}
