/* ═══════════════════════════════════════════
   GLOBAL MINIMAL FOOTER
   ═══════════════════════════════════════════ */

.ft-global {
  background: var(--bg);
  color: var(--white);
  padding: 6rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.ft-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ft-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.ft-brand {
  max-width: 320px;
}

.ft-logo {
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1;
  text-decoration: none;
}

.ft-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.ft-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

.ft-nav {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.ft-social {
  display: flex;
  gap: 1.5rem;
}

.ft-link {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray-lt);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s var(--ease);
}

.ft-link:hover {
  color: var(--white);
}

.ft-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  /* Divider line */
  margin-bottom: 2rem;
}

.ft-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-bottom p {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.03em;
  margin: 0;
}

@media (max-width: 900px) {
  .ft-top {
    flex-direction: column;
    text-align: left;
  }

  .ft-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .ft-brand {
    max-width: 100%;
  }
}

@media (max-width: 500px) {
  .ft-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}