/* =====================================================
   Site Footer — Simple Black
   ===================================================== */

.site-footer {
  background: #0a0a0a;
  color: #e5e5e5;
  /* Extra bottom padding so the fixed .bottom-nav (≈90px tall at bottom:20px) doesn't cover the copyright. */
  padding: 64px 0 140px;
  margin-top: 48px;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__brand img {
  height: 28px;
  width: auto;
  display: block;
}

.site-footer__nav {
  display: flex;
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.site-footer__menu li {
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  color: #d4d4d4;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus {
  color: #ffffff;
}

.site-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: center;
}

.site-footer__copy {
  margin: 0;
  font-size: 13px;
  color: #888;
  letter-spacing: 0.2px;
}

/* Responsive */
@media (max-width: 768px) {
  .site-footer {
    /* Mobile bottom-nav is 100px tall (bottom:0) — add room for it. */
    padding: 48px 0 130px;
    margin-top: 60px;
  }
  .site-footer__inner {
    padding: 0 24px;
  }
  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .site-footer__menu {
    gap: 20px;
  }
}

@media (max-width: 550px) {
  .site-footer {
    /* Small mobile bottom-nav shrinks to 72px — still keep breathing room. */
    padding-bottom: 110px;
  }
}

@media (max-width: 480px) {
  .site-footer__inner {
    padding: 0 16px;
  }
  .site-footer__menu {
    flex-direction: column;
    gap: 14px;
  }
  .site-footer__copy {
    text-align: center;
    width: 100%;
  }
  .site-footer__bottom {
    justify-content: flex-start;
  }
}
