/* ─── FOOTER COMPONENT ─── */
footer {
  border-top: 1px solid var(--divider);
  padding: 3rem 3rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-logo img {
  height: 120px;
  width: auto;
}
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
}
.footer-address,
.footer-email,
.footer-privacy {
  font-size: 0.75rem;
  color: var(--bark);
  opacity: 0.7;
  line-height: 1.6;
}
.footer-privacy a {
  color: var(--bark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-privacy a:hover { opacity: 1; color: var(--gold); }
.footer-social { display: flex; flex-direction: column; gap: 1rem; }
.footer-social-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bark);
  opacity: 0.6;
}
.footer-social-icons {
  display: flex;
  gap: 0.875rem;
  align-items: center;
}
.footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--divider);
  border-radius: 50%;
  color: var(--bark);
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.footer-social-icons a:hover { opacity: 1; border-color: var(--gold); color: var(--gold); }
.footer-social-icons svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid var(--divider);
  padding-top: 1.25rem;
  font-size: 0.7rem;
  color: var(--bark);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-social-icons { flex-wrap: wrap; }
}
