/* ── FOOTER ──────────────────────────────────────────────── */

.site-footer {
  background: #1a1713;
  color: rgba(255,255,255,0.75);
  margin-top: 0;
}

/* TOP BAND */
.footer-top {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 52px 0 44px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* BRAND COLUMN */
.footer-brand .logo-footer {
  width: 160px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  opacity: 0.9;
}

.footer-brand-tagline {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer-contact-row {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-row a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-row a:hover { color: #c9a96e; }

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* LINK COLUMNS */
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.18s, padding-left 0.18s;
  display: inline-block;
}

.footer-link-list a:hover {
  color: #c9a96e;
  padding-left: 4px;
}

/* BOTTOM BAND */
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom-left {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-right {
  display: flex;
  gap: 6px;
}

.footer-social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.18s, border-color 0.18s;
  color: rgba(255,255,255,0.5);
}

.footer-social:hover {
  background: rgba(201,169,110,0.15);
  border-color: rgba(201,169,110,0.3);
  color: #c9a96e;
}

/* DIVIDER LINE */
.footer-bottom-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-brand-tagline { max-width: 100%; }
}

@media (max-width: 580px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
