/* ======================================================
   Footer Styles
   ====================================================== */

.site-footer {
  background: var(--dark-deeper);
  border-top: 1px solid rgba(201,168,76,.06);
  padding: 4rem 0 0;
}

.footer-grid {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: all .3s;
}

.footer-social-link:hover {
  border-color: rgba(201,168,76,.2);
  color: var(--gold);
  background: rgba(201,168,76,.05);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--muted-foreground);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 80rem;
  margin: 3rem auto 0;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr repeat(4, 1fr);
  }
}
