/* ==========================================================
   DaheDigital — footer.css
   ========================================================== */

/* footer */
.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-2xl) 0 var(--sp-xl);
  margin-top: auto;
}

/* asymmetric footer: large slogan left, compact columns right */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.footer-brand .tfsp9-logo img {
  max-width: calc(var(--logo-w) * 0.9);
  max-height: calc(var(--logo-h) * 0.9);
  width: auto;
  height: auto;
  display: block;
}
.footer-slogan {
  font-family: var(--ff-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--clr-text);
  letter-spacing: -0.01em;
  max-width: 380px;
  margin-top: var(--sp-md);
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 300px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-sm);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--clr-text);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer-col ul li a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  margin-top: var(--sp-2xl);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}
.footer-legal {
  display: flex;
  gap: var(--sp-md);
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--tr-fast);
}
.footer-legal a:hover {
  color: var(--clr-accent);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}
