/* =============================================================================
   CUSTOM FOOTER
   Two-part layout: logo (left ~35%) | columns (right ~65%)
============================================================================= */

footer.et-l.et-l--footer{
    display: none;
}

.et_pb_section.et_pb_section_11.et_pb_with_background.et_section_regular{
    display: none;
}

.site-footer {
    background-color: var(--header-color-dark, #0d1317);
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

/* ---- Main section ---- */
.site-footer__main {
    padding: 48px 0 0;
}

.site-footer__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Two-part layout: logo left, columns right */
.site-footer__main > .site-footer__container {
    display: flex;
    align-items: flex-start;
}

/* ---- Logo area (left ~35%) ---- */
.site-footer__logo {
    flex: 0 1 50%;
    padding-top: 8px;
}
.site-footer__logo img {
    height: 56px;
    width: auto;
    display: block;
}

/* ---- Columns area (right ~65%) — 3-column grid ---- */
.site-footer__columns {
    flex: 0 1 50%;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px;
    padding-top: 8px;
}

/* ---- Column headings — Inter Semi Bold, 14px, #868686, uppercase ---- */
.site-footer__heading {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #868686;
    margin: 0 0 10px;
    line-height: 24px;
}
.site-footer__heading--mt {
    margin-top: 32px;
}

/* ---- Link lists — Inter Tight Medium, 16px, white ---- */
.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer__list li {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 6px;
}
.site-footer__list a {
    color: #fff;
    text-decoration: none;
    transition: color .2s ease;
}
.site-footer__list a:hover {
    color: var(--header-color-accent, #ebd14a);
}

/* ---- Bottom bar ---- */
.site-footer__bottom {
    margin-top: 48px;
    padding: 24px 0;
}
.site-footer__bottom > .site-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-footer__bottom-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.site-footer__bottom-left span,
.site-footer__bottom-left a,
.site-footer__bottom-right span,
.site-footer__bottom-right a {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #868686;
    text-decoration: none;
    transition: color .2s ease;
}
.site-footer__bottom-left a:hover,
.site-footer__bottom-right a:hover {
    color: #fff;
}

/* ---- Footer responsive ---- */
@media (max-width: 980px) {
    .site-footer__container { padding: 0 24px; }

    .site-footer__main > .site-footer__container {
        flex-direction: column;
        gap: 40px;
    }
    .site-footer__logo { flex: none; }
    .site-footer__columns {
        flex: none;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .site-footer__columns {
        grid-template-columns: 1fr;
    }
    .site-footer__bottom > .site-footer__container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
