/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.45);
  padding: 3.5rem 24px 2rem;
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-word {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  background: linear-gradient(90deg, var(--violet-light), var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.footer-tagline {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.38);
  max-width: 220px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul a       { font-size: 0.82rem; color: rgba(255,255,255,0.48); transition: color 0.2s; }
.footer-col ul a:hover { color: rgba(255,255,255,0.88); }

.footer-bottom {
  max-width: 1060px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.73rem;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: rgba(255,255,255,0.28);
}
.footer-bottom a       { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 720px) {
  .footer-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col     { text-align: center; }
  .footer-col ul  { align-items: center; }
  .footer-tagline { max-width: 100%; }
}
@media (max-width: 600px) {
  .footer-bottom { justify-content: center; text-align: center; }
}
