.gj-footer {
  margin-top: auto;
  background: var(--gj-mehroon-950);
  color: var(--gj-cream);
  border-top: 1px solid rgba(231, 206, 131, 0.25);
}

.gj-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.75rem);
  padding-block: clamp(3rem, 6vw, 4.75rem);
}

/* ---- brand statement ---- */

.gj-footer__brand {
  font-family: var(--gj-font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gj-gold-300);
  margin-bottom: 1.1rem;
}

.gj-footer__copy {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 235, 221, 0.8);
  max-width: 38ch;
}

.gj-footer__dil {
  margin-top: 0.85rem;
  font-family: var(--gj-font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gj-gold-300);
}

/* ---- link columns ---- */

.gj-footer__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gj-gold-300);
  margin-bottom: 1rem;
}

.gj-footer__col a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.5;
  padding-block: 0.34rem;
  color: rgba(245, 235, 221, 0.78);
  transition: color var(--gj-dur-fast) var(--gj-ease),
    transform var(--gj-dur-fast) var(--gj-ease);
}

.gj-footer__col a:hover {
  color: var(--gj-gold-300);
  transform: translateX(4px);
}

.gj-footer__note {
  font-size: 0.8rem;
  line-height: 1.5;
  padding-block: 0.34rem;
  color: rgba(245, 235, 221, 0.48);
}

/* ---- bottom bar ---- */

.gj-footer__bottom {
  border-top: 1px solid rgba(245, 235, 221, 0.12);
}

.gj-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  padding-block: 1.5rem;
  font-size: 0.8rem;
  color: rgba(245, 235, 221, 0.55);
}

.gj-footer__memory {
  font-family: var(--gj-font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(231, 206, 131, 0.72);
}

/* ---- responsive ---- */

@media (max-width: 1023px) {
  .gj-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gj-footer__statement {
    grid-column: 1 / -1;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(245, 235, 221, 0.1);
  }
}

@media (max-width: 599px) {
  .gj-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}
