.site-footer {
  position: relative;
  color: white;
}

.site-footer__bg-wrap {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0);
}

.site-footer__content {
  position: relative;
  z-index: 2;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.site-footer__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__brand {
  max-width: 34rem;
}

.site-footer__logo {
  display: block;
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem;
}

.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: right;
}

.site-footer__link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  color:white;
  padding:0px 6px;
}


.site-footer__link:hover {
  opacity: 0.8;
}

.site-footer__socials {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  text-decoration: none;
  fill:red;
}

.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer__tagline-row {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
}

.site-footer__big-tagline {
  margin: 0;
  font-family: var(--font-awesome), Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 7vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: none;
  max-width: 12ch;
  color:white;
}

@media (max-width: 768px) {
  .site-footer__content {
    min-height: 360px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-footer__logo {
    max-width: 180px;
  }

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

  .site-footer__menu {
    text-align: left;
  }

  .site-footer__tagline-row {
    padding-top: 1.5rem;
  }

  .site-footer__big-tagline {
    font-size: clamp(2rem, 12vw, 3.5rem);
    max-width: 10ch;
    font-family: 'Awesome Serif', serif;
  }
}