/* Footer reveal effect */
.reveal-footer {
  position: relative;
  transform: translateY(90px) scale(0.985);
  opacity: 0.2;
  filter: saturate(0.9);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), opacity 650ms ease, filter 650ms ease;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
}

.reveal-footer::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 28px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  background: linear-gradient(to bottom, rgba(249, 249, 249, 0.96), rgba(249, 249, 249, 0));
}

.reveal-footer.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: saturate(1);
  margin-top: 50px;
}

.footer-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.footer-logo-mark {
  width: min(240px, 42vw);
  height: auto;
  display: block;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-link {
  transition: transform 180ms ease, opacity 180ms ease;
}

.footer-contact-link:hover {
  transform: translateX(4px);
}

.footer-contact-icon {
  font-size: 22px;
  line-height: 1;
  color: #00ffaa;
  margin-top: 6px;
  flex-shrink: 0;
}

.footer-contact-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-left: 6px;
  margin-top: 10px;
}

.footer-address-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .footer-contact-item {
    gap: 10px;
  }

  .footer-contact-note {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}
