/* --- FOOTER DARK --- */
.dark-footer {
  background: #010f15;
  color: #f3f1e9;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(201,169,125,0.3);
  position: relative;
}

.dark-footer .footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  text-align: center;
}

.dark-footer .footer-logo img {
  width: clamp(100px, 14vw, 180px); /* +10px min, +2vw mid, +20px max */
  height: auto;
  filter: drop-shadow(0 0.5rem 1rem rgba(201,169,125,0.2));
  transition: transform 0.4s ease;
}
.dark-footer .footer-logo img:hover {
  transform: scale(1.05);
}

.dark-footer .footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dark-footer .footer-nav ul li {
  margin: 0.6rem 0;
}
.dark-footer .footer-nav ul li a {
  text-decoration: none;
  color: #f3f1e9;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}
.dark-footer .footer-nav ul li a:hover {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.dark-footer .footer-contact p {
  margin: 0.4rem 0;
}

.dark-footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.dark-footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dark-footer .social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(201,169,125,0.4);
}

.dark-footer .footer-divider {
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 2rem auto;
  border-radius: 2px;
}

.dark-footer .footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #f3f1e9;
}

/* Social */
.social-links {
  margin:2rem 0;
  display:flex;
  gap:1.2rem;
  justify-content:center;
}
.social-links a {
  color:var(--accent);
  font-size:1.4rem;
  transition:color .3s ease;
}
.social-links a:hover { color:#000; }