/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-primary-dark);
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-sm);
}

.footer-main {
  padding: var(--sp-16) 0 var(--sp-10);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-10);
}

.footer-brand {}
.footer-brand .logo {
  margin-bottom: var(--sp-5);
  display: inline-flex;
  padding: var(--sp-2) var(--sp-3);
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.footer-brand .logo__image--footer {
  height: 72px;
  max-width: min(100%, 320px);
}
.footer-brand p {
  margin-bottom: var(--sp-5);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.65);
}
.footer-social {
  display: flex;
  gap: var(--sp-3);
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.footer-social a:hover {
  background: var(--clr-accent);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.footer-col__heading {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.footer-col__heading::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--clr-accent);
}

.footer-links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-links a {
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.footer-links a:hover { color: var(--clr-accent-light); transform: translateX(3px); }
.footer-links a::before {
  content: '›';
  color: var(--clr-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.footer-contact { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  color: rgba(255,255,255,0.65);
}
.footer-contact-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--clr-accent);
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--clr-accent-light); }
.footer-contact-item__link {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-bottom {
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--clr-accent-light); }
.footer-bottom__links { display: flex; gap: var(--sp-5); }

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom__inner { flex-direction: column; text-align: center; }
}
