/* ── Hide Kadence Default Footer ──────────────────────────────── */

footer#colophon.site-footer {
  display: none !important;
}

/* ── Section 10: Custom Footer ───────────────────────────────── */

.ct-site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-muted);
  padding: 48px 0 24px;
  font-size: 14px;
}

.ct-site-footer .ct-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}

.footer-brand .footer-tagline {
  color: var(--color-text-muted);
  font-size: var(--text-small);
}

.footer-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-contact a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--color-accent-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: var(--color-text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.ct-site-footer a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.ct-site-footer a:hover {
  color: var(--color-accent-green);
}

/* ── Footer Responsive ────────────────────────────────────────── */

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
