/* ════════════════════════════════════════════════
   10 — FOOTER
   Dark, gold logo, 3 pillar columns, social row, Najdi crown
   ════════════════════════════════════════════════ */

.site-footer {
  background: var(--near-black);
  color: var(--cream);
  position: relative;
  padding: 0;
}

/* Top Najdi crown band */
.site-footer__crown {
  width: 100%;
  padding: 24px 0;
  background: var(--maroon-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(184, 168, 124, 0.18);
}
.site-footer__crown svg {
  width: 100%;
  max-width: 1100px;
  height: 28px;
  color: var(--olive-gold);
  opacity: 0.65;
}

/* Logo row — gold Arabic calligraphy centered */
.site-footer__logo-row {
  text-align: center;
  padding: 56px 32px 32px;
}
.site-footer__logo {
  max-height: 72px;
  width: auto;
  margin: 0 auto;
  filter: brightness(1.1);
}

/* 3 pillar columns */
.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 32px 32px 56px;
  gap: 48px;
  text-align: start;
}

.site-footer__column-title {
  font-family: var(--font-arabic);
  font-weight: 500;
  font-size: 18px;
  color: var(--olive-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.site-footer__column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 30px;
  height: 1px;
  background: var(--olive-gold);
  opacity: 0.5;
}

.site-footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__column a {
  font-family: var(--font-arabic);
  font-size: 14px;
  color: var(--text-cream);
  font-weight: 300;
  transition: color 0.3s ease, padding 0.3s ease;
}
.site-footer__column a:hover {
  color: var(--olive-gold);
  padding-inline-start: 6px;
}

/* Social row — italic-labeled gold */
.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 32px 24px;
  border-top: 1px solid rgba(184, 168, 124, 0.12);
}
.site-footer__social a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 168, 124, 0.3);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s ease;
}
.site-footer__social a:hover {
  color: var(--maroon-deep);
  background: var(--olive-gold);
  border-color: var(--olive-gold);
  transform: translateY(-2px);
}
.site-footer__social svg { width: 16px; height: 16px; }

/* Bottom strip */
.site-footer__bottom {
  text-align: center;
  padding: 24px 32px;
  border-top: 1px solid rgba(184, 168, 124, 0.08);
}
.site-footer__copyright {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--text-cream-soft);
  letter-spacing: 0.04em;
}
.site-footer__copyright strong {
  font-style: normal;
  font-family: var(--font-arabic);
  color: var(--olive-gold);
  font-weight: 400;
}

@media (max-width: 768px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 24px 40px;
    text-align: center;
  }
  .site-footer__column-title::after { inset-inline-start: 50%; transform: translateX(50%); }
  .site-footer__social { gap: 16px; }
}
