.site-footer {
    position: relative;
    background: #0b0b0b;
    color: #fff;
    padding: 100px 40px 40px;
    overflow: hidden;
  }
  
  .footer-bg-word {
    position: absolute;
    bottom: -40px;
    right: -10%;
    font-size: clamp(6rem, 18vw, 18rem);
    font-weight: 900;
    letter-spacing: .12em;
    color: rgba(255,255,255,.04);
    pointer-events: none;
  }
  
  .footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
  
  .footer-col.brand img {
    height: 150px;
    margin-bottom: 10px;
  }
  
  .footer-col.brand p {
    max-width: 360px;
    opacity: .85;
    line-height: 1.6;
  }
  
  .site-footer h4 {
    color: #e84f1b;
    margin-bottom: 16px;
  }
  
  .site-footer a,
  .site-footer span {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    opacity: .8;
  }
  
  .site-footer a:hover {
    opacity: 1;
    color: #e84f1b;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: .85rem;
    opacity: .5;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
  }
  
  @media (max-width: 900px) {
    .footer-inner {
      grid-template-columns: 1fr;
    }
  }
  

.footer-col.brand img.footer-logo {
  height: 120px;
  width: auto;
  border-radius: 12px;
  transform: rotate(-2deg);
  box-shadow: 0 20px 50px rgba(232,79,27,.3);
  margin-bottom: 18px;
}

.footer-empowered {
  display: block;
  margin-top: 8px;
  opacity: .7;
  font-weight: 700;
  letter-spacing: .04em;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(
    -45deg,
    #e84f1b 0 24px,
    #f8a690 24px 48px
  );
}
