.site-footer {
  background: #0A0A0B;
  border-top: 1px solid #1A1A1E;
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: #6B6864;
  font-weight: 300;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D4A373;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: #A8A4A0;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}
.footer-col ul a:hover {
  color: #F0EDE8;
}

.footer-bottom {
  border-top: 1px solid #1A1A1E;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #6B6864;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A8A4A0;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #D4A373;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
