/* ── FOOTER ── */
footer {
  background: #0a1628;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 60px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-brand .tagline {
  font-size: 9px;
  letter-spacing: 3px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 12px;
  line-height: 1.8;
  color: #8a9ab5;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
  text-decoration: none;
  color: #8a9ab5;
}

.social-btn:hover {
  border-color: #c9a84c;
  color: #c9a84c;
  background: rgba(201,168,76,0.08);
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c9a84c;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 12px;
  color: #8a9ab5;
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.footer-col ul li a:hover { color: #c9a84c; }

/* ── MLS DISCLAIMER (community pages only) ── */
.footer-mls-disclaimer {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-mls-disclaimer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.02em;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-mls-disclaimer p + p {
  margin-top: 14px;
}

.footer-bottom {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brokerage { margin-bottom: 4px; }

.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

.footer-bottom p span { color: #c9a84c; }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.footer-legal a:hover { color: #c9a84c; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  footer {
    padding: 48px 24px 32px;
  }
}
