/* Plano Vivo Studios - footer */

.site-footer {
  background: var(--primary);
  color: rgba(245, 242, 236, 0.78);
  padding: 72px 0 28px;
  margin-top: 64px;
}
.site-footer a {
  color: rgba(245, 242, 236, 0.92);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.site-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .brand { color: var(--bg); }
.footer-brand .brand__suffix { color: rgba(245,242,236,0.6); }
.footer-brand p {
  margin: 16px 0 0;
  font-size: 0.92rem;
  color: rgba(245,242,236,0.65);
  max-width: 36ch;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bg);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-col li { margin-bottom: 10px; }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(245,242,236,0.14);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(245,242,236,0.55);
}
.footer-bottom__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
