/* ── Site Footer ────────────────────────────────────────────────────────────── */
.tih-footer {
  background: var(--tih-navy);
  color: rgba(255,255,255,0.75);
  margin-top: auto;
}
.tih-footer__inner {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(32px, 5vw, 48px);
}

/* Brand */
.tih-footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  text-decoration: none;
}
.tih-footer__logo img {
  height: 32px;
  width: auto;
  max-width: 200px;
}
.tih-footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}

/* Nav columns */
.tih-footer__col-title {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45) !important;
  margin: 0 0 14px !important;
}
.tih-footer__nav {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tih-footer__nav li { padding: 0; margin: 0; }
.tih-footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none;
  padding: 3px 0;
  display: block;
  transition: color 0.15s;
}
.tih-footer__nav a:hover { color: #fff !important; }

/* Newsletter */
.tih-footer__newsletter-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}
.tih-newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tih-newsletter-form input[type="email"] {
  flex: 1 1 160px;
  padding: 9px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--tih-radius-md);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
}
.tih-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.tih-newsletter-form input[type="email"]:focus { border-color: var(--tih-teal); }
.tih-newsletter-form button {
  padding: 9px 16px;
  background: var(--tih-teal);
  color: #fff;
  border: none;
  border-radius: var(--tih-radius-md);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.tih-newsletter-form button:hover { background: var(--tih-teal-dark); }

/* Fluent Forms / MC4WP in footer */
.tih-newsletter-form-wrap .ff-el-group { margin-bottom: 0; }
.tih-newsletter-form-wrap form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tih-newsletter-form-wrap input[type="email"] {
  flex: 1 1 160px;
  padding: 9px 14px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--tih-radius-md);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
}
.tih-newsletter-form-wrap button,
.tih-newsletter-form-wrap input[type="submit"] {
  padding: 9px 16px;
  background: var(--tih-teal);
  color: #fff;
  border: none;
  border-radius: var(--tih-radius-md);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

/* Bottom bar */
.tih-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 20px;
}
.tih-footer__bottom-inner {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tih-footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }

.tih-footer__legal-nav {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tih-footer__legal-nav li { padding: 0; }
.tih-footer__legal-nav a { font-size: 0.8rem; color: rgba(255,255,255,0.45) !important; text-decoration: none; }
.tih-footer__legal-nav a:hover { color: #fff !important; }

.tih-footer__disclaimer {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  line-height: 1.6;
  max-width: var(--tih-max-wide);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

@media (max-width: 768px) {
  .tih-footer__cols { flex-direction: column; }
  .tih-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}
