/* ============================================
   GOLDEN INK — Footer
   footer.css
   ============================================ */

.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding-top: 80px;
  padding-bottom: 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Brand Column */
.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__brand-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

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

/* Column Headings */
.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Link Lists */
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__list a {
  font-size: var(--text-sm);
  color: var(--muted);
  text-decoration: none;
  transition: color var(--fast) var(--ease), padding-left var(--fast) var(--ease);
}

.footer__list a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* Contact Items */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer__contact-item span {
  flex-shrink: 0;
  font-size: 1rem;
}

.footer__contact-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}

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

/* Social */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: color var(--fast) var(--ease), border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer__social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(15deg);
}

/* Bottom Bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: var(--container);
  margin-inline: auto;
  padding: 2rem var(--container-pad);
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--placeholder);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__legal a {
  font-size: var(--text-xs);
  color: var(--placeholder);
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .footer { padding-top: 60px; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer__brand-desc { max-width: none; }
  .footer__list { align-items: center; }
  .footer__contact-item { justify-content: center; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}
