/* ===========================================
   Lotwood — Footer 2026
   Mobile-first
   =========================================== */

footer.site-footer {
  background: #2d3f53;
  color: #fff;
  margin-top: 0;
  padding: 48px 0 0;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

/* --- Logo column --- */
.footer-brand img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #f0541e;
  margin: 0;
}

/* --- Nav column --- */
.footer-nav-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-nav li a:hover {
  color: #fff;
}

.footer-nav-secondary {
  margin-top: 16px;
}

/* --- Contact column --- */
.footer-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-contact i {
  font-size: 18px;
  color: #f0541e;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

/* --- Socials --- */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.footer-socials a:hover {
  background: #f0541e;
  color: #fff;
}

/* --- Bottom bar --- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

/* ===========================================
   Tablet — 600px+
   =========================================== */
@media (min-width: 600px) {
  .site-footer {
    padding: 56px 0 0;
  }

  .site-footer-inner {
    padding: 0 32px;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ===========================================
   Desktop — 960px+
   =========================================== */
@media (min-width: 960px) {
  .site-footer {
    padding: 64px 0 0;
  }

  .site-footer-inner {
    padding: 0 40px;
  }

  .site-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
}
