/* ── FOOTER ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px;
}

.footer-logo {
  font-family: var(--display);
  font-size: 28px; color: var(--gold);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px; color: rgba(247,242,232,.5);
  line-height: 1.7; max-width: 280px;
}

.footer-info-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(247, 242, 232, 0.65);
  line-height: 1.6;
}

.footer-info-list strong {
  color: var(--gold);
  font-weight: 500;
}

.footer-socials {
  display: flex; gap: 14px; margin-top: 28px;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: var(--gold);
  font-size: 13px;
  transition: border-color .2s, background .2s;
}

.social-link:hover { background: var(--gold); color: var(--ink); }

.footer-col-title {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(247,242,232,.4); margin-bottom: 20px;
}

.footer-links {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}

.footer-links a {
  font-size: 14px; color: rgba(247,242,232,.65);
  text-decoration: none; transition: color .2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(247,242,232,.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(247,242,232,.3);
}

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 900px) {
  footer { grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 24px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

