/* =========================================================
   Platinum Park — footer
   ========================================================= */
.site-footer {
  background: var(--Black);
  color: var(--White);
  margin-top: var(--main-margin);
}

.site-footer .footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
  padding: clamp(40px, 5vw, 72px) 0;
}

/* Brand / logo */
.site-footer .footer-brand img {
  max-width: 210px;
  width: 100%;
  height: auto;
}
.site-footer .footer-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--White);
  text-decoration: none;
}

/* Column heading with a trailing accent rule */
.site-footer .footer-col__title {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 700;
  color: var(--White);
  margin: 0 0 28px;
}
.site-footer .footer-col__title::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(239, 186, 64, 0.7), rgba(239, 186, 64, 0));
}

/* Links */
.site-footer .footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.site-footer .footer-list li,
.site-footer .footer-list a {
  font-size: 15px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.site-footer .footer-list a:hover { color: var(--Accent); }

/* Social icons — gold glyph in a circular button */
.site-footer .footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer .footer-social a {
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  /* Frost */
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.45), /* Light −45° */
    inset -1px -2px 6px rgba(0, 0, 0, 0.35),      /* Depth */
    0 6px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Refraction sheen */
.site-footer .footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.06) 35%, transparent 60%);
}
.site-footer .footer-social a:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 1px 1px 2px rgba(255, 255, 255, 0.5),
    inset -1px -2px 6px rgba(0, 0, 0, 0.4),
    0 10px 22px rgba(0, 0, 0, 0.45);
}
.site-footer .footer-social svg {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  z-index: 1;
}

/* Bottom bar — full-bleed divider */
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
  flex-wrap: wrap;
}
.site-footer .footer-policy,
.site-footer .footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.site-footer .footer-policy:hover { color: var(--Accent); }

@media (max-width: 1024px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
  .site-footer .footer-bottom__inner { flex-direction: column; align-items: flex-start; }
}
