/* Site footer, shared by the homepages' subpages.
   Lifted verbatim from the inline <style> in {en,de,fr}/index.html, which is
   still where the homepages themselves get these rules. */

.footer {
  background: linear-gradient(160deg, #1e1b4b 0%, #1C1859 60%, #1f1650 100%);
  padding: 36px 3rem 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  max-width: 240px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
}
.footer-tagline {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 14px;
  letter-spacing: 0.01em;
}
.footer-address {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  line-height: 1.8;
}
.footer-nav-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-nav-col {
  display: flex; flex-direction: column;
}
.footer-nav-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-socials {
  display: flex; gap: 8px;
}
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-swiss {
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  text-align: right;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .footer { padding: 40px 1.5rem 24px; }
  .footer-inner { gap: 2rem; }
  .footer-nav-cols { gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-swiss { text-align: left; }
  .footer-inner { flex-direction: column; }
}
