/* ═══════════════════════════════════════════════════════
   Lily & Emma — Premium Footer Styles
   le-footer.css  |  loaded by mayosis-child functions.php
   ═══════════════════════════════════════════════════════ */

/* Hide any Elementor / Mayosis footer builder output so only our footer shows */
.elementor-location-footer,
#le-footer-builder,
.footer-builder,
[class*="footer-builder"],
.mayosis-footer,
.site-footer > *:not(.le-footer) {
  display: none !important;
}

/* Show our footer */
.le-footer {
  display: block !important;
  background: #2f241f;
  color: #b8a99a;
  padding: 60px 0 44px;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.le-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 64px;
  align-items: start;
}

/* Brand column */
.le-footer__logo {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.le-footer__logo:hover {
  color: #d4a892;
}

.le-footer__tagline {
  font-size: 14px;
  line-height: 1.75;
  color: #b8a99a;
  margin: 0 0 32px;
  max-width: 280px;
}

.le-footer__copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a4a40;
  margin: 0;
}

/* Column headings */
.le-footer__heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
  padding: 0;
}

/* Link lists */
.le-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.le-footer__links li a {
  font-size: 14px;
  color: #b8a99a;
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.4;
}

.le-footer__links li a:hover {
  color: #ffffff;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
  .le-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 28px;
  }
  .le-footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .le-footer {
    padding: 38px 0 28px !important;
    background: #2f241f !important;
  }

  .le-footer__inner {
    grid-template-columns: 1fr !important;
    padding: 0 18px !important;
    gap: 18px !important;
  }

  .le-footer__col {
    padding: 20px 18px !important;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.025);
  }

  .le-footer__col--brand {
    grid-column: auto;
    text-align: center;
    padding: 0 8px 18px !important;
    border: 0;
    background: transparent;
  }

  .le-footer__logo {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .le-footer__tagline {
    max-width: 300px;
    margin: 0 auto 18px !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .le-footer__copy {
    font-size: 10px !important;
    line-height: 1.5 !important;
  }

  .le-footer__heading {
    margin-bottom: 14px !important;
  }

  .le-footer__links {
    gap: 8px !important;
  }

  .le-footer__links li a {
    display: block;
    padding: 8px 0;
    font-size: 14px !important;
  }
}
