/* styles/footer.css */
/* ==========================================================================
   FOOTER — Odiseus Talent
   ========================================================================== */

footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 72px var(--page-x) 44px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.f-logo {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.f-logo .nav-logo-dot {
  background: var(--blue);
}

.f-tagline {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.75;
  max-width: 280px;
  margin: 0;
}

.f-office-label {
  font-family: "Geist Mono", monospace;
  font-size: 0.58rem;
  color: var(--blue);
  letter-spacing: 0.12em;
  margin-top: 20px;
  margin-bottom: 6px;
}

.f-office-label + .f-address + .f-office-label {
  margin-top: 18px;
}

.f-address {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  line-height: 1.8;
}

.f-address a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.f-address a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.f-col h4 {
  font-family: "Geist Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin: 0 0 20px;
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.f-col ul a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.83rem;
  text-decoration: none;
  transition: color 0.2s;
}

.f-col ul a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
}

.f-copy {
  font-family: "Geist Mono", monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.06em;
}

.f-socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.f-socials a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.f-socials a:hover {
  color: white;
}
