/* ============================================================
   SHARED FOOTER — dark editorial footer (originally Contact page)
   ============================================================ */

.footer {
  background: #0a0a0a;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 48px) 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer a { text-decoration: none; }

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.footer-brand { display: block; }

.footer-logo { display: inline-block; }

.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(0.6);
  margin: 0 auto 48px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.footer-nav a:hover { color: rgba(255,255,255,0.8); }

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.footer-contact a {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.footer-contact a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}

.footer-bottom p:hover {
  color: #ffffff;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .footer { padding: 60px 24px 32px; }
  .footer-nav { gap: 20px; }
  .footer-contact { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .footer { padding: 48px 20px 32px; }
  .footer-logo-img { height: 72px; margin-bottom: 36px; }
  .footer-nav { gap: 18px; margin-bottom: 32px; }
  .footer-contact { gap: 14px; margin-bottom: 40px; }
  .footer-bottom { padding-top: 28px; }
}
