/* ============================================================
   FRAMEWORK PERSONAL — footer.css
   Footer en grid de columnas (marca / navegación / contacto).
   La textura decorativa SVG de studioweb NO se incluye aquí a
   propósito: es específica de esa marca y añade peso; si un
   proyecto la quiere, se pega directamente en footer.html como
   capa ::before con su propio SVG.
   ============================================================ */

.footer {
  background: var(--bg-2);
  border-top: 0.5px solid var(--border);
  padding: var(--space-6) var(--section-pad-x) var(--space-5);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-top: var(--space-2);
}
.footer-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a,
.footer-contact a {
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: color 0.25s;
}
.footer-nav a:hover,
.footer-contact a:hover,
.footer-nav a.active {
  color: var(--accent);
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: var(--space-3);
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.72rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
