/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--text);
  padding-block: var(--sp-lg);
  text-align: center;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Logo */
.footer__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer__logo span { color: rgba(255,255,255,0.35); }

/* Links */
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color var(--trans);
}

.footer__links a:hover { color: var(--white); }

/* Divider line */
.footer__rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Copyright row */
.footer__bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* Deerflow badge */
.footer__deerflow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  transition: color var(--trans);
}

.footer__deerflow:hover { color: rgba(255, 255, 255, 0.7); }

.footer__deerflow::before {
  content: '✦ ';
  font-size: 9px;
  opacity: 0.5;
}

/* Mobile */
@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
