/* ── FOOTER ── */
.footer {
  background: var(--ink);
  padding: var(--space-xl) 48px var(--space-lg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(242, 237, 226, 0.07);
  flex-wrap: wrap;
}

.footer-brand-name {
  font-family: var(--serif);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--paper);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: rgba(242, 237, 226, 0.38);
  max-width: 240px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.footer-col-title {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 237, 226, 0.3);
  margin-bottom: 14px;
}

.footer-col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-list a {
  font-size: var(--text-sm);
  color: rgba(242, 237, 226, 0.5);
  text-decoration: none;
  transition: color var(--duration-sm);
}

.footer-col-list a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-md);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(242, 237, 226, 0.22);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(242, 237, 226, 0.22);
  text-decoration: none;
  transition: color var(--duration-sm);
}

.footer-legal a:hover {
  color: rgba(242, 237, 226, 0.55);
}

@media (max-width: 768px) {
  .footer {
    padding: var(--space-xl) 24px var(--space-lg);
  }
  .footer-top {
    flex-direction: column;
    gap: var(--space-lg);
  }
  .footer-links {
    gap: var(--space-lg);
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
