/* ============================================================
   Postbox Services footer styles (matches staging.postboxservices.com)
   Load in <head>: <link rel="stylesheet" href="/footer.css">
   Uses the same :root tokens as nav.css (load nav.css first).
   Font note: .footer-logo and .footer-section-label use 'Syne'
   (already loaded on mx/bl). If a page does not load Syne, the
   sans-serif fallback is used - fine, but add the font for parity.
   ============================================================ */

.site-footer {
  background: var(--gradient-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 1.5rem 2rem;
  margin-top: 5rem;
}

.site-footer a { text-decoration: none; }
.site-footer ul { margin: 0; padding: 0; }
.site-footer p { margin: 0; }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--cyan);
}

.footer-tagline {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 2;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--cyan);
}

.footer-nav ul,
.footer-tools ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-tools a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-nav a:hover,
.footer-tools a:hover {
  color: var(--cyan);
}

.footer-section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.footer-social a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--cyan);
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
