:root {

    /*brand colors*/
    --beige: #F2E8DC;
    --brown: #3C162A;
    --burnt_orange: #AB6147;

	--white: #FFF;
	--black: #000;


    /*fonts*/
    --body-font: acumin-pro-wide, sans-serif;
    --body-font-weight: 300;
    --body-font-size: 16px;
    --body-font-lh: 30px;

    --h1-font-weight: 400;
    --h1-font-lh: 42px;


	/*misc*/
	--transition-standard: ease-in-out .3s;
}

body, html {
	margin: 0;
    height: 100%;
    font-family: var(--body-font);
    font-weight: var(--body-font-weight);
    font-size: var(--body-font-size);
    line-height: var(--body-font-lh);
    color: var(--brown);
}

a {
    color: var(--brown);
    transition: var(--transition-standard);
}

a:hover {
    color: var(--burnt_orange);
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    flex: 1;
}

@media only screen and (max-width: 867px) {  
    .wrapper {
        flex-direction: column;
    }
}

.wrapper.formpage {
    height: auto;
}

.half {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 867px) {  
    .half {
        width: 100%;
    }
}

.half.copy {
    background: var(--beige);
    box-sizing: border-box;
}

.image .holder,
.copy .holder {
	width: 75%;
    max-height: calc(100vh - 80px);
}

.image .holder {
    margin: 60px 0 40px 0;
}

.copy .holder {
    padding: 40px 20px;
	overflow-y: scroll;
}

@media only screen and (max-width: 867px) {  
    .copy .holder {
        max-height: initial;
        padding: 40px 0;
    }
}

h1 {
    font-weight: var(--h1-font-weight);
    line-height: var(--h1-font-lh);
}

img.stnd {
    position: relative;
    width: 100%;
}

.painting-wrap .wp-caption-text {
    margin: 10px 0 0 0;
    font-size: 14px;
}

@media only screen and (max-width: 867px) {  
    .painting-wrap .wp-caption-text {
        margin: 0;
        font-size: 10px;
    }
}

.painting-wrap .image-description {
    margin: 0;
}

.wp-block-button__link.wp-element-button {
    padding: 5px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    color: var(--beige);
    background: var(--brown);
    transition: var(--transition-standard);
    cursor: pointer;
}

.wp-block-button__link.wp-element-button:hover {
    background: var(--burnt_orange);
}

.logotype {
    width: 110%;
    margin: 0 0 15% -5%;
}

.wrapper.formpage {
    background: var(--beige);
}

.projectform {
    position: relative;
    width: 80%;
    max-width: 570px;
    margin: 60px auto 0 auto;
    padding: 40px;
    background: var(--white);
}

.projectform .quform-field {
    width: 100%;
}

.quform-description {
    margin: 0 3px;
    line-height: 17px;
}

.quform-button-submit {
    width: 100%;
    background: #FFF;
}

.back-btn {
    position: absolute;
    width: 80%;
    max-width: 770px;
    left: 0;
    right: 0;
    margin: 20px auto;
    display: block;
}