.location-premium-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 5.5vw, 76px);
  align-items: center;
}
.location-premium-copy {
  max-width: 720px;
}
.location-premium-copy .section__tag {
  margin-bottom: 18px;
}
.location-premium-copy .section__title {
  max-width: 760px;
  margin-bottom: 24px;
  text-wrap: balance;
}
.location-premium-lead {
  max-width: 560px;
  margin-bottom: 0 !important;
  line-height: 1.55 !important;
}
.location-premium-copy .section__sub.location-premium-lead {
  font-weight: 600;
  color: var(--black);
  font-size: 1.1rem;
}
.location-premium-text {
  max-width: 640px;
  margin-bottom: 0 !important;
  line-height: 1.85 !important;
}
.location-premium-copy .section__sub.location-premium-text {
  margin-top: 16px;
}
.location-premium-media {
  width: 100%;
  align-self: start;
}
.location-premium-media .gallery {
  margin-top: 4px;
}
.location-premium-media .gallery__stage {
  aspect-ratio: 4 / 3;
  max-height: 430px;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(48,67,95,.16);
}
.location-premium-media .gallery__overlay {
  background: linear-gradient(to top, rgba(11,17,28,.24) 0%, rgba(11,17,28,.04) 52%, transparent 100%);
}
.location-premium-media .gallery__thumbs {
  justify-content: flex-start;
  gap: 10px;
  margin-top: 16px;
}
.location-premium-media .gallery__thumb {
  width: 88px;
  height: 58px;
  border-radius: 10px;
}
.standort-bgb-accordions {
  margin-top: 64px;
}

/* ===== GALLERY (Standort) — hero image + thumbnails ===== */
.gallery {
  margin-top: 40px;
}
.gallery__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15,19,24,0.18);
  background: #0f1318;
}
.gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(8px);
  transition:
    opacity .75s cubic-bezier(.22,.61,.36,1),
    transform 1.4s cubic-bezier(.22,.61,.36,1),
    filter .75s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  will-change: opacity, transform, filter;
}
.gallery__img.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  pointer-events: auto;
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.32) 0%, transparent 55%);
  pointer-events: none;
}
.gallery__thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.gallery__thumb {
  position: relative;
  width: 132px;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  padding: 0;
  opacity: .55;
  transform: translateY(0);
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    opacity .35s ease,
    border-color .25s ease,
    box-shadow .35s ease;
  outline: none;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.gallery__thumb:hover {
  opacity: 1;
  transform: translateY(-3px);
}
.gallery__thumb:hover img {
  transform: scale(1.08);
}
.gallery__thumb:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15,19,24,.22);
}
.gallery__thumb.is-active::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 3px;
  border-radius: 3px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(216,180,255,.6);
}
@media (max-width: 720px) {
  .gallery__stage { border-radius: 18px; }
  .gallery__thumb { width: 96px; height: 60px; border-radius: 10px; }
}
@media (max-width: 420px) {
  .gallery__thumb { width: 78px; height: 50px; }
}

@media (max-width: 968px) {
  .location-premium-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .location-premium-copy {
    max-width: 760px;
  }
  .location-premium-media .gallery__stage {
    aspect-ratio: 16 / 10;
    max-height: 380px;
  }
}

@media (max-width: 600px) {
  .location-premium-hero {
    gap: 28px;
  }
  .location-premium-copy .section__title {
    margin-bottom: 18px;
  }
  .location-premium-lead {
    font-size: .98rem !important;
  }
  .location-premium-text {
    font-size: .92rem !important;
    line-height: 1.72 !important;
  }
  .location-premium-media .gallery__stage {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
  .location-premium-media .gallery__thumbs {
    justify-content: center;
  }
  .location-premium-media .gallery__thumb {
    width: 78px;
    height: 50px;
  }
}
