/* =========================
   ACKG Footer (Light) — FINAL
   Works with: assets/includes/footer-*.html
========================= */

#siteFooter{ margin-top: 40px; }

/* Base container in footer only */
#siteFooter .container{
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* Footer shell */
#siteFooter .ackgFooter{
  background: #ffffff;
  color: #111827;
  border-top: 1px solid rgba(17, 24, 39, 0.10);
}

#siteFooter .ackgFooter .container{
  padding: 28px 0 22px;
}

/* 3-column grid */
#siteFooter .ackgGrid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
}

/* Brand row */
#siteFooter .ackgBrand{
  display: flex;
  align-items: center;
  gap: 10px;
}

#siteFooter .ackgLogo{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(17, 24, 39, 0.06);
  padding: 6px;
  object-fit: contain;
}

#siteFooter .ackgBrandTitle{
  font-weight: 950;
  letter-spacing: 0.6px;
  font-size: 18px;
  color: #111827;
}

#siteFooter .ackgSmall{
  margin-top: 8px;
  font-size: 13px;
  color: rgba(17, 24, 39, 0.72);
  max-width: 440px;
}

/* Follow title */
#siteFooter .followTitle{
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(17,24,39,0.75);
}

/* Column titles */
#siteFooter .ackgGrid h4{
  margin: 4px 0 10px;
  font-size: 14px;
  font-weight: 950;
  color: #111827;
}

/* Footer links (only inside footer) */
#siteFooter .ackgGrid a{
  display: inline-block;
  margin: 6px 0;
  font-size: 14px;
  color: rgba(17, 24, 39, 0.76);
  transition: color 160ms ease, transform 160ms ease, background 160ms ease;
  border-radius: 10px;
  padding: 2px 6px;
  text-decoration: none;
}

#siteFooter .ackgGrid a:hover{
  color: rgba(17, 24, 39, 0.95);
  background: rgba(17, 24, 39, 0.06);
  transform: translateY(-1px);
}

/* Contact lines */
#siteFooter .contactLine{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

#siteFooter .contactIcon{
  width: 18px;
  height: 18px;
  opacity: 0.85;
}

/* Social icons — mono -> color on hover */
#siteFooter .brandSocial{
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

#siteFooter .sItem{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

#siteFooter .sItem:hover{
  transform: translateY(-2px);
  background: #eaeaea;
  border-color: rgba(17, 24, 39, 0.18);
}

#siteFooter .sItem.disabled{
  pointer-events: none;
  opacity: 0.40;
  filter: grayscale(1);
}

/* two-layer icon swap */
#siteFooter .sItem img{
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease;
}

#siteFooter .sItem .iconIc{ opacity: 0; }
#siteFooter .sItem:hover .iconIc{ opacity: 1; }
#siteFooter .sItem:hover .iconMc{ opacity: 0; }

/* Disabled items should never switch on hover */
#siteFooter .sItem.disabled .iconIc{ opacity: 0 !important; }
#siteFooter .sItem.disabled .iconMc{ opacity: 1 !important; }

/* Bottom copyright */
#siteFooter .ackgBottom{
  margin-top: 20px;
  padding-top: 16px;
  font-size: 13px;
  color: rgba(17, 24, 39, 0.55);
  text-align: center;
}

/* Responsive */
@media (max-width: 980px){
  #siteFooter .ackgGrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px){
  #siteFooter .ackgGrid{ grid-template-columns: 1fr; }
}