/* ==========================================================================
   Footer chrome — dark 4-column + copyright bar
   ========================================================================== */

.d55-footer {
  background: var(--d55-black);
  color: #A0AEC0;
  font-size: 0.98rem;
}
.d55-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-block: clamp(48px, 6vw, 76px);
}
.d55-footer__logo { width: 88px; height: auto; margin-bottom: 18px; }
.d55-footer__tagline { color: #718096; max-width: 30ch; }

.d55-footer__heading {
  font-family: var(--d55-font-display);
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
}
.d55-footer__menu,
.d55-footer__contact { list-style: none; margin: 0; padding: 0; }
.d55-footer__menu li,
.d55-footer__contact li { margin-bottom: 10px; }
.d55-footer__menu a,
.d55-footer__contact a { color: #A0AEC0; transition: color 0.2s var(--d55-ease); }
.d55-footer__menu a:hover,
.d55-footer__contact a:hover { color: var(--d55-accent); }
.d55-footer__address { font-style: normal; color: #718096; margin-top: 14px; line-height: 1.6; }

.d55-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #718096;
}
.d55-footer__bar-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding-block: 20px; flex-wrap: wrap;
}
.d55-footer__bar a { color: #A0AEC0; }
.d55-footer__bar a:hover { color: var(--d55-accent); }

@media (max-width: 860px) {
  .d55-footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .d55-footer__inner { grid-template-columns: 1fr; }
  .d55-footer__bar-inner { flex-direction: column; text-align: center; }
}

/* ---- Language switcher (moved from header) ---- */
.d55-footer__lang-row {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 18px;
}
.d55-footer__lang-row .d55-lang-inline {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; align-items: center;
}
.d55-footer__lang-row .d55-lang-inline li { position: relative; }
.d55-footer__lang-row .d55-lang-inline li + li::before {
  content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 14px; background: rgba(255,255,255,0.18);
}
.d55-footer__lang-row .d55-lang-inline a {
  font-family: var(--d55-font-display);
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.95rem;
  color: #A0AEC0; transition: color 0.2s var(--d55-ease);
}
.d55-footer__lang-row .d55-lang-inline a:hover,
.d55-footer__lang-row .d55-lang-inline a[aria-current="true"] { color: var(--d55-accent); }
