.footer {
  background: #1c2617;
  color: rgba(255, 253, 249, 0.82);
  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(255, 253, 249, 0.12);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fffdf9;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: #e0b563;
}

.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(255, 253, 249, 0.25);
  border-radius: 50%;
  transition: background 0.3s ease, border-color 0.3s ease;
}

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

.footer-col h4 {
  color: #e0b563;
  font-size: 1.05rem;
  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: #c9972f;
  margin-top: 0.2rem;
}

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

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.8rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 253, 249, 0.55);
}

@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;
  }
}
