.lili-hero-section {
    width: 100%;
    height: calc(100vh - 50px);
    
    background-image: var(--bg-desktop);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 5rem;
    box-sizing: border-box;
}

.lili-hero-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3.75rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.lili-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.lili-hero-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: #000000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lili-hero-btn {
    display: inline-block;
    padding: 1rem 1.375rem;
    border: 1px solid #000000;
    background-color: transparent;
    color: #000000;
    font-size: 0.6rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
}

.lili-hero-btn:hover {
    background-color: #000000;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .lili-hero-section {
        background-image: var(--bg-mobile);
        height: 100vh; 
        padding-bottom: 3.5rem;
    }

    .lili-hero-container {
        padding: 0 1.5625rem;
    }

    .lili-hero-btn {
        padding: 0.9rem 2.5rem;
        font-size: 0.75rem;
        width: 100%; 
        max-width: 280px;
        box-sizing: border-box;
    }
}