/* ============================================================
   SITE FOOTER
   ============================================================ */
.ctg-footer {
  background: #0A0703;
  padding: 54px 24px 40px;
}

.ctg-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Three-column grid */
.ctg-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

/* --- Column 1: Brand --- */
.ctg-footer__logo .custom-logo {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(.85);
}

.ctg-footer__site-name {
  font-family: 'Bungee', sans-serif;
  font-size: 1.2rem;
  color: var(--ctg-gold);
  margin: 0 0 14px;
}

.ctg-footer__tagline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: #7A6E4E;
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 280px;
}

/* --- Columns 2 & 3 --- */
.ctg-footer__col-label {
  display: block;
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #FFB81C;
  margin-bottom: 18px;
}

.ctg-footer__nav ul,
.ctg-footer__social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ctg-footer__nav a,
.ctg-footer__social a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: #C9B894;
  text-decoration: none;
  transition: color .15s ease;
}

.ctg-footer__nav a:hover,
.ctg-footer__social a:hover { color: #FFB81C; }

/* --- Bottom bar --- */
.ctg-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 2px solid rgba(255, 184, 28, .12);
  margin-top: 40px;
  padding-top: 24px;
}

.ctg-footer__copyright {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: #4A3E2A;
}

.ctg-footer__gg {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #4A3E2A;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .ctg-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .ctg-footer__tagline { max-width: 100%; }
}

@media (max-width: 480px) {
  .ctg-footer { padding: 40px 16px 32px; }

  .ctg-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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