.footer {
  background: var(--ink);
  color: rgba(250, 246, 240, 0.7);
  padding: 88px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 246, 240, 0.12);
}

.footer__brand img {
  height: 96px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer__brand p {
  max-width: 340px;
  font-size: 0.92rem;
  line-height: 1.75;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.footer__col h4 {
  font-family: var(--sans);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 6px;
}

.footer__col a,
.footer__col span {
  font-size: 0.9rem;
  color: rgba(250, 246, 240, 0.68);
  transition: color 0.3s ease;
  width: fit-content;
  max-width: 100%;
  overflow-wrap: break-word;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(250, 246, 240, 0.45);
}

.footer__tagline {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

/* Footer links are only as tall as their text; give them a real tap target. */
@media (hover: none) {
  .footer__col {
    gap: 2px;
  }

  .footer__col a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
}

@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
