.site-footer {
  background: #0d3a5f;
  padding: 3rem 2rem 0;
}

.footer-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-col-hidden {
  visibility: hidden;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a55c;
  margin-bottom: 1.2rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.8rem;
  text-decoration: none;
}

.footer-contact-item:hover {
  color: #c9a55c;
}

.footer-contact-icon {
  width: 20px;
  text-align: center;
  color: #c9a55c;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}

.footer-links a {
  font-family: var(--font-main);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #c9a55c;
}

.footer-bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1rem 0;
  border-top: 0.5px solid rgba(255,255,255,0.1);
  text-align: center;
  font-family: var(--font-main);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-col-hidden {
    display: none;
  }
}