/* ── Site Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #f2f2f2;
  border-top: 1px solid #e0e0e0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr auto auto;
  align-items: center;
  gap: 48px;
  padding: 28px 60px 28px 100px;
}

/* ── Logo ────────────────────────────────────────────────────── */
.site-footer__logo img,
.site-footer__logo .custom-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.site-footer__logo-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #111;
  text-decoration: none;
}

/* ── Middle text ─────────────────────────────────────────────── */
.site-footer__text {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ── Address ─────────────────────────────────────────────────── */
.site-footer__address {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}

/* ── Footer nav ──────────────────────────────────────────────── */
.site-footer__menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.site-footer__menu a {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__menu a:hover {
  color: #111;
}

/* ── Social icons ────────────────────────────────────────────── */
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer__social-link {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.site-footer__social-link:hover {
  color: #1b3c6e;
  transform: translateY(-2px);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 20px;
  }
}
