/* ============================================
   GrapoliX Footer Component
   DESIGN.md — Layout Components — FOOTER
   ============================================ */

/* ── Footer Shell ── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: auto;
}

/* ── Top Section ── */
.footer__top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* ── Brand Column ── */
.footer__brand-logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}

.footer__brand-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.footer__brand-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
}

/* ── Link Columns ── */
.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer__links a:hover {
  color: var(--text);
}

/* ── Bottom Section ── */
.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 11px;
  color: #333333;
  letter-spacing: 1px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__social a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer__social a:hover {
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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