/* ==========================================================================
   Footer — HTCTheme
   ========================================================================== */

/* ── Site Footer ──────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-16) 0 var(--space-8);
}

/* ── Footer Inner Grid ────────────────────────────────────────────────────── */

.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
}

/* ── Footer Brand Column ──────────────────────────────────────────────────── */

.footer-brand__logo {
  margin-bottom: var(--space-4);
}

.footer-brand__tagline {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--leading-relaxed);
  max-width: 280px;
  margin-top: var(--space-3);
}

/* ── Footer Column Titles ─────────────────────────────────────────────────── */

.footer-col__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-5);
}

/* ── Footer Navigation ────────────────────────────────────────────────────── */

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

/* ── Footer Bottom Bar ────────────────────────────────────────────────────── */

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.footer-tagline {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
