.header-separator {
    width: 100%;
    height: 3px;
    background: #a67c52;
    margin: 0 0 0.5rem 0;
}

.site-menu {
    width: 100%;
    background: #7b2e2e;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 0.6rem 0;
    margin-bottom: 0; /* Сделайте отступ снизу 0 */
}

.menu-btn {
    display: inline-block;
    background: none;
    color: #fff;
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    box-shadow: none;
    padding: 0.2rem 0.8rem;
    margin: 0;
    text-align: center;
}

.menu-btn:hover {
    color: #a67c52;
    background: none;
}

