.footer {
  padding: 64px 0 28px;
  border-top: 1px solid rgba(250, 249, 246, 0.1);
  background: radial-gradient(circle at top left, rgba(197, 164, 109, 0.1), transparent 34%), var(--navy-dark);
}

.footer .container {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 0.65fr;
  gap: 42px;
  align-items: start;
}

.footer-brand-name { display: inline-block; margin-bottom: 14px; color: var(--cream); font-size: 1.2rem; font-weight: 700; line-height: 1.2; }
.footer-tagline { max-width: 32ch; color: var(--text-soft); }
.footer-heading { margin-bottom: 18px; color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-nav, .footer-contact, .footer-legal { display: grid; gap: 11px; }
.footer a { color: var(--text-soft); text-decoration: none; transition: color var(--transition, 220ms ease); }
.footer a:hover, .footer a:focus-visible { color: var(--gold); text-decoration: none; }
.footer-address { color: var(--text-soft); font-style: normal; line-height: 1.75; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(250, 249, 246, 0.08); color: rgba(250, 249, 246, 0.58); font-size: 0.84rem; }

@media (max-width: 1080px) {
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
