/* ═══ FOOTER ═══ */
footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deep);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 28px;
  gap: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo-img {
  height: 156px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  font-weight: 300;
}

.footer-links {
  display: flex;
  gap: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 48px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

footer .footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gold-dim);
}

/* ═══ FOOTER SOCIAL ═══ */
.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-social-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social-link {
  color: var(--text-secondary);
  opacity: 0.6;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-social-link:hover {
  opacity: 1;
  color: var(--text-primary);
}
.footer-contact-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-contact-text:hover { color: var(--gold); }

@media (max-width: 640px) {
  .footer-brand-block { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-social { flex-direction: column; gap: 8px; align-items: center; width: 100%; }
  .footer-social .footer-social-item { justify-content: center; }
}
