/* ═══════════════════════════════════════
   FOOTER.CSS
   ═══════════════════════════════════════ */

footer {
  padding: 56px 32px 28px;
  background: #050B14;
  border-top: 1px solid rgba(200,165,92,0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.footer-about {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 14px;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer-link a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}
.footer-link a:hover { color: var(--gold); }

.footer-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}
.footer-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-text a:hover {
  color: var(--gold);
}

.footer-hours {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.15);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

footer .footer-inner {
  grid-template-columns: 1.2fr 0.4fr 1.6fr 0.4fr;
}