/* ==========================================================================
   Shuvatara — Modern Footer
   Scoped under `sh-footer` so it never collides with the legacy theme CSS.
   ========================================================================== */

.sh-footer {
  background: var(--sh-navy, #0b1420);
  padding-top: 80px;
}

.sh-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.sh-footer__logo { display: inline-flex; margin-bottom: 20px; }
.sh-footer__logo img { height: 52px; width: auto; }

.sh-footer__desc {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 24px;
  max-width: 360px;
}

.sh-footer__social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sh-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-size: 15px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.sh-footer__social a:hover {
  background: linear-gradient(135deg, var(--sh-gold-light, #f1dfb5), var(--sh-gold, #d4af6a));
  color: #241a05;
  transform: translateY(-3px);
}

.sh-footer__heading {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 22px;
}

.sh-footer__links,
.sh-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sh-footer__links a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .25s ease, padding-left .25s ease;
}

.sh-footer__links a:hover { color: var(--sh-gold, #d4af6a); padding-left: 4px; }

.sh-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
}

.sh-footer__contact i {
  color: var(--sh-gold, #d4af6a);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.sh-footer__bottom {
  padding: 22px 0;
}

.sh-footer__bottom p {
  margin: 0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

@media (max-width: 767px) {
  .sh-footer { padding-top: 56px; }
  .sh-footer__grid { grid-template-columns: 1fr; gap: 36px; text-align: left; }
}
