/* ============================================================
   FOOTER — Site footer with Prosk AI branding
   ============================================================ */

footer {
  background: #09090b;
  border-top: 1px solid #1f1f23;
  padding: 2.5rem clamp(1.5rem, 6vw, 6rem);
}

.foot-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}

/* ─── BRAND BLOCK ────────────────────────────────────────── */
.foot-brand { display: flex; flex-direction: column; gap: .3rem; }

.foot-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: #fff; text-decoration: none; letter-spacing: -0.04em;
}
.foot-logo .dot { color: var(--blue); }

.foot-prosk {
  font-size: .75rem; color: #52525b; font-weight: 500; line-height: 1.4;
}
.foot-prosk a {
  color: #71717a; text-decoration: underline;
  text-decoration-color: #3f3f46;
  text-underline-offset: 2px; transition: color .15s;
}
.foot-prosk a:hover { color: #a1a1aa; }

/* ─── LINKS BLOCK ────────────────────────────────────────── */
.foot-links {
  display: flex; flex-direction: column; align-items: flex-end; gap: .5rem;
}

.foot-links-row {
  display: flex; gap: 1.5rem; align-items: center;
}
.foot-links-row a {
  font-size: .82rem; color: #52525b; text-decoration: none;
  transition: color .15s;
}
.foot-links-row a:hover { color: #a1a1aa; }

.foot-copy { font-size: .78rem; color: #3f3f46; }

/* ─── FOOTER RESPONSIVE ──────────────────────────────────── */
@media (max-width: 600px) {
  .foot-inner   { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  .foot-links   { align-items: flex-start; }
}
