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

footer {
  background: var(--dark);
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.06em;
}

.footer-logo span { color: var(--mint-light); font-style: italic; }

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.3s;
}

.footer-logo-img:hover { opacity: 1; }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--mint-light); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
