.site-footer,
.site-footer * {
  box-sizing: border-box;
}

.site-footer {
  background:
    radial-gradient(circle at 8% 10%, rgba(179, 19, 79, .12), transparent 28rem),
    #130f14;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #aaa2ac;
  font-family: Poppins, ui-sans-serif, system-ui, sans-serif;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem) 0;
}

.site-footer__inner {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1560px;
  padding-left: clamp(24px, 3.5vw, 60px);
  padding-right: clamp(24px, 3.5vw, 60px);
  width: 100%;
}

.site-footer__grid {
  align-items: start;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  grid-template-columns: minmax(280px, 1.55fr) repeat(3, minmax(140px, .7fr));
}

.site-footer__column {
  min-width: 0;
}

.site-footer__brand {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  margin: 0 0 1.25rem;
}

.site-footer__brand-link {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.site-footer__brand a {
  color: #fff;
  text-decoration: none;
}

.site-footer__disclaimer {
  color: #a39aa6;
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
  max-width: 37rem;
}

.site-footer__trust {
  align-items: center;
  display: flex;
  gap: .8rem;
  margin-top: 1.6rem;
}

.site-footer__age {
  align-items: center;
  border: 1px solid rgba(226, 106, 153, .72);
  border-radius: 50%;
  color: #f0a6c3;
  display: inline-flex;
  flex: 0 0 2.65rem;
  font-size: .78rem;
  font-weight: 800;
  height: 2.65rem;
  justify-content: center;
}

.site-footer__trust p {
  color: #8e8690;
  font-size: .72rem;
  line-height: 1.55;
  margin: 0;
  max-width: 38rem;
}

.site-footer__heading {
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.3;
  margin: .25rem 0 1.35rem;
  text-transform: uppercase;
}

.site-footer__heading button {
  align-items: center;
  background: none;
  border: 0;
  color: inherit;
  cursor: default;
  display: flex;
  font: inherit;
  justify-content: space-between;
  letter-spacing: inherit;
  padding: 0;
  text-align: left;
  text-transform: inherit;
  width: 100%;
}

.site-footer__heading button > span {
  display: none;
}

.site-footer__nav,
.site-footer__menu {
  margin: 0;
}

.site-footer__menu {
  display: grid;
  gap: .78rem;
  list-style: none;
  padding: 0;
}

.site-footer__menu li {
  margin: 0;
  padding: 0;
}

.site-footer__menu a {
  color: #aaa2ac;
  display: inline-block;
  font-size: .84rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.site-footer__menu a:hover,
.site-footer__menu .current-menu-item > a,
.site-footer__menu a[aria-current="page"] {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  gap: 1rem 2rem;
  justify-content: space-between;
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
  padding: 1.35rem 0 1.55rem;
}

.site-footer__bottom p,
.site-footer__bottom .privacy-settings-link {
  color: #817983;
  font-size: .72rem;
  line-height: 1.5;
  margin: 0;
}

.site-footer__bottom .privacy-settings-link {
  background: none;
  border: 0;
  color: #bcb4be;
  cursor: pointer;
  font-family: inherit;
  padding: .2rem 0;
  text-decoration: none;
}

.site-footer__bottom .privacy-settings-link:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: .25em;
}

@media (max-width: 1024px) {
  .site-footer__grid {
    gap: 3rem 2rem;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(120px, .65fr));
  }
}

@media (max-width: 820px) {
  .site-footer__grid {
    grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(110px, .65fr));
  }

  .site-footer__trust {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding-inline: 1.25rem;
  }

  .site-footer__grid {
    display: block;
  }

  .site-footer__column--brand {
    margin-bottom: 2.5rem;
  }

  .site-footer__column:not(.site-footer__column--brand) {
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .site-footer__heading {
    margin: 0;
  }

  .site-footer__heading button {
    cursor: pointer;
    padding: 1.15rem 0;
  }

  .site-footer__heading button > span {
    display: block;
    height: 12px;
    position: relative;
    width: 12px;
  }

  .site-footer__heading button > span::before,
  .site-footer__heading button > span::after {
    background: #827984;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 5px;
    transition: transform .18s ease;
    width: 12px;
  }

  .site-footer__heading button > span::after {
    transform: rotate(90deg);
  }

  .site-footer__heading button[aria-expanded="true"] > span::after {
    transform: rotate(0);
  }

  .site-footer[data-footer-enhanced] .site-footer__panel[hidden] {
    display: none;
  }

  .site-footer__panel {
    padding: .1rem 0 1.4rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer__menu a,
  .site-footer__heading button > span::before,
  .site-footer__heading button > span::after {
    transition: none;
  }
}
