/* ── La Fortune — Footer ── */

/* Reset parent theme wrappers */
body, #page, .site, #wrapper {
  display: block !important;
  position: static !important;
}

/* Hide Astra default footer */
.site-footer,
.ast-small-footer,
.ast-footer-overlay,
.site-footer-primary-section,
.ast-footer-copyright {
  display: none !important;
}

/* Ensure footer is outside any parent grid/flex */
.lf-footer {
  position: relative !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: block !important;
  z-index: auto !important;
  grid-column: unset !important;
  grid-row: unset !important;
}

.lf-footer {
  background: #F7F4EF;
  border-top: 1px solid #E2DDD6;
  margin-top: 80px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.lf-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.lf-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A1A18;
  margin-bottom: 16px;
}

.lf-footer-tagline {
  font-size: 0.78rem;
  color: #8A8780;
  line-height: 1.8;
  max-width: 260px;
}

.lf-footer-heading {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #1A1A18;
  margin-bottom: 20px;
  font-weight: 500;
}

.lf-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lf-footer-col ul li a,
.lf-footer-col ul li span {
  font-size: 0.78rem;
  color: #8A8780;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.lf-footer-col ul li a:hover {
  color: #1A1A18;
}

.lf-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #E2DDD6;
}

.lf-footer-bottom p {
  font-size: 0.68rem;
  color: #8A8780;
  letter-spacing: 0.08em;
  margin: 0;
}

.lf-footer-payments {
  color: #8A8780;
}

@media (max-width: 900px) {
  .lf-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 48px 24px 32px;
  }
  .lf-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding: 16px 24px 24px;
  }
}

@media (max-width: 540px) {
  .lf-footer-inner {
    grid-template-columns: 1fr;
  }
}
