To make the logo bigger on Squarespace, you can use this code to the Custom CSS box.
div.header-title a, div.header-title img {
max-height: 100px !important;
}
To make the logo bigger on mobile only, use this CSS code
@media screen and (max-width:767px) {
div.header-title a, div.header-title img {
max-height: 100px !important;
}}