#footer-cta {
  padding: 100px 48px;
  background: var(--black); color: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 32px;
}
.footer-cta-title {
  font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.05;
}

@media (max-width: 900px) {
  #footer-cta { padding: 80px 24px; }
}


/* ── FULL FOOTER ─────────────────────────────────────────── */
#art-footer {
  background: var(--black);
  padding: 56px 48px 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.art-footer-cols {
  display: grid; grid-template-columns: repeat(3, auto);
  justify-content: flex-start; gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 28px;
}
.art-footer-cols--with-socials { grid-template-columns: repeat(3, auto) 1fr; }
.art-footer-col {
  display: flex; flex-direction: column; gap: 12px;
}
.art-footer-col a {
  font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .2s;
}
.art-footer-col a:hover { color: var(--yellow); }
.art-footer-socials {
  align-self: end;
  flex-direction: row;
  justify-self: end;
  gap: 16px;
}
.art-footer-socials {
  align-self: center;
}
.art-footer-socials a {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.art-footer-socials svg { display: block; height: 20px; width: 20px; }
.art-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.art-footer-bottom span {
  font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.3);
}
.art-footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.art-footer-bottom a:hover { color: var(--yellow); }
.art-footer-logo img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
}
/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .art-footer-cols { gap: 32px; }
}
@media (max-width: 600px) {
  .art-footer-cols,
  .art-footer-cols--with-socials { grid-template-columns: 1fr 1fr; }
  .art-footer-socials {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .art-footer-bottom { flex-direction: column; gap: 16px; }
}
