.siteFooter {
  background-color: rgba(0, 0, 0, 0.625);
  background-image: url('/wp-content/uploads/2024/02/footer_bg.jpg');
  background-blend-mode: overlay;
  background-position: center 52%;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}


/* =========================
   SHARED WRAPPER
========================= */

.siteFooter .innerWrap {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}


/* =========================
   TOP MENU
========================= */

.footerTop {
  background: #1D1814;
  text-align: center;
}

.footerTop .innerWrap {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footerMenuList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footerMenuList li {
  margin: 0;
  padding: 0;
}

.footerMenuList a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Oswald', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 1;
  transition: color 0.3s ease;
}

.footerMenuList a:hover {
  color: #c95a24;
}


/* =========================
   MAIN FOOTER AREA
========================= */

.footerMain .innerWrap {
  padding-top: 50px;
  padding-bottom: 60px;
}

.footerGrid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}


/* =========================
   NEWSLETTER
========================= */

.footerLeft {
  width: 56%;
  min-width: 0;
  padding-right: 50px;
}


/* =========================
   DISCLOSURE
========================= */

.footerRight {
  width: 44%;
  min-width: 0;
}


/* =========================
   HEADINGS
========================= */

.footerTitle {
  padding: 0;
  margin: 0 0 13px;
  font-family: 'Oswald', Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.75px;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: 1px 1px 0.1em #000000;
}


/* =========================
   DISCLOSURE TYPOGRAPHY
========================= */

.footerRight p {
  margin: 0;
  padding: 0;
  font-family: 'Archivo Narrow', Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.355;
  letter-spacing: 0.03rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 0.1em #000000;
}


/* =========================
   NEWSLETTER PLACEHOLDER
========================= */

.footerNewsletterPlaceholder {
  font-family: 'Archivo Narrow', Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.03rem;
  color: rgba(255,255,255,0.7);
  text-shadow: 1px 1px 0.1em #000000;
}


/* =========================
   BOTTOM BAR
========================= */

.footerBottom {
  border-bottom: 5px solid #1D1814;
}

.footerBottom .innerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 0;
  padding-bottom: 18px;
}


/* =========================
   COPYRIGHT
========================= */

.footerCopy {
  font-family: 'Oswald', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 40px;
  color: #FFFFFF;
}

.footerCopy a {
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footerCopy a:hover {
  color: #c95a24;
}


/* =========================
   SOCIAL
========================= */

.footerSocial {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* =========================
   SOCIAL BUTTONS
========================= */

.footerSocial {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footerSocial .branding-link {
  display: flex;
  position: relative;
  height: 40px;
  width: 40px;
  padding: 2px;
  margin: 0 3px 0 0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(86,70,61,0.50);
  transition: all 0.35s ease-in-out;
}

.footerSocial .branding-link:last-child {
  margin-right: 0;
}

.footerSocial .branding-link a {
  display: flex;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: rgba(86,70,61,0.75);
  color: #FAF8F7;
  text-decoration: none;
  transition: all 0.35s ease-in-out;
}

.footerSocial .branding-link svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footerSocial .branding-link:hover {
  border-color: #C74817;
}

.footerSocial .branding-link:hover a {
  background-color: #C74817;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {

  .footerGrid {
    flex-direction: column;
  }

  .footerLeft,
  .footerRight {
    width: 100%;
    padding-right: 0;
  }

  .footerLeft {
    margin-bottom: 40px;
  }

  .footerBottom .innerWrap {
    flex-direction: column;
    text-align: center;
  }

  .footerSocial {
    justify-content: center;
  }

}