/* ===============================
   FOOTER — SAFE VERSION (HOVER FIX)
================================ */

.site-footer-inner {
  max-width: 1100px;
  margin: 120px auto 80px;

  background: var(--bg-soft);
  border-radius: 28px;
  padding: 48px 40px;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;

  box-shadow: var(--shadow-soft);
}

/* BRAND */
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 6px;
}

.footer-sub {
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* CONTACTS */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contacts a {
  padding: 12px 18px;
  background: #f3f2ee;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;

  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.footer-contacts a:hover {
  background: #ebe8e2;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* SOCIALS */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-socials a {
  padding: 10px 14px;
  border-radius: 14px;

  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;

  transition:
    color .25s ease,
    background .25s ease,
    transform .25s ease;
}

.footer-socials a:hover {
  background: #f0ede7;
  color: #000;
  transform: translateY(-1px);
}

/* TABLET */
@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contacts,
  .footer-socials {
    align-items: center;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .site-footer-inner {
    margin: 80px 16px 60px;
    padding: 32px 20px;
    border-radius: 22px;
  }
}
