/* ── Site Footer ─────────────────────────────────────────── */

/* body prefix beats GP inline .site-info/.footer-widgets{background-color:var(--base-3)} */
body .site-footer {
  background: linear-gradient(165deg, #091829 0%, #0f2035 50%, #091627 100%);
  color: rgba(255,255,255,0.72);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-24);
}

/* arrival accent — mirrors the header's departing fade, reversed */
body .site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(200,82,26,0) 0%, var(--color-accent) 40%, var(--color-accent) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── Brand symbol watermark ──────────────────────────────── */

.site-footer__mark {
  position: absolute;
  bottom: 30px;
  right: -2%;
  width: min(35%, 380px);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  filter: brightness(0) invert(1);
}

/* ── Valle del Cauca ridge — the horizon you land toward ──── */

.site-footer__ridge {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  user-select: none;
}

/* ── Footer body ─────────────────────────────────────────── */

.site-footer__body {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ── Brand column ────────────────────────────────────────── */

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-bottom: var(--space-5);
  transition: opacity 0.2s ease;
}

.site-footer__logo:hover,
.site-footer__logo:focus,
.site-footer__logo:active { text-decoration: none; opacity: 0.8; color: inherit; }

.site-footer__logo-img {
  display: block;
  height: 28px;
  width: auto;
}

.site-footer__tagline {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-3);
  max-width: none;
}

.site-footer__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  line-height: 1.75;
  max-width: 30ch;
  margin-bottom: 0;
}

/* ── Nav columns ─────────────────────────────────────────── */

.site-footer__col { position: relative; z-index: 1; }

.site-footer__col-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer .site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer .site-footer__col ul li { margin: 0; padding: 0; }

.site-footer .site-footer__col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.site-footer .site-footer__col ul a:hover {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}

/* ── Social links ────────────────────────────────────────── */

.site-footer__social { margin-bottom: var(--space-6); }

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

/* ── Footer CTA ──────────────────────────────────────────── */

.btn--cta-footer {
  background-color: transparent;
  border: 1.5px solid rgba(200,82,26,0.5);
  color: rgba(232,120,74,0.9);
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
  margin-top: var(--space-2);
}

.btn--cta-footer:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  box-shadow: none;
  transform: none;
}

/* ── Bottom bar ──────────────────────────────────────────── */

.site-footer__bottom { position: relative; z-index: 1; }

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
  gap: var(--space-4);
}

.site-footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.site-footer__coords {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .site-footer__body {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
  }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__desc { max-width: none; }
}

@media (max-width: 640px) {
  .site-footer__body {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  .site-footer__mark { opacity: 0.05; width: 55%; }
}
