/* ── FOOTER STYLES ── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.45);
  padding: 6rem 4rem 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr; /* Brand, Center Credits, Socials */
  gap: 3rem;
  align-items: center;
}

.footer-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; 
  color: var(--gold); 
  letter-spacing: .04em;
  text-decoration: none;
  font-weight: 750;
}

.footer-logo span {
  color: var(--white);
  font-style: italic;
  font-weight: 400;
}

.footer-copy {
  font-size: .88rem; 
  line-height: 1.7;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: flex-end;
}

.footer-social { 
  display: flex; 
  gap: 2rem; 
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6); 
  text-decoration: none;
  font-size: .85rem; 
  letter-spacing: .12em; 
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.25rem;
  transition: var(--transition-fast);
}

.footer-social a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
}

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

.footer-social a:hover::after {
  width: 100%;
}

.footer-tagline {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.22);
  font-size: 1.2rem;
}

/* Creator Credit Link */
.footer-credit-link {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 0.2rem;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-credit-link:hover {
  color: var(--gold) !important;
  transform: translateY(-1px);
}

