Hey there!
I really appreciate the response! I was actually able to figure out a work-around very shortly after I posted this.
I turned off the “shrink logo” setting, added a class of .logo to the image, then added the following code to my additional CSS section.
.logo {
transform: scale(1);
transform-origin: top;
transition: 1s ease;
}
.she-header .logo {
transform: scale(.75);
}
Thanks so much for your time!