.site-footer {
  position: relative;
  background: #0b0c0e;
  color: rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.footer-bg {
  
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80% center;
  opacity: 0.35;
}

.footer-inner {
  position: relative;
  width: 89.9%;
}

/* TOP ROW */
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr; /* left wider, right image/brand */
  gap: 48px;
}

/* Left side */
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-nav a {
  color: #c1d83c;
  text-decoration: none;
}

.footer-divider {
  margin: 24px 0 28px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.18) 12px,
    transparent 12px,
    transparent 20px
  );
  opacity: 0.6;
  width: 420px;
}

/* locations grid */
.footer-locations {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.loc h4 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 1px;
}

.loc p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* Right side brand */
.footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
}
.footer-right a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand {
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}
.footer-brand img {
  width: auto;
  height: 100px;
  margin-top: 32%;
}

/* BOTTOM BAR */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  font-size: 13px;
  color: #c1d83c;
}

.footer-socials {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 80px;
  color: #c1d83c;
}
.footer-socials a {
  color: #c1d83c;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
}

.footer-bottom a {
  color: #c1d83c;
  text-decoration: none;
}

.footer-bottom a:hover,
.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================
   FOOTER responsive
========================= */

/* up to 1024px */
@media (max-width: 1024px) {
  .footer-inner {
    width: min(92%, 1200px);
    margin: 0 auto;
    padding: 70px 0;
  }

  .footer-top {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
  }

  .footer-divider {
    width: min(100%, 420px);
  }

  /* you only have 2 locations, so make it 2 cols */
  .footer-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }

  .footer-socials {
    margin-top: 40px;
    gap: 18px;
  }
}

/* up to 769px */
@media (max-width: 769px) {
  .footer-top {
    grid-template-columns: 1fr; /* stack left + right */
    gap: 40px;
    padding-bottom: 26px;
  }

  .footer-right {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-divider {
    width: 100%;
  }

  .footer-socials {
    justify-content: flex-start;
    margin-top: 18px; /* remove big spacing */
    flex-wrap: wrap;
  }

  .footer-brand img {
    height: 90px;
  }
}

/* up to 620px */
@media (max-width: 620px) {
  footer {
    height: 600px;
  }
  .footer-inner {
    width: 92%;
    margin: 0 auto;
    padding: 55px 0;
  }

  .footer-nav {
    gap: 12px 16px;
    font-size: 12px;
  }

  .footer-locations {
    grid-template-columns: 1fr; /* stack locations */
    gap: 22px;
  }

  .loc p {
    font-size: 12.5px;
  }

  .footer-brand img {
    height: 78px;
  }

  .footer-socials {
    gap: 12px 16px;
  }
}

/* up to 430px */
@media (max-width: 430px) {
  footer {
    height: 600px;
  }
  .footer-inner {
    width: 92%;
    margin: 0 auto;
    padding: 48px 0;
  }

  .footer-nav a,
  .footer-socials a {
    font-size: 12px;
  }

  .footer-divider {
    margin: 18px 0 20px;
  }

  .loc h2 {
    font-size: 13px;
    padding-bottom: 10px;
  }

  .loc h4 {
    font-size: 11px;
  }

  .loc p {
    font-size: 12px;
    line-height: 1.65;
  }

  .footer-brand img {
    height: 68px;
  }
}
