.header-menu.top {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 24px;
}

.header.fixed .header-menu.top {
    display: flex;
    gap: 32px;
}

.header-menu.top li a {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: rgba(60, 36, 21, 1);
    transition: color .3s ease-in-out;
}

.header-menu.top li a:hover {
    color: rgba(158, 107, 75, 1);
}

.header-menu li a {
    text-decoration: none;
}

.header-menu.bottom {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
} 

.header-menu.bottom a {
    font-family: "Noto Serif Display", serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    color: rgba(245, 237, 224, 1);
    opacity: .6;
    transition: color .3s ease-in-out, opacity .3s ease-in-out;
}

.header-menu.bottom a:hover {
    color: #fff;
    opacity: 1;
}

@media (max-width: 800px) {
    .header-menu.top.mobile li a {
        font-family: 'Noto Serif Display', sans-serif;
        font-weight: 400;
        font-size: 32px;
        line-height: 36px;
    }
}

@media (max-width: 576px) {
    .header-menu.top.mobile li a {
        font-family: 'Noto Serif Display', sans-serif;
        font-weight: 400;
        font-size: 24px;
        line-height: 32px;
    }

    .header-menu.bottom {
        gap: 16px;
    }

    .header-menu.bottom a {
        font-size: 24px;
        line-height: 32px;
    }
}