/* ==========================================================
   footer.css — Colony Creative
   Pure monochrome minimal footer (BEM)
   ========================================================== */

.footer {
  position: relative;
  width: 100%;
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: clamp(60px, 10vh, 100px) 0;
  overflow: hidden;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
}

.footer__owl-wrap {
  text-align: center;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.footer__bottom {
  text-align: center;
}

.footer__owl {
  display: block;
  max-width: 144px;
  height: auto;
  margin: 0 auto 2.5rem;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: none;
}

@media (hover: none), (max-width: 768px) { .footer__link { cursor: pointer; } }
.footer__link:hover { color: var(--text-primary); }

.footer__link-divider {
  font-size: 0.625rem;
  color: var(--text-muted);
  user-select: none;
}

.footer__copyright {
  font-family: 'DM Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 600px) {
  .footer { padding: 48px 0; }
  .footer__owl { max-width: 100px; }

  .footer__owl-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .footer__content {
    align-items: center;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .footer__bottom {
    text-align: center;
    width: 100%;
  }

  .footer__copyright {
    text-align: center;
  }
}
