/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-deep);
  color: var(--cream-dark);
  padding: 1.7rem 0 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(245, 237, 225, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream-light);
  margin-bottom: 0.8rem;
}

.footer-brand svg {
  width: 30px;
  height: 30px;
}

.footer-about p {
  font-size: 0.92rem;
  color: rgba(245, 237, 225, 0.7);
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(245, 237, 225, 0.75);
  margin-bottom: 0.7rem;
  transition: color 0.2s var(--ease);
}

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

.footer-contact p {
  font-size: 0.92rem;
  color: rgba(245, 237, 225, 0.75);
  margin-bottom: 0.7rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.2rem;
  font-size: 0.82rem;
  color: rgba(245, 237, 225, 0.55);
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-socials {
  display: flex;
  gap: 0.9rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 225, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: var(--cream-light);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
