.FooterBar {
  width: 100%;
  padding: 48px 6vw 56px;
  position: relative;
  overflow: hidden;
}

.FooterBar.FooterDark {
  background: linear-gradient(120deg, rgba(2, 6, 23, 0.92), rgba(7, 18, 18, 0.92));
  color: #e8eaf0;
  border-top: 1px solid rgba(0, 214, 185, 0.2);
  box-shadow: 0 -18px 38px rgba(2, 6, 23, 0.35);
}

.FooterBar.FooterLight {
  background: linear-gradient(120deg, rgba(244, 249, 248, 0.95), rgba(237, 245, 243, 0.95));
  color: #141d1b;
  border-top: 1px solid rgba(0, 184, 156, 0.15);
  box-shadow: 0 -8px 24px rgba(0, 40, 34, 0.04);
}

.FooterBarSnapping {
  width: 100vw;
  padding: 28px 6vw 32px;
  height: auto !important;
  min-height: 0 !important;
  display: block !important;
  align-items: flex-start;
}

.FooterBar .LiquidBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.FooterBar .LiquidBackground canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.FooterBarInner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.FooterBrand h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tagline */
.FooterDark .FooterTagline {
  color: rgba(232, 234, 240, 0.6);
}

.FooterLight .FooterTagline {
  color: #4a5c58;
}

.FooterTagline {
  margin: 0;
  line-height: 1.6;
  max-width: 360px;
}

.FooterColumn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Column headings */
.FooterDark .FooterColumn h4 {
  color: rgba(0, 214, 185, 0.9);
}

.FooterLight .FooterColumn h4 {
  color: #00b89c;
}

.FooterColumn h4 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

/* Links */
.FooterDark .FooterColumn a {
  color: rgba(232, 234, 240, 0.8);
}

.FooterDark .FooterColumn a:hover {
  color: #00d6b9;
}

.FooterLight .FooterColumn a {
  color: #4a5c58;
}

.FooterLight .FooterColumn a:hover {
  color: #009e86;
}

.FooterColumn a {
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

/* Meta */
.FooterDark .FooterMeta {
  color: rgba(232, 234, 240, 0.45);
}

.FooterLight .FooterMeta {
  color: #7a8e89;
}

.FooterMeta {
  margin-top: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.FooterClimate {
  width: 100%;
  max-width: 300px;
  display: block;
  border: 0;
  overflow: hidden;
  height: 110px;
}

@media (max-width: 900px) {
  .FooterBarInner {
    grid-template-columns: 1fr;
  }
}
