/* ── Kontakt page ── */

.kontakt-layout {
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
}

.kontakt-text {
  min-width: 0;
}

.kontakt-layout::after {
  content: "";
  display: block;
  clear: both;
}

.kontakt-method + .kontakt-method {
  margin-top: 1.5rem;
}

.kontakt-method-title {
  margin: 1.2rem 0 0.25rem;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.2;
  font-weight: 400;
}

.kontakt-method-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.45rem;
}

.kontakt-method-link::before {
  content: "";
  width: 1em;
  height: 1em;
  flex: 0 0 1em;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.kontakt-method-link--phone::before {
  background-image: url("/images/footer/call.svg");
}

.kontakt-method-link--mail::before {
  background-image: url("/images/footer/mail.svg");
}

.kontakt-method-link a {
  color: inherit;
}

.kontakt-image-wrap {
  width: 100%;
  max-width: 340px;
  justify-self: center;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.kontakt-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.anfahrt-section {
  scroll-margin-top: 2rem;
}

/* ── Anfahrt band: text left, map right ── */
.anfahrt-layout {
  align-items: center;
}

.anfahrt-text {
  min-width: 0;
}

.anfahrt-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0.9;
  aspect-ratio: 4 / 3;
}

.anfahrt-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 900px) {
  .kontakt-layout {
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  }

  .kontakt-image-wrap {
    max-width: 300px;
  }
}

@media (max-width: 640px) {
  .kontakt-layout {
    display: block;
  }

  .kontakt-image-wrap {
    float: right;
    width: min(38vw, 150px);
    margin: 0 0 0.9rem 1rem;
    max-width: none;
  }
}
