/* ════════════════════════════════════════════════
   Mauracher Immobilien – gemeinsamer Footer
   Auf jeder Seite identisch · namespaced .mi-foot
   Selbst-enthaltend (kein base.css nötig).
════════════════════════════════════════════════ */

.mi-foot, .mi-foot *, .mi-foot *::before, .mi-foot *::after { box-sizing: border-box; }

.mi-foot {
  background: #0b1c35;
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Outfit', system-ui, sans-serif;
}

.mi-foot__inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 72px 44px 36px;
}

/* ── Oberer Bereich: Marke + Spalten ── */
.mi-foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

/* ── Marke ── */
.mi-foot__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ffffff;
}
.mi-foot__tagline {
  margin-top: 18px;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Link-Spalten ── */
.mi-foot__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mi-foot__head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 22px;
}
.mi-foot__col a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.25s ease;
}
.mi-foot__col a:last-child { margin-bottom: 0; }
.mi-foot__col a:hover { color: #f0b429; }
.mi-foot__addr {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

/* ── Unterer Bereich ── */
.mi-foot__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
}
.mi-foot__copy {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.40);
}
.mi-foot__legal {
  display: inline-flex;
  gap: 32px;
}
.mi-foot__legal a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}
.mi-foot__legal a:hover { color: #f0b429; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .mi-foot__inner { padding: 56px 28px 30px; }
  .mi-foot__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .mi-foot__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .mi-foot__inner { padding: 48px 20px 28px; }
  .mi-foot__top { grid-template-columns: 1fr; gap: 36px; }
  .mi-foot__tagline { max-width: none; }
  .mi-foot__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .mi-foot__legal { gap: 24px; }
}
