/* ============================================
   Romance Drop — Footer
   Site footer, link columns, legal.
   Requires: base.css
   ============================================ */

.footer {
  margin-top: auto;
  padding: var(--space-12) 0 var(--space-8);
  border-top: 1px solid var(--border);
  background: var(--card-bg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
  }
}

/* ---- Brand column ---- */
.footer__brand {
  max-width: 280px;
}

.footer__brand .logo {
  margin-bottom: var(--space-4);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social a {
  color: var(--muted);
  transition: color var(--ease-default);
}

.footer__social a:hover {
  color: var(--rose);
}

.footer__social svg {
  width: 20px;
  height: 20px;
}

/* ---- Link columns ---- */
.footer__col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: var(--space-4);
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: var(--space-3);
}

.footer__col a {
  font-size: var(--text-sm);
  color: var(--muted);
  text-decoration: none;
  transition: color var(--ease-default);
}

.footer__col a:hover {
  color: var(--rose);
}

/* ---- Bottom bar ---- */
.footer__bottom {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: center;
}

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

.footer__bottom p {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-bottom: 0;
}

.footer__bottom a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__bottom a:hover {
  color: var(--rose);
}
