/* RITEKO — subtle mechanical signature in the lower part of public pages. */
.riteko-gears-footer,
.riteko-home-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.riteko-gears-footer {
  min-height: 132px;
  background: #F4F7F9;
}

.riteko-gears-footer .footer {
  min-height: 132px;
  padding-top: 40px;
  padding-bottom: 38px;
}

.riteko-home-footer {
  display: flex;
  min-height: 118px;
  align-items: center;
}

.riteko-gears-footer::before {
  position: absolute;
  z-index: 0;
  right: -42px;
  bottom: -76px;
  width: 500px;
  height: 386px;
  content: "";
  opacity: .78;
  background: url('/assets/t/i/gears.jpg') right bottom / contain no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform-origin: 72% 70%;
  animation: riteko-gear-signature 72s linear infinite;
}

.riteko-gears-footer .footer {
  position: relative;
  z-index: 1;
  background: transparent;
}

.riteko-home-footer__content { position: relative; z-index: 1; }

/* The home footer uses a neutral line-art imprint over its navy base. */
.riteko-home-footer::before {
  position: absolute;
  z-index: 0;
  right: -42px;
  bottom: -72px;
  width: 440px;
  height: 338px;
  content: "";
  opacity: .15;
  background: url('/assets/t/i/gears.jpg') right bottom / contain no-repeat;
  filter: grayscale(1) brightness(4);
  mix-blend-mode: screen;
  pointer-events: none;
  transform-origin: 70% 72%;
  animation: riteko-gear-signature-reverse 86s linear infinite;
}

@keyframes riteko-gear-signature {
  from { transform: rotate(0deg); }
  to { transform: rotate(10deg); }
}

@keyframes riteko-gear-signature-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-8deg); }
}

@media (max-width: 767px) {
  .riteko-gears-footer { min-height: 116px; }
  .riteko-gears-footer .footer { min-height: 116px; padding-top: 31px; padding-bottom: 29px; }
  .riteko-home-footer { min-height: 108px; }
  .riteko-gears-footer::before {
    right: -132px;
    bottom: -88px;
    width: 430px;
    height: 333px;
    opacity: .58;
  }
  .riteko-home-footer::before {
    right: -108px;
    bottom: -80px;
    width: 390px;
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .riteko-gears-footer::before,
  .riteko-home-footer::before { animation: none; }
}
