/* ==========================================================================
   Footer — 4-column footer, bottom bar
   ========================================================================== */

.site-footer {
  background-color: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
  padding-bottom: var(--space-48);
}

.footer-col h3 {
  color: var(--white);
  font-size: var(--text-body);
  font-weight: 600;
  margin-bottom: var(--space-16);
}

.footer-col p {
  font-size: var(--text-small);
  margin-bottom: var(--space-8);
}

.footer-col ul li {
  margin-bottom: var(--space-8);
}

.footer-col a {
  font-size: var(--text-small);
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--white);
}

/* Newsletter in footer */
.footer-col .newsletter-form .input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer-col .newsletter-form .input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-col .newsletter-form .input:focus {
  border-color: var(--cci-blue-300);
  box-shadow: 0 0 0 3px rgba(134, 195, 230, 0.2);
}

.footer-col .newsletter-form .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-col .newsletter-form .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-24) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--text-micro);
  margin-bottom: var(--space-8);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-disclaimer {
  font-size: var(--text-micro);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
