/* ============================================================
   FOOTER — brand, link columns, contact, bottom bar
   ============================================================ */

footer { background: var(--navy-deep); color: rgba(255,255,255,.62); font-size: 14.5px; }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px;
  padding: clamp(56px,6vw,80px) 0 48px;
}
.foot-col h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.92); margin-bottom: 22px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col ul a { transition: color .2s ease; }
.foot-col ul a:hover { color: var(--gold-soft); }
.foot-brand p { margin: 22px 0 26px; max-width: 230px; line-height: 1.5; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  display: grid; place-items: center; transition: border-color .2s ease, background .2s ease;
}
.socials a:hover { border-color: var(--gold-soft); background: rgba(191,139,51,.15); }
.socials svg { width: 17px; height: 17px; }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; line-height: 1.45; }
.contact-list svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--gold-soft); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 13.5px; flex-wrap: wrap;
}
.foot-bottom .legal { display: flex; gap: 26px; }
.foot-bottom .legal a:hover { color: var(--gold-soft); }
