/* ─── FOOTER ─── */
#site-footer {
  background: var(--ink);
  padding: 4rem 4rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  border-bottom: 1px solid rgba(245,240,232,.08);
  padding-bottom: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: .1em;
  margin-bottom: .4rem;
  display: block;
  text-decoration: none;
}
.footer-logo__sub {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: .75rem;
  color: rgba(245,240,232,.35);
  line-height: 2;
  font-weight: 300;
  max-width: 260px;
  letter-spacing: .04em;
}

.footer-col-title {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: .6rem;
}
.footer-links a {
  font-family: var(--sans);
  font-size: .75rem;
  color: rgba(245,240,232,.4);
  text-decoration: none;
  letter-spacing: .07em;
  font-weight: 300;
  transition: color .25s;
}
.footer-links a:hover {
  color: var(--gold-l);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--sans);
  font-size: .62rem;
  color: rgba(245,240,232,.2);
  letter-spacing: .15em;
  font-weight: 300;
}
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,240,232,.28);
  text-decoration: none;
  transition: color .25s;
  font-weight: 300;
}
.footer-social a:hover {
  color: var(--gold-l);
}

@media (max-width: 900px) {
  #site-footer { padding: 3rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}
