/* ──────────────────────────────────────────────
   Mants — Footer (Block 8)
   ────────────────────────────────────────────── */

/* ── Main footer (brand band) ───────────────── */

.footer__main {
  background: var(--brand);
  color: #fff;
  padding: 56px var(--page-pad-x);
}

.footer__cols {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer__cols-right {
  display: flex;
  gap: 80px;
}

.footer__heading {
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-bottom: 18px;
}

.footer__address {
  font-style: normal;
  font-size: 17px;
  line-height: 2;
}

.footer__menu {
  list-style: none;
  font-size: 17px;
}

.footer__menu li {
  margin-bottom: 14px;
}

.footer__menu li:last-child {
  margin-bottom: 0;
}

.footer__address a,
.footer__menu a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer__address a:hover,
.footer__menu a:hover {
  opacity: 1;
}

/* ── Bottom bar (page background) ───────────── */

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px var(--page-pad-x);
}

.footer__logo img {
  display: block;
  height: 24px;
  width: auto;
}

.footer__copy {
  font-size: 12px;
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 991px) { /* lg and down */
  .footer__main {
    padding: 44px var(--page-pad-x);
  }

  .footer__cols {
    flex-direction: column;
    gap: 32px;
  }

  .footer__cols-right {
    gap: 48px;
  }
}

@media (max-width: 575px) { /* sm and down */
  .footer__cols-right {
    flex-direction: column;
    gap: 28px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}
