/**
 * footer block styles — prototype `.site-footer` (icnonwoven-homepage-final).
 * Colours are prototype literals (navy-3 #061a36, orange #e66f1f); type sizes
 * follow the prototype, font family inherits the site's Inter stack.
 */
@layer zj-block {
.zj-footer {
  padding: 54px var(--zjx-gutter) 32px;
  color: rgba(255, 255, 255, 0.72);
  background: #061a36;
}
.zj-footer a {
  color: inherit;
  text-decoration: none;
}
.zj-footer__top {
  display: grid;
  grid-template-columns: repeat(var(--zj-footer-cols, 5), minmax(0, 1fr));
  gap: 34px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.zj-footer__id {
  grid-column: 1 / 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.zj-footer__logo {
  display: block;
  width: 42px;
  height: 58px;
  object-fit: contain;
}
.zj-footer__brand-name {
  display: block;
  color: #fff;
  font-size: 19px;
  line-height: 1;
  font-weight: 800;
}
.zj-footer__tagline {
  display: block;
  max-width: 320px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10.5px;
  line-height: 1.28;
  font-weight: 700;
}
.zj-footer__cta {
  grid-column: -2 / -1;
  justify-self: start;
  display: inline-grid;
  place-items: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  background: var(--zjx-action);
  transition: background 0.2s ease;
}
.zj-footer__cta:hover {
  background: var(--zjx-action-dark);
}
.zj-footer__cols {
  display: grid;
  grid-template-columns: repeat(var(--zj-footer-cols, 5), minmax(0, 1fr));
  gap: 34px;
  padding: 40px 0;
}
.zj-footer__col h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}
.zj-footer__link,
.zj-footer__addr {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  line-height: 1.36;
  transition: color 0.18s ease;
}
.zj-footer__link:hover {
  color: var(--zjx-action-light);
}
.zj-footer__social {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.zj-footer__social-link {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}
.zj-footer__social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.zj-footer__social-link:hover {
  transform: translateY(-2px);
}
.zj-footer__social-link--facebook:hover {
  background: #1877f2;
}
.zj-footer__social-link--linkedin:hover {
  background: #0a66c2;
}
.zj-footer__social-link--youtube:hover {
  background: #ff0033;
}
.zj-footer__social-link--x:hover {
  background: #000;
}
.zj-footer__social-link--instagram:hover {
  background: #e1306c;
}
.zj-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.zj-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
}
.zj-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.zj-footer__bottom-links a:hover {
  color: var(--zjx-action-light);
}
.zj-footer__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: rgba(255, 255, 255, 0.68);
  font: inherit;
  font-size: 13px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.zj-footer__lang:hover {
  color: var(--zjx-action-light);
}
.zj-footer__lang svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
}

@layer zj-responsive {
@media (max-width: 1040px) {
  .zj-footer {
    padding: 44px var(--zjx-gutter) 28px;
  }
  .zj-footer__top {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding-bottom: 28px;
  }
  .zj-footer__id,
  .zj-footer__cta {
    grid-column: auto;
  }
  .zj-footer__cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding: 32px 0;
  }
}
@media (max-width: 720px) {
  .zj-footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .zj-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 560px) {
  .zj-footer__top {
    grid-template-columns: 1fr;
  }
  .zj-footer__cols {
    grid-template-columns: 1fr;
  }
}
}
