/* ── FOOTER ── */

footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  padding: 36px 5vw;
  font-size: 0.88rem;
  line-height: 1.7;
}

footer strong {
  color: #fff;
}

footer p + p {
  margin-top: 8px;
}

footer a {
  color: #f5f5f5; /* same as your text */
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background: #f5f5f5;
  transition: width 0.3s ease;
}

footer a:hover::after {
  width: 100%;
}