#home {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 74px);
    margin-top: 74px;
    align-items: stretch;
}
#cta {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(16px, 2vw, 28px);
    padding: 250px clamp(20px, 4vw, 70px) 250px clamp(20px, 5vw, 70px);
    background-color: #383838;
}
.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    color: #efc899; 
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #efc899;
    border-radius: 2px;
}
#cta .title {
    font-size: clamp(2.5rem, 4.5vw, 4.5rem);
    color: #fff4e7;
    line-height: 1.1;
    font-weight: 500;
}
#cta .title em {
    font-family: 'Cormorant Garamond', Georgia, serif; 
    color: #f8d477;
    font-weight: 800;
    font-style: italic;
    font-size: 1.1em;
}
#cta .description {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: #fff4e7;
    line-height: 1.6;
    width: 90%;
}
#cta_buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
#banner {
    width: 50%;
    position: relative;
    overflow: hidden;
}
#banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(to right, #383838 0%, rgba(56, 56, 56, 0) 100%);
    pointer-events: none;
    z-index: 2;
}
#banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

@media screen and (max-width: 900px) {
    #home {
        flex-direction: column;
        min-height: auto;
        margin-top: 74px;
    }
    #cta {
        width: 100%;
        padding: 40px 20px 80px 20px;
        text-align: left;
        align-items: start;
    }
    #cta .title { font-size: 3rem; }
    #cta_buttons {
        justify-content: flex-start;
        width: 100%;
    }
    .hero-eyebrow { flex-direction: row; }
    #banner {
        width: 100%;
        height: 450px;
        position: relative;
        margin-top: 0;
    }
    #banner::after {
        width: 100%;
        height: 80px; 
        background: linear-gradient(to bottom, #383838 0%, rgba(56, 56, 56, 0) 100%);
    }
    #banner img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #cta .description {
        padding-top: 0px;
        padding-bottom: 20px;
        font-size: 1.1rem;
    }
}