.footer {
  background: var(--nav-bg);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem var(--gutter) 1.5rem;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  gap: 2rem;
}
.footer-handle {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bg);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.footer-tagline {
  font-family: var(--font-prose);
  font-size: 0.8125rem;
  font-style: italic;
  color: rgba(255,255,255,0.38);
  line-height: 1.6;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}
.footer-social-icon {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: fill 0.2s;
  flex-shrink: 0;
}
.footer-social-icon:hover { fill: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-tmdb {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-tmdb-logo {
  height: 16px;
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-tmdb-logo:hover { opacity: 1; }
.footer-tmdb-text {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.28);
  max-width: 340px;
}
.footer-legal {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
}

/* ── LETTERBOXD IMAGE ICON ── */
.footer-social a[aria-label="Letterboxd"] img {
  display: block;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-social a[aria-label="Letterboxd"]:hover img {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .footer-tagline { max-width: 100%; }
}
