/* ── FOOTER ── */
footer {
  background: oklch(15% 0.008 40);
  padding: 40px clamp(1.5rem, 5vw, 5rem) 32px;
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: oklch(100% 0 0 / 0.45);
  letter-spacing: 0.02em;
}

.footer-logo-mark {
  width: 26px; height: 26px;
  background: oklch(100% 0 0 / 0.08);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg {
  width: 13px; height: 13px;
  stroke: var(--amber-bright); fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
}

.footer-copy {
  font-size: 12px;
  color: oklch(100% 0 0 / 0.25);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 12px;
  color: oklch(100% 0 0 / 0.3);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-links a:hover { color: oklch(100% 0 0 / 0.6); }
