/* ============================================================
   Arabian Mist UAE — shared site footer (used on EVERY page)
   Simple footer: brand logo · short nav (+ Instagram) · legal line.
   Self-contained (hardcoded colours + own layout/font) so it renders
   identically regardless of the page's main stylesheet.
   ============================================================ */
.site-footer {
  background: #100f0e;            /* charcoal */
  color: #f5ead6;                 /* warm cream */
  font-family: 'Jost', 'Inter', system-ui, -apple-system, sans-serif;
  border-top: 1px solid rgba(245, 234, 214, .10);
}
.site-footer__inner {
  max-width: 88rem;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.25rem, 6vw, 2.5rem) 4rem;
}
.site-footer a { color: inherit; text-decoration: none; }

.site-footer__top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  border-bottom: 1px solid rgba(245, 234, 214, .16);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}
.site-footer__logo img {
  height: clamp(4rem, 6.5vw, 5rem);
  width: auto; display: block;
  filter: invert(1);              /* black line-art logo -> white on dark */
}
.site-footer__nav {
  display: flex; align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.site-footer__nav a { color: rgba(245, 234, 214, .58); transition: color .18s; }
.site-footer__nav a:hover { color: #f5ead6; }
.site-footer__ig { display: inline-flex; align-items: center; }

.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
  font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(245, 234, 214, .36);
}
.site-footer__bottom span { margin: 0; }

@media (max-width: 600px) {
  .site-footer__top { flex-direction: column; align-items: flex-start; gap: 24px; }
}
