/* ── Footer ── */

.footer {
  background: #05182b;
  padding: 6.5rem 4.2% 3rem;
}

.footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 5rem;
}

.footer__tagline {
  flex: 0 0 40%;
}

.footer__heading {
  font-size: clamp(2rem, 3vw, 2.63rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.footer__heading-accent {
  color: #0090df;
}

.footer__links {
  display: flex;
  gap: 7rem;
}

.footer__col-title {
  font-size: 1.69rem;
  font-weight: 700;
  color: #0090df;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.03em;
  line-height: 2.05;
  transition: opacity 0.2s;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__social-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  object-fit: contain;
}

.footer__bottom {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom-left {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.03em;
  line-height: 2.05;
}

.footer__bottom-left a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__bottom-left a:hover {
  opacity: 0.7;
}

.footer__bottom-right {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.03em;
  line-height: 2.05;
}

/* ── Video Lightbox (lives in footer partial) ── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}
