/* ═══════════════════════════════════════════════════════════════════
   Phytallage — Footer CSS
   NUNCA usar hex hardcoded — solo var(--ltn-*) o var(--wp--preset--)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Estructura base ─────────────────────────────────────────────── */

.ltn-site-footer {
    width: 100%;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ── Sección principal ───────────────────────────────────────────── */

.ltn-footer-main {
    background: var(--ltn-green-primary, #506727);
    width: 100%;
    padding: var(--ltn-spacing-xl, 32px) 0;
}

.ltn-footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--ltn-gutter);
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

/* ── Columna 1: Marca ────────────────────────────────────────────── */

.ltn-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ltn-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.ltn-footer-logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.ltn-footer-logo-text {
    font-weight: 800;
    font-size: 17px;
    letter-spacing: -0.015em;
    color: #fff;
    white-space: nowrap;
    line-height: 1;
}

.ltn-footer-logo-accent {
    color: var(--ltn-terra, #D57B4E);
}

.ltn-footer-copyright {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ── Columnas de enlaces ─────────────────────────────────────────── */

.ltn-footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ltn-footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

.ltn-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ltn-footer-links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--ltn-transition, all 0.2s ease);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ltn-footer-links a:hover {
    color: var(--ltn-green-light, #BACD70);
}

/* Social con iconos */
.ltn-footer-links--social a svg {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ── Barra inferior ──────────────────────────────────────────────── */

.ltn-footer-bottom {
    background: var(--ltn-green-dark, #3e5120);
    width: 100%;
    padding: 14px 0;
}

.ltn-footer-bottom-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--ltn-gutter);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ltn-footer-bottom-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    text-align: center;
}

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

@media (max-width: 1100px) {
    .ltn-footer-inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .ltn-footer-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

@media (max-width: 700px) {
    .ltn-footer-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .ltn-footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .ltn-footer-inner {
        grid-template-columns: 1fr;
        /* padding horizontal lo gestiona --ltn-gutter vía @media 600px en header.css */
    }

    .ltn-footer-main {
        padding: var(--ltn-spacing-lg, 24px) 0;
    }
}

/* ── Copyright dos líneas (desktop) / una línea (tablet) ────────── */

.ltn-footer-copyright-break {
    display: block;
}

.ltn-footer-copyright-rights {
    display: block;
}

.ltn-footer-copyright-sep {
    display: none;
}

@media (max-width: 1100px) {
    .ltn-footer-copyright-break {
        display: none;
    }

    .ltn-footer-copyright-rights {
        display: inline;
    }

    .ltn-footer-copyright-sep {
        display: inline;
    }
}

/* ── Iconos en columnas de enlaces ──────────────────────────────── */

.ltn-footer-links a svg {
    flex-shrink: 0;
    color: currentColor;
    opacity: 0.9;
    transition: opacity 0.15s ease;
}

.ltn-footer-links a:hover svg {
    opacity: 1;
}
