/* ============================================================
   GLOBAL SITE FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(245, 166, 35, 0.04) 0%, transparent 60%),
    #050d1c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-mute);
  margin-top: 0;
  isolation: isolate;
}
.site-footer__divider {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(640px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 166, 35, 0.4) 50%, transparent 100%);
  pointer-events: none;
}

.site-footer__top {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 36px 52px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
}

/* ============================================================
   BRAND COLUMN
   ============================================================ */
.site-footer__brand .wordmark {
  margin-bottom: 18px;
}
.site-footer__tagline {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 320px;
  margin-bottom: 22px;
}
.site-footer__tagline strong {
  color: var(--ink);
  font-weight: 700;
}

.site-footer__social {
  list-style: none;
  display: flex;
  gap: 8px;
}
.site-footer__social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink-soft);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.site-footer__social a:hover {
  background: rgba(245, 166, 35, 0.16);
  border-color: rgba(245, 166, 35, 0.40);
  color: var(--accent);
  transform: translateY(-2px);
}
.site-footer__social a svg { width: 15px; height: 15px; }

/* ============================================================
   LINK COLUMNS
   ============================================================ */
.site-footer__col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__links a {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease), padding-left 0.25s var(--ease);
  display: inline-block;
}
.site-footer__links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

/* ============================================================
   CONTACT COLUMN
   ============================================================ */
.site-footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.site-footer__contact li svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.site-footer__contact li strong {
  display: block;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.site-footer__contact li span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
}
.site-footer__contact a {
  color: inherit;
  transition: color 0.25s var(--ease);
}
.site-footer__contact a:hover { color: var(--accent); }

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}
.site-footer__bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer__copy {
  font-size: 12.5px;
  color: var(--ink-mute);
}
.site-footer__copy strong { color: var(--ink); font-weight: 700; }
.site-footer__legal {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-footer__legal a {
  font-size: 12.5px;
  color: var(--ink-mute);
  transition: color 0.25s var(--ease);
}
.site-footer__legal a:hover { color: var(--accent); }
.site-footer__legal li + li::before {
  content: "·";
  margin-right: 22px;
  color: var(--ink-faint);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 60px 28px 44px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 36px;
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px;
    gap: 14px;
  }
  .site-footer__legal { gap: 14px; flex-wrap: wrap; }
  .site-footer__legal li + li::before { margin-right: 14px; }
}
