@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

.wlp-section {
    position: relative;
    padding: 120px 0;
    background-color: #0b0c10;
    background-image: var(--wlp-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #f8f4ee;
}

.wlp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 10, 0.78) 0%, rgba(6, 7, 10, 0.6) 45%, rgba(6, 7, 10, 0.78) 100%);
    z-index: 1;
}

.wlp-container {
    position: relative;
    z-index: 2;
}

.wlp-grid {
    display: grid;
    grid-template-columns: 1.1fr auto 1fr;
    align-items: center;
    gap: 56px;
}

/* Mission column */
.wlp-mission {
    max-width: 520px;
}

.wlp-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #d8b95f;
    margin-bottom: 14px;
}

.wlp-heading {
    font-family: var(--heading-font, 'Inter', sans-serif);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    color: #f8f4ee;
    margin-bottom: 18px;
    border: none;
    padding: 0;
}

.wlp-heading::before,
.wlp-heading::after {
    display: none;
    content: none;
}

.wlp-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: rgba(233, 236, 244, 0.78);
    margin: 0;
}

/* Divider column */
.wlp-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    gap: 14px;
    min-height: 100%;
}

.wlp-divider-line {
    flex: 1 1 auto;
    width: 1px;
    min-height: 40px;
    background: linear-gradient(180deg, rgba(216, 185, 95, 0), rgba(216, 185, 95, 0.55));
}

.wlp-divider .wlp-divider-line + .wlp-divider-cross {
    margin: 0;
}

.wlp-divider-line:last-child {
    background: linear-gradient(180deg, rgba(216, 185, 95, 0.55), rgba(216, 185, 95, 0));
}

.wlp-divider-cross {
    width: 26px;
    height: 26px;
    color: #d8b95f;
    flex: none;
}

/* Motto column */
.wlp-motto-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}

.wlp-motto {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wlp-motto-row {
    display: flex;
    align-items: baseline;
    gap: 0.35em;
    line-height: 1.1;
}

.wlp-one {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 2vw, 2rem);
    color: rgba(248, 244, 238, 0.6);
}

.wlp-word {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    font-size: clamp(2.6rem, 3.6vw, 3.6rem);
    color: var(--mc, #d8b95f);
    line-height: 1;
}

.wlp-signature {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 0.95rem;
    color: rgba(233, 236, 244, 0.7);
    margin: 0;
}

@media (max-width: 991px) {
    .wlp-section {
        padding: 90px 0;
    }

    .wlp-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .wlp-mission {
        max-width: none;
        margin: 0 auto;
    }

    .wlp-divider {
        flex-direction: row;
        width: 100%;
        min-height: 0;
    }

    .wlp-divider-line {
        min-height: 0;
        height: 1px;
        width: auto;
        background: linear-gradient(90deg, rgba(216, 185, 95, 0), rgba(216, 185, 95, 0.55));
    }

    .wlp-divider-line:last-child {
        background: linear-gradient(90deg, rgba(216, 185, 95, 0.55), rgba(216, 185, 95, 0));
    }

    .wlp-motto-col {
        align-items: center;
    }

    .wlp-motto-row {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .wlp-section {
        padding: 64px 0;
    }

    .wlp-heading {
        font-size: 2.2rem;
    }

    .wlp-one {
        font-size: 1.4rem;
    }

    .wlp-word {
        font-size: 2.1rem;
    }
}
