/* =============================================
   Footer
   ============================================= */

.site-footer {
  background-color: var(--sp-ink);
  border-top: 2px solid var(--sp-gold);
  padding: 64px 0 40px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 12px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  margin: 0 auto;
}

.footer-tagline {
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sp-honey);
  margin-bottom: 48px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--sp-honey);
}

.footer-bottom {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 24px;
  }
}
