/* ─── BFC CLUB — Site Footer ─── */
.site-footer.site-footer--ozluce,
.site-footer.site-footer--balat {
  opacity: 1;
  transform: none;
}

.site-footer {
  background: var(--onyx-black, #0A0A0A);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4.5rem var(--margin-mobile, 16px) 2.5rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding-left: var(--margin-desktop, 64px);
    padding-right: var(--margin-desktop, 64px);
  }
}

.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 2rem 3rem;
  }
}

.site-footer__brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}

.site-footer__heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.75rem;
}

.site-footer__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1.25rem;
  max-width: 22rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #fff;
}

.site-footer--ozluce .site-footer__link:hover,
.site-footer--ozluce .site-footer__link:focus-visible {
  color: var(--electric-yellow, #EEEE22);
}

.site-footer--balat .site-footer__link:hover,
.site-footer--balat .site-footer__link:focus-visible {
  color: var(--power-magenta, #DE006D);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 0.25rem;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  transform: translateY(-1px);
}

.site-footer--ozluce .site-footer__social-link:hover,
.site-footer--ozluce .site-footer__social-link:focus-visible {
  border-color: rgba(238, 238, 34, 0.35);
  background: rgba(238, 238, 34, 0.1);
  color: var(--electric-yellow, #EEEE22);
}

.site-footer--balat .site-footer__social-link:hover,
.site-footer--balat .site-footer__social-link:focus-visible {
  border-color: rgba(222, 0, 109, 0.35);
  background: rgba(222, 0, 109, 0.1);
  color: var(--power-magenta, #DE006D);
}

.site-footer__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.site-footer__copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__legal a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer--ozluce .site-footer__legal a:hover {
  color: var(--electric-yellow, #EEEE22);
}

.site-footer--balat .site-footer__legal a:hover {
  color: var(--power-magenta, #DE006D);
}
