:root {
  --furia-footer-gold: #c5a15a;
  --furia-footer-ivory: #f4f1e9;
  --furia-footer-line: rgba(197, 161, 90, .3);
  --furia-footer-serif: "Bodoni Moda", "Cormorant Garamond", Georgia, serif;
  --furia-footer-sans: "Manrope", Inter, Arial, sans-serif;
}

.fs-global-footer.furia-footer-map {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 126px;
  box-sizing: border-box;
  padding: 30px clamp(24px, 3.25vw, 62px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(24px, 3vw, 58px);
  border: 0;
  border-top: 1px solid rgba(197, 161, 90, .22);
  background: #000;
  color: rgba(244, 241, 233, .76);
  font-family: var(--furia-footer-sans);
}

.furia-footer-map a {
  box-sizing: border-box;
  text-decoration: none;
}

.furia-footer-map__brand {
  justify-self: start;
  min-height: 48px;
  padding: 4px 0;
  border: 0 !important;
  transform: scale(.8);
  transform-origin: left center;
}

.furia-footer-map__brand.fs-global-wordmark span,
.furia-footer-map__brand.wordmark span {
  line-height: normal;
}

.furia-footer-map__nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 32px);
  min-width: 0;
}

.furia-footer-map__nav a,
.furia-footer-map__legal,
.furia-footer-map__top {
  position: relative;
  min-height: 48px;
  padding: 14px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  color: rgba(244, 241, 233, .7) !important;
  font-family: var(--furia-footer-sans);
  font-size: clamp(12px, .76vw, 14px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .22s ease;
}

.furia-footer-map__nav a::after,
.furia-footer-map__top::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--furia-footer-gold);
  opacity: 0;
  transform: scaleX(.55);
  transition: opacity .22s ease, transform .22s ease;
}

.furia-footer-map__nav a:hover,
.furia-footer-map__nav a:focus-visible,
.furia-footer-map__legal:hover,
.furia-footer-map__legal:focus-visible,
.furia-footer-map__top:hover,
.furia-footer-map__top:focus-visible,
.furia-footer-map__nav a[aria-current="page"] {
  color: var(--furia-footer-gold) !important;
}

.furia-footer-map__nav a:hover::after,
.furia-footer-map__nav a:focus-visible::after,
.furia-footer-map__legal:hover::after,
.furia-footer-map__legal:focus-visible::after,
.furia-footer-map__top:hover::after,
.furia-footer-map__top:focus-visible::after,
.furia-footer-map__nav a[aria-current="page"]::after {
  opacity: .72;
  transform: scaleX(1);
}

.furia-footer-map__nav a[aria-current="page"] {
  font-weight: 600;
}

.furia-footer-map__legal,
.furia-footer-map__top {
  justify-self: end;
  color: rgba(244, 241, 233, .62) !important;
}

@media (max-width: 1080px) {
  .fs-global-footer.furia-footer-map {
    grid-template-columns: auto 1fr auto auto;
    gap: 22px;
    padding-inline: 28px;
  }

  .furia-footer-map__nav { gap: 17px; }
  .furia-footer-map__nav a,
.furia-footer-map__legal,
.furia-footer-map__top 
{ font-size: 12px; 
letter-spacing: .1em;
}

@media (max-width: 860px) {
  .fs-global-footer.furia-footer-map {
    min-height: 0;
    padding: 26px 24px 30px;
    grid-template-columns: 1fr auto auto;
grid-template-areas:
  "brand legal top"
  "nav nav nav";
    row-gap: 18px;
  }

  .furia-footer-map__brand { grid-area: brand; }
  .furia-footer-map__legal { grid-area: legal; }
  .furia-footer-map__nav {
    grid-area: nav;
    justify-self: stretch;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(197, 161, 90, .16);
  }
  .furia-footer-map__top { grid-area: top; }
}

@media (max-width: 600px) {
  .fs-global-footer.furia-footer-map {
    padding: 24px 18px 28px;
    row-gap: 16px;
  }

  .furia-footer-map__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px 8px;
  }
  .furia-footer-map__nav a,
  .furia-footer-map__top {
    min-height: 46px;
    font-size: 12px !important;
    letter-spacing: .1em;
  }
}

@media (max-width: 370px) {
  .fs-global-footer.furia-footer-map { padding-inline: 14px; }
  .furia-footer-map__nav a,
  .furia-footer-map__top { font-size: 13px !important; letter-spacing: .04em; }
}

@media (prefers-reduced-motion: reduce) {
  .furia-footer-map__nav a,
  .furia-footer-map__top,
  .furia-footer-map__nav a::after,
  .furia-footer-map__top::after {
    transition: none;
  }
}
