/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.footer {
  background: var(--noir);
  padding: 56px 20px 24px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Brand ── */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
}

.footer__logo-img {
  height: 26px;
  width: auto;
}

.footer__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-on-dark);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.footer__email,
.footer__phone {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__email:hover,
.footer__phone:hover {
  color: var(--blanc);
}

.footer__cities {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
}

.footer__city {
  color: var(--text-on-dark);
  font-weight: 500;
}

.footer__city-sep {
  color: var(--text-muted-on-dark);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
  transition: background 0.2s, color 0.2s;
}

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--blanc);
}

/* ── Columns ── */
.footer__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 20px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blanc);
  margin-bottom: 4px;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--blanc);
}

.footer__link--cta {
  color: var(--accent);
  font-weight: 600;
}

.footer__link--cta:hover {
  color: var(--blanc);
}

/* ── Bottom ── */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted-on-dark);
}

.footer__legal-links {
  display: flex;
  gap: 16px;
}

.footer__legal {
  font-size: 0.8125rem;
  color: var(--text-muted-on-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal:hover {
  color: var(--text-on-dark);
}

/* ══════════════════════════════════
   RESPONSIVE — TABLET
   ══════════════════════════════════ */
@media (min-width: 768px) {
  .footer {
    padding: 64px 48px 32px;
  }

  .footer__main {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }

  .footer__brand {
    flex-shrink: 0;
    width: 280px;
  }

  .footer__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    flex: 1;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ══════════════════════════════════
   RESPONSIVE — DESKTOP
   ══════════════════════════════════ */
@media (min-width: 1024px) {
  .footer {
    padding: 72px 120px 32px;
  }

  .footer__brand {
    width: 320px;
  }

  .footer__columns {
    gap: 48px;
  }
}
