/* ==========================================================================
   Wenti Labs — shared footer (standalone)
   Mirrors the revamped footer from revamp.css so every page's footer is
   identical, without pulling in revamp.css's global resets.
   Everything here is scoped to .wl-footer. Pairs with wl-nav.css, which
   defines the shared brand variables; the extras it needs are declared here.
   ========================================================================== */
:root {
  --wl-footer-surface: #faf9fd;
  --wl-footer-muted: #5b5870;
  --wl-footer-muted-2: #84819a;
  --wl-footer-ink-2: #2c2940;
  --wl-footer-line: #e7e6ee;
  --wl-footer-brand: #5e50a0;
}

.wl-footer {
  background: var(--wl-footer-surface);
  border-top: 1px solid var(--wl-footer-line);
  padding-block: 64px 32px;
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
}
.wl-footer .wl-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
.wl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.wl-footer-brand img { height: 30px; width: auto; margin-bottom: 16px; }
.wl-footer-brand p { color: var(--wl-footer-muted); font-size: 0.95rem; max-width: 320px; margin: 0; }
.wl-footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wl-footer-muted-2);
  margin: 0 0 16px;
}
.wl-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.wl-footer li { margin: 0; }
.wl-footer a { color: var(--wl-footer-ink-2); font-size: 0.95rem; text-decoration: none; }
.wl-footer a:hover { color: var(--wl-footer-brand); }
.wl-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--wl-footer-line);
  color: var(--wl-footer-muted);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .wl-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .wl-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
