.home__header {
    padding: 20px 16px;
    width: 100%;
}

.home__header-container {
    max-width: 1182px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home__logo-image {
    height: 34px;
    width: auto;
}

.home__nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.home__nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.home__nav-link {
    color: #F4E4D3;
    font-weight: 450;
    font-size: 18px;
    line-height: 100%;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home__nav-link:hover {
    color: #F6887B;
}

.home__nav-cta {
    display: inline-block;
    background-color: #325F5F;
    color: #F4E4D3;
    font-weight: 450;
    font-size: 16px;
    line-height: 100%;
    padding: 8px 20px;
    border-radius: 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home__nav-cta:hover {
    background-color: #E57373;
}

.home__burger-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.home__burger-icon {
    width: 30px;
    height: auto;
}

.mobile-only-link {
    display: none;
}

@media (max-width: 767px) {

    .home__header {
        position: relative;
    }

    .home__nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(3, 55, 55, 0.9);
        width: 100%;
        height: 100vh;
        padding: 16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 999;
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform: translateY(-100%);
        opacity: 0;
    }

    .mobile-only-link {
        display: block;
    }

    .home__nav-list--open {
        transform: translateY(0);
        opacity: 1;
        display: flex;
        justify-content: center;
    }

    .home__nav-item {
        font-weight: 450;
        font-size: 28px;
        text-align: center;
    }

    .home__nav-item:active {
        color: #E3AC98;
    }

    .home__burger-button {
        display: block;
    }
}

@media (min-width: 768px) {
    .home__nav {
        gap: 40px;
    }

    .home__header {
    padding: 20px 24px;
}

    .home__nav-cta {
        padding: 12px 30px;
        border-radius: 24px;
        font-size: 18px;
        order: 4;
        height: 47px;
    }

    .home__logo-image {
        height: 38px;
    }
}