@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("/site/templates/fonts/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── SITE FOOTER ── */
#site-footer {
  padding: 3rem 5% 1.5rem;
  margin-top: -2rem;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 2rem 2rem 1rem;
}

/* ── BRAND ── */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  min-height: 100%;
}

.footer-logo img {
  height: 18px;
  width: auto;
  display: block;
}

.footer-logo:hover img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(98%) saturate(3858%) hue-rotate(351deg) brightness(92%) contrast(94%);
}

.footer-tagline {
  color: rgba(255,255,255,0.35);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 15px;
  margin: 0;
}

.footer-motto {
  color: #fff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 15px;
  margin: 0.5rem 0 0 0;
}

.motto-dot {
  color: #ffb7b5;
}

.footer-tmb-logo {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.5rem;
}

.footer-tmb-logo img {
  height: 12px;
  width: auto;
  display: block;
}

.footer-tmb-logo:hover img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(98%) saturate(3858%) hue-rotate(351deg) brightness(92%) contrast(94%);
}

/* ── NAVIGATION ── */
.footer-nav {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-heading {
  color: rgba(255,255,255,0.3);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 15px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.footer-link {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 15px;
  width: fit-content;
}

.footer-link:hover {
  color: #e11e16;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  border-top: 2px solid rgba(255,255,255,0.05);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom span {
  color: #ffffff;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 15px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  
    #site-footer {
    padding: 2rem 1rem 1rem;
  }
  
  .footer-inner {
    padding: 1.5rem 1rem 0.75rem;
  }
  
  .footer-nav {
    gap: 1.5rem;
  }
  
  .footer-link {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-logo img {
    height: 16px;
  }
}