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

.footer {
  background: var(--navy);
  border-top: 1px solid var(--cobalt);
  padding: 40px var(--pad-x) 32px;
}

.footer-inner {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 40px;
  align-items: end;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-copy p {
  font-size: 12px;
  color: rgba(230, 237, 243, 0.7);
  letter-spacing: 0.04em;
}
.footer-copy .footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--f-mono);
  font-weight: 700;
}
.footer-mark::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer-links a {
  font-size: 11px;
  color: rgba(230, 237, 243, 0.7);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--f-mono);
  font-weight: 700;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--gold); }
.footer-links a:hover::after,
.footer-links a:focus-visible::after { width: 100%; }

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .footer-links { flex-wrap: wrap; gap: 18px; }
}
