.footer {
  background: #12233c;
  color: rgba(246, 243, 236, 0.8);
  padding: 5rem 2rem 0;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(246, 243, 236, 0.12);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f6f3ec;
  margin-bottom: 1rem;
}

.footer-logo .header-logo-mark {
  color: #c9a668;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 243, 236, 0.25);
  border-radius: 50%;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
  background: #ab8642;
  border-color: #ab8642;
}

.footer-col h4 {
  color: #c9a668;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.footer-col li i {
  color: #ab8642;
  margin-top: 0.2rem;
}

.footer-col a:hover {
  color: #c9a668;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.8rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(246, 243, 236, 0.5);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 4rem 1.4rem 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}
