footer {
  background: var(--ink);
  color: var(--warm-white);
  padding: 5rem 3rem 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(247,243,238,0.1);
}

.footer-brand .logo {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,243,238,0.55);
  max-width: 32ch;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.4);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(247,243,238,0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--warm-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(247,243,238,0.3);
}

.footer-bottom a {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(247,243,238,0.3);
  text-decoration: none;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
