.site-footer {
  padding: 0;
  border-top: 4px solid #0792ad;
  background: #043d4e;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .site-footer-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 38px;
}

.site-footer-brand {
  max-width: 390px;
}

.site-footer-logo-print {
  position: relative;
  width: 190px;
  height: 131px;
  margin: -34px 0 12px;
  overflow: hidden;
}

.site-footer-logo {
  display: block;
  width: 190px;
  height: 190px;
  margin: 0;
  object-fit: contain;
  clip-path: inset(0 100% 0 0);
  animation: footer-logo-print 7s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.site-footer-logo-print::after {
  position: absolute;
  top: 31px;
  bottom: 17px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: #6ee8f5;
  box-shadow: 0 0 8px #38cde0, 0 0 18px rgba(56, 205, 224, 0.75);
  content: "";
  opacity: 0;
  animation: footer-print-head 7s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes footer-logo-print {
  0%, 10% { clip-path: inset(0 100% 0 0); }
  52%, 88% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 100% 0 0); }
}

@keyframes footer-print-head {
  0%, 9% { left: 0; opacity: 0; }
  10% { left: 0; opacity: 1; }
  52% { left: calc(100% - 3px); opacity: 1; }
  56%, 100% { left: calc(100% - 3px); opacity: 0; }
}

.site-footer-brand p,
.site-footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.75;
}

.site-footer h2 {
  margin: 4px 0 18px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer-links {
  display: grid;
  gap: 11px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #7ee2ef;
}

.site-footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
}

.site-footer-contact a,
.site-footer-contact span {
  display: block;
  line-height: 1.55;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.site-footer-bottom a {
  color: #8bdce8;
  font-size: 0.76rem;
}

@media (max-width: 767px) {
  .site-footer .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 24px 30px;
  }

  .site-footer-brand {
    max-width: none;
  }

  .site-footer-logo-print {
    width: 175px;
    height: 120px;
  }

  .site-footer-logo {
    width: 175px;
    height: 175px;
  }

  .site-footer h2 {
    margin-bottom: 13px;
  }

  .site-footer-bottom .container {
    flex-direction: column;
    min-height: auto;
    padding: 20px 24px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-logo {
    clip-path: none;
    animation: none;
  }

  .site-footer-logo-print::after {
    display: none;
    animation: none;
  }
}
