.site-footer {
  background-color: var(--brand-green);
  color: #fff;
  padding: 65px 6% 30px;
  position: relative;
  overflow: hidden;
}

/* =========================
   LAYOUT
========================= */

.footer-content {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.4fr 2fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

/* =========================
   TEXT + HEADINGS
========================= */

.site-footer h3 {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1;
}

.site-footer a,
.site-footer p {
  color: #fff;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4;
}

.footer-section a {
  display: block;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials img {
  width: clamp(28px, 2.5vw, 40px);
  filter: brightness(0) invert(1);
}

/* =========================
   CONTACT ICONS
========================= */

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info p img {
  width: clamp(20px, 2vw, 28px);
  filter: brightness(0) invert(1);
}

/* =========================
   BRAND SECTION
========================= */

.footer-brand {
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  padding-left: 25px;
  padding-right: 140px; /* space for logo */
}

.footer-brand h2 {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 12px;
}

.footer-brand p {
  max-width: 320px;
}

/* =========================
   LOGO (FIXED TOP RIGHT)
========================= */

.footer-logo-corner {
  position: absolute;
  top: 0;
  right: 0;

  width: clamp(140px, 16vw, 260px);

  transform: translate(10px, -10px);
  pointer-events: none;
}

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

.copyright {
  margin-top: 50px;
  font-size: 13px;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,0.4);
    border-left: none;
    padding-top: 25px;
    padding-left: 0;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {
  .site-footer {
    padding: 50px 7% 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    padding-right: 110px; /* keeps text from hitting logo */
  }

  .footer-logo-corner {
    width: 140px;
    transform: translate(8px, 0px);
  }

  .copyright {
    margin-top: 40px;
  }
}
@media (max-width: 850px) {

  footer,
  .footer {
    background-color: var(--brand-green);
    overflow: hidden;
  }

  .footer-logo,
  .footer-logo-wrap {
    background: transparent;
  }

  body {
    background-color: #fff;
  }

}