/* =====================================================
   SEEK — FOOTER (footer.css)
===================================================== */
.footer-bottom-bar {
  background: var(--off-black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  flex-wrap: wrap; gap: .8rem;
}
.footer-bar-copy {
  font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.3);
}
.footer-bar-legal { display: flex; gap: 2rem; }
.footer-bar-legal a {
  font-size: .75rem; font-weight: 600;
  color: rgba(255,255,255,.22);
  text-decoration: none; cursor: none;
  transition: color .2s;
}
.footer-bar-legal a:hover { color: var(--gold); }

/* Fixed dual-eye watermark */
#eyeWatermark {
  position: fixed; bottom: 2rem; right: 2.5rem;
  width: clamp(140px, 16vw, 220px);
  z-index: 50; pointer-events: none; opacity: 0.22;
  transition: opacity .5s ease;
  filter: drop-shadow(0 4px 16px rgba(10,10,10,.18));
}
#ewSvg { width: 100%; height: auto; display: block; }
