/* Footer.
   Not a full screen — the site should close, not start another chapter. */

.footer {
  position: relative;
  padding: 4.3vw 4.3vw 2.6vw;
  background: linear-gradient(to bottom, #050404 0%, #080706 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: var(--font-ui);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 1fr);
  gap: 4vw;
  padding-bottom: 3vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__mark {
  display: flex;
  align-items: center;
  gap: 0.85vw;
}

/* The brand is the same wordmark artwork the header uses (owner request,
   2026-07-25 — the gold "L" tile + typed LUMIQ read as a different logo).
   Drawn with ::before, exactly as the phone layer already did it, so the
   markup (badge + word) stays untouched; both spans are simply hidden.
   Width tracks the header's .topnav__logo (9.1vw / 116px) a step smaller,
   as suits a footer. */
.footer__badge,
.footer__word {
  display: none;
}

.footer__mark::before {
  content: '';
  display: block;
  width: 8.2vw;
  min-width: 108px;
  aspect-ratio: 1138 / 229;
  background-image: url('/lumiq-logo.png');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}

.footer__line {
  margin: 1.3vw 0 0;
  font-size: 0.977vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.62);
}

.footer__note {
  margin: 0.5vw 0 0;
  font-size: 0.847vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2vw;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__colTitle {
  margin: 0 0 1.1vw;
  font-size: 0.78vw;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__link {
  margin-bottom: 0.72vw;
  font-size: 0.977vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color var(--hover) var(--ease);
}

.footer__link:hover {
  color: var(--white);
}

.footer__base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.8vw;
}

.footer__copy {
  margin: 0;
  font-size: 0.847vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.34);
}

.footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.847vw;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--hover) var(--ease);
}

.footer__top-link .icon {
  width: 0.9vw;
  min-width: 10px;
  color: var(--gold);
  transition: transform var(--hover) var(--ease);
}

.footer__top-link:hover {
  color: var(--white);
}

.footer__top-link:hover .icon {
  transform: translateY(-2px);
}
