/* ── FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 40px 64px 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  align-items: start;
}
.footer-logo {
  display: flex;
  justify-content: center;
}
.footer-logo img { height: 120px; width: auto; }
.footer-col-title {
  font-family: 'Cochin', Georgia, serif;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 22px;
  text-align: center;
}
.footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-contact-col address {
  width: 100%;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item img {
  width: 27px; height: 27px;
  flex-shrink: 0;
}
.footer-social-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-social { display: flex; gap: 20px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.25s;
}
.footer-social a:hover { opacity: 0.8; }
.footer-social img {
  width: 28px; height: 28px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin: 0 -64px;
  padding: 10px 64px;
  font-size: 11px;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #0A1E38;
}
.footer-bottom-copy { text-align: center; }
.footer-bottom a { color: #fff; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 6px; align-items: center; justify-content: center; }
.footer-bottom-lang { display: flex; gap: 6px; align-items: center; justify-content: center; }
.footer-bottom-lang img { width: 14px; height: 14px; filter: brightness(0) invert(1); }
.footer-mhte {
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  text-align: center;
}
