@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

/* ── FOOTER ── */
footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px 40px;
}
footer .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 300;
  font-style: italic;
  color: #6B3A2A;
  text-align: center;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(107,58,42,0.15);
  padding-top: 28px;
  position: relative;
}
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 34px; height: 34px;
  border: 1px solid rgba(107,58,42,0.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #8B5A4A;
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-icons a:hover { border-color: #6B3A2A; color: #6B3A2A; }
.footer-logo {
  font-family: 'Italiana', serif;
  font-size: 17px;
  color: #8B5A4A;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8B5A4A;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #6B3A2A; }

@media (max-width: 768px) {
  footer { padding: 40px 24px 28px; min-height: auto; }
  footer .quote { padding: 0; flex: none; margin-top: 0; margin-bottom:96px; font-size: clamp(18px, 5vw, 28px); }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
  }
  .footer-logo { position: static; transform: none; order: -1; font-size: 15px; }
  .social-icons { justify-content: center; }
  .footer-links { justify-content: center; }
}