/* Footer — marketing site. Solid black (#000000); uses same --llv-header-footer-bg as menu.css. */
.footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--llv-header-footer-bg) !important;
  background-color: var(--llv-header-footer-bg) !important;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* Full-width centered subhead above columns */
.footer-tagline {
  margin: 0 auto 36px;
  max-width: min(56rem, 100%);
  font-size: clamp(1.0625rem, 2.1vw, 1.375rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(230, 225, 217, 0.55);
  text-align: center;
}

.footer-inner.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 64px;
  align-items: start;
  margin-bottom: 0;
}

/* Column headers: 14px, 600, #E6E1D9. Header to first link: 16px. */
.footer-title {
  font-size: 14px;
  font-weight: 600;
  color: #E6E1D9;
  margin: 0 0 16px 0;
}

/* Links: 14px, 400, rgba(230, 225, 217, 0.65). Link spacing: margin-bottom 10px. */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.footer-links li {
  margin: 0 0 10px 0;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(230, 225, 217, 0.65);
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #E6E1D9;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  text-align: center;
}

.footer-copyright {
  margin: 0;
  color: rgba(230, 225, 217, 0.45);
  font-size: 0.8125rem;
  width: 100%;
  text-align: center;
  line-height: 1.45;
}

/* Mobile: 2 columns only at 640px. Typography stays exact same size. */
@media (max-width: 640px) {
  .footer-tagline {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .footer-inner.footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
