/* footer.css - v1.5 homepage footer (Direction C style)
   NOTE: shared footer primitives (.footer, .footer-brand, .footer-links)
   remain in main.css for walkthroughs/ and assets.html non-regression.
   This file holds only the v1.5 homepage footer additions. */

.v15-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.v15-footer .v15-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.v15-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v15-footer-brand-text {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.v15-footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.v15-footer-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.06em;
}
.v15-footer-links a:hover { color: var(--ember); }
.v15-footer-links a:focus-visible { outline: 2px solid var(--ember); outline-offset: 2px; border-radius: 2px; }

.v15-footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--border);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 480px) {
  .v15-footer .v15-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .v15-footer-links { flex-wrap: wrap; gap: 14px; }
}
