
.footer{
    background-color: #000;
    position: relative;
}

.footer__inner{
    display: flex;
	flex-direction: column;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.footer__newsletter{
    padding: 2rem 0;
    font-family: var(--brand-font);
    font-size: var(--font-size--small);
    font-weight: bold;
    width: 100%;
    background: #bd9165;
}

.footer__newsletter__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    align-items: center;
}

.footer__newsletter__logo {
    flex-basis: 100px;
}

.footer__newsletter__heading {
    flex: 1;
    padding: 0 30px;
}

.footer__newsletter__heading h3 {
	text-transform:uppercase;
	font-size: clamp(2rem,30px,3.5rem);
	margin:0;
}

.footer__newsletter__message{
    display: none;
    margin: 0 auto;
    max-width: 80rem;
    text-align: center;
    text-transform: none;
    font-style: italic;
    font-weight: normal;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer__newsletter__form {
    z-index: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-basis: 350px;
}

.footer__newsletter__form #newsletter-form {
    text-align: center;
}


.footer__lower {
	margin: 0 auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-top: 30px;
}

.footer__lower * {
    color: #fff;
}
.footer__lower__right {
	display: flex;
	flex-direction: column;
    text-align: right;
}

.footer__navigation {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.footer__navigation__group{
    font-size: var(--font-size--small);
    flex: 1;
}

.footer__navigation__group ul{
    margin: 0;
    list-style-type: none;
    padding-left: 0;
}

.footer__navigation__group .menu-item + .menu-item{
    margin-top: 1rem;
}

.footer__navigation__group .menu-item a{
    text-decoration: none;
}

.footer__copyright{
    font-size: var(--font-size--small);
    text-align: center;
}

.footer__newsletter__form input.newsform-button {
    background: #000;
    border: 0;
    flex-basis: 100px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    -webkit-appearance: none;

}

.footer__newsletter__form .widget {
    width: 100%;
    flex-wrap: wrap;
    display: flex;
}

.footer__newsletter__form form#newsletter-form {
    width: 100%;
}

.footer__newsletter__form div #news-signup {
    display: flex;
    flex-wrap: wrap;
}

.footer__newsletter__form div label#newsletterMessage {
    flex: 1;
    margin: 0;
}

.footer__newsletter__form div label#newsletterMessage input {
    width: 100%;
    padding: 12px;
    border-radius: 0;
    border: 0;
    margin: 0 !important;
}

.footer__lower-left {
    margin-right: 50px;
    flex-basis: 260px;
}
/* 
.footer_columns {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    align-items: center;
    justify-self: center;
} */

a.footer__logo {
    display: block;
}

.footer__i18n img.header__i18n__icon {
    width: 100%;
}

/* Klaviyo hack */
.klaviyo-form input,
.klaviyo-form  div.needsclick button.needsclick {
    padding: 12px  !important;
    height: auto !important;
    font-family: inherit !important;
    font-size: 14px !important;
    border-radius: 0 !important;
    border: 0 !important;
    color: #000 !important;
}

div.needsclick {
    padding: 0 !important;
    justify-content: center !important;
    min-height: inherit !important;
}

.klaviyo-form div.needsclick button.needsclick {
    background: #000 !important;
    width: 100px;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

.klaviyo-form {
    width: 100%;
}
/* Klaviyo hack */

.footer__newsletter__form input::placeholder {font-size: inherit !important;}
.footer__newsletter__form input::-webkit-input-placeholder {font-size: inherit !important;}
.footer__newsletter__form input:-moz-placeholder {font-size: inherit !important;}
.footer__newsletter__form input::-moz-placeholder {font-size: inherit !important;}
.footer__newsletter__form input:-ms-input-placeholder {font-size: inherit !important;}




@media screen and (max-width: 980px) {
    .footer__inner .widget{
        margin: 0;
    }
	.footer__logo {
		max-width:250px;
		margin:auto;
	}
	.footer__lower-left {margin-right:0;}
	.footer__lower {
		display:block;
		text-align:center;
	}
    .footer__navigation{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
        row-gap: 1rem;
        padding: 30px 0;
    }

    .footer__navigation .menu{
        position: relative;
        background-color: transparent;
    }

    .footer__i18n, .footer__social, .footer__copyright{
        display: flex;
        justify-content: center;
    }

    .footer__i18n__icon{
        margin-right: 0.5rem;
    }    

    .footer__copyright{
        margin-left: 0;
    }

	.footer__newsletter__form {
	    flex-basis: 100%;
	}

	.footer__newsletter__container {display:block;text-align: center;}

	.footer__newsletter__logo {max-width:120px;margin:auto;}

	.footer__newsletter__heading {padding:20px 0;}

	#news-signup {max-width:450px;margin:auto;}

}