/* ═══════════════════════════════════════
   FOOTER.CSS
═══════════════════════════════════════ */

footer {
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.10);
  padding: 1rem 5vw;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo img {
  height: 16rem;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.footer-logo:hover img { opacity: 0.85; }

.footer-social {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.footer-social a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.58);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: #0b1208; }

.footer-right {
  text-align: right;
}
.footer-email {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(10,10,10,0.58);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.footer-email:hover { color: #0b1208; }

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(10,10,10,0.30);
}

.footer-license {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.38);
  margin-top: 0.35rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-right { text-align: center; }
  .footer-logo  { text-align: center; }
}
