/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand {}
.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .75rem;
}
.footer-brand .brand-logo img { height: 36px; opacity: 1; }
.footer-brand .brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 1.2rem;
}
.social-row { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: background .18s;
}
.social-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.social-btn:hover { background: var(--gold); color: var(--dark); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a {
  font-size: .85rem;
  transition: color .18s;
}
.footer-col ul li a:hover { color: var(--gold-l); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: var(--gold-l); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
