/*
 * Barba Premium deployment refinement
 * Preserve the supplied editorial luxury direction: deep navy, warm brass,
 * generous negative space, and restrained motion. This file only improves
 * footer hierarchy and responsive behavior; it does not redesign the build.
 */

.site-footer {
  padding: clamp(64px, 8vw, 112px) 0 0;
  background: #071521;
  color: rgba(247, 244, 237, 0.72);
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(0, 1.95fr);
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
  min-height: auto;
  padding-bottom: clamp(56px, 7vw, 92px);
}

.site-footer .footer-brand-column {
  max-width: 320px;
}

.site-footer .footer-brand-column .brand-lockup {
  margin-bottom: 22px;
}

.site-footer .footer-brand-column::after {
  content: none;
  display: none;
}

.site-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}

.site-footer .footer-socials a {
  color: rgba(247, 244, 237, 0.62);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer .footer-socials a:hover,
.site-footer .footer-socials a:focus-visible {
  color: #e5b45f;
  transform: translateY(-2px);
}

.site-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.site-footer .footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.site-footer .footer-links strong {
  margin-bottom: 8px;
  color: #e5b45f;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer .footer-links a {
  color: rgba(247, 244, 237, 0.68);
  font-size: 0.76rem;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #f7f4ed;
  transform: translateX(3px);
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  border-top: 1px solid rgba(247, 244, 237, 0.12);
  color: rgba(247, 244, 237, 0.42);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.site-footer .footer-bottom > span:nth-child(2) {
  justify-self: center;
}

.site-footer .footer-bottom .footer-mark {
  justify-self: end;
  color: rgba(229, 180, 95, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

@media (max-width: 900px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer .footer-brand-column {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 58px;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 24px;
  }

  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0 26px;
    text-align: left;
  }

  .site-footer .footer-bottom > span:nth-child(2),
  .site-footer .footer-bottom .footer-mark {
    justify-self: start;
  }
}
