/* ==========================================================================
   Shared Site Footer
   Single source of markup: partials/footer.html
   Injected into every page by scripts/inject-footer.js — do not hand-edit
   the footer markup in individual pages, edit the partial instead.
   ========================================================================== */

.site-footer {
  background-color: #0a0a0a;
  color: #cfcfcf;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 20px 20px;
  font-size: 0.95rem;
  margin-top: 40px;
}

.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.site-footer__brand {
  flex: 1 1 280px;
  min-width: 240px;
}

.site-footer__links {
  flex: 0 1 200px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__company {
  color: #00cfff;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.site-footer__address,
.site-footer__contact {
  margin: 0 0 10px;
  line-height: 1.6;
  color: #cfcfcf;
}

.site-footer a {
  color: #cfcfcf;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #00cfff;
  text-decoration: underline;
}

.site-footer__links a {
  font-weight: 500;
}

.site-footer__bottom {
  max-width: 1100px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: #888;
}

.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer__inner {
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .site-footer__links {
    align-items: center;
  }
}
