/* ============================================================
   VINOVE — Footer
   Shared across all pages
   ============================================================ */

#footer {
  background: var(--surface-2);
  color: var(--text-body);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter) 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* ── Top grid ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--border-subtle);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Brand column ── */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text-strong);
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--terra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-mark svg { width: 9px; height: 9px; fill: #fff; }

.footer-blurb {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.68;
  max-width: 32ch;
  margin-bottom: 1.75rem;
}

/* Company list in footer brand col */
.footer-cos {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-co {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-body);
  transition: color var(--dur-fast);
  padding: 2px 0;
}
.footer-co:hover { color: var(--text-strong); }

.footer-co-dot {
  width: 5px; height: 5px;
  border-radius: 50%; flex-shrink: 0;
}

/* ── Nav columns ── */
.footer-col-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-link {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.3;
  transition: color var(--dur-fast);
}
.footer-link:hover { color: var(--text-strong); }

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--dur-fast);
}
.footer-legal a:hover { color: var(--text-strong); }
