/* //////////////////////////////////// ALLGEMEIN //////////////////////////////////// */
html {
	box-sizing: border-box;
	background-color: #EADBC2;
	scroll-behavior: smooth;
}
*, *:before, *:after {
	box-sizing: inherit;
}

html,
body {
	overflow-x: hidden;
}

body{
	font-family: "minion-3-display", serif;
	font-weight: 400;
	font-style: normal;
	color: #353130;
	margin: 0px;
	line-height: 1.5;
	font-size: 22px;
	scroll-behavior: smooth;
}
h1 {
	font-family: "meow-script", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 75px;
	margin: 0 auto 20px;	
	line-height: 1.1;
	color:#A18C6F;
}
h2 {
	font-family: "meow-script", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 63px;
	margin: 0 auto 20px;	
	line-height: 1.1;
	color:#A18C6F;
}
@media screen and (max-width: 550px) {
	h1 {
		font-size: 55px;
	}
	h2 {
		font-size: 43px;
	}
}
@media screen and (max-width: 450px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 30px;
	}
}
h3, h4, h5, h6 {
	font-family: "minion-3-display", serif;
	font-weight: 600;
	font-style: normal;
	font-size: 25px;
	margin: 0 auto 15px;	
	line-height: 1.1;
	color:#353130;
}
div p{
	margin: 0px 0px 15px 0px;
}
div p:last-child, p:last-child{
	margin: 0 auto;
}
img, svg, video{
	max-width: 100%;
	height:auto;
}
a{
	color: #AF9241;
	text-decoration: none;
}
a:active, a:hover {
	color: #39501E;
}
ul{
	padding-left: 20px;
	margin: 0 auto 15px;
}
.no_scroll{
	height: 100vh;
	overflow: hidden;
}
.textcenter{
	text-align: center;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.w1280 {
    max-width: 1280px;
    padding-left: 20px;
    padding-right: 20px;
}

.w900 {
    max-width: 900px;
}

.margin_oben {
    margin-top: 80px;
}

.margin_unten {
    margin-bottom: 80px;
}


/* //////////////////////////////////// HEADER //////////////////////////////////// */

.site_header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 9999;
}

.site_header__hero_logo {
	position: absolute;
	top: 35vh;
	left: 50%;
	width: 320px;
	max-width: calc(100vw - 60px);
	transform: translate(-50%, -50%);
	z-index: 20;
	pointer-events: none;
}

body.home .site_header__hero_logo,
body.front-page .site_header__hero_logo {
	top: 50vh;
}

.site_header__hero_logo img {
	width: 100%;
	height: auto;
	display: block;
}
.site_header__hero_logo {
	pointer-events: auto;
}

.site_header__hero_logo a {
	display: block;
}

.site_header__hero_logo img {
	width: 100%;
	height: auto;
	display: block;
}

.site_header__menu_button {
	position: absolute;
	top: 40px;
	left: 40px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	z-index: 10030;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.site_header__menu_button:hover {
	transform: scale(1.06);
	opacity: 0.75;
}

.site_header__menu_button img {
	width: 40px;
	height: 40px;
	display: block;
}

.site_header__menu_button--close {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site_menu.is_open .site_header__menu_button--close {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.menu_open .js_menu_open {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site_header__buttons {
	position: absolute;
	top: 40px;
	right: 40px;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	width: 220px;
	z-index: 10040;
}

.site_header__button {
	width: 100%;
}

.site_header__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 12px 25px 10px;
	border: 1px solid #EADBC2;
	overflow: hidden;
	font-family: "minion-3-display", serif;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
	z-index: 1;
}

.site_header__button:before {
	content: "";
	position: absolute;
	top: 0;
	left: -130%;
	width: 130%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255,255,255,0.05) 34%,
		rgba(255,255,255,0.35) 48%,
		rgba(255,255,255,0.55) 50%,
		rgba(255,255,255,0.35) 52%,
		rgba(255,255,255,0.05) 66%,
		transparent 100%
	);
	transition: left 0.65s ease;
	z-index: -1;
}

.site_header__button:hover {
	transform: translateY(-2px);
}

.site_header__button:hover:before {
	left: 100%;
}

.site_header__button--filled {
	background-color: #EADBC2;
	color: #353130;
}

.site_header__button--filled:hover {
	color: #353130;
	border-color: #EADBC2;
}

.site_header__button--outline {
	background-color: transparent;
	color: #EADBC2;
}

.site_header__button--outline:hover {
	color: #EADBC2;
	border-color: #EADBC2;
}

.site_menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	transform: translateY(-100%);
	transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
	z-index: 10020;
	background-color: #353130;
}

.site_menu.is_open {
	transform: translateY(0);
}

.site_menu__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.site_menu__bg img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.site_menu__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(53, 49, 48, 0.7);
	z-index: 2;
	pointer-events: none;
}

.site_menu__content {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 40px 20px;
	z-index: 3;
	overflow-y: auto;
}

.site_menu__logo {
	width: 320px;
	max-width: calc(100vw - 80px);
	margin: 0 auto 80px;
}

.site_menu__logo img {
	width: 100%;
	height: auto;
	display: block;
}

.site_menu__logo a {
	display: block;
}

.site_menu__logo img {
	width: 100%;
	height: auto;
	display: block;
}

.site_menu__nav {
	width: 100%;
}

.site_menu__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site_menu__list li {
	margin: 0;
	padding: 0;
}

.site_menu__list a {
	position: relative;
	display: inline-block;
	font-family: "minion-3-display", serif;
	font-size: 33px;
	font-weight: 400;
	line-height: 1.05;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #EADBC2;
	transition: color 0.3s ease;
}

.site_menu__list a:hover {
	color: #8F8679;
}

.site_menu__list .current-menu-item > a,
.site_menu__list .current_page_item > a,
.site_menu__list .current-menu-ancestor > a {
	text-decoration: underline;
	text-underline-offset: 8px;
	text-decoration-thickness: 1px;
}

.site_menu__languages {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 55px;
}

.site_menu__languages a {
	font-family: "minion-3-display", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #EADBC2;
	transition: color 0.3s ease;
}

.site_menu__languages a:hover,
.site_menu__languages a.active {
	color: #8F8679;
}

body.menu_open {
	overflow: hidden;
}

body.menu_open .site_header__hero_logo {
	opacity: 0;
	visibility: hidden;
}

@media screen and (max-width: 900px) {
	.site_header__buttons {
		position: fixed;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
		align-items: stretch;
		z-index: 10040;
	}

	.site_header__button {
		width: 100%;
		max-width: none;
		min-width: 0;
		min-height: 50px;
		padding: 15px 12px 13px;
		border-color: #EADBC2;
		background-color: #EADBC2;
		color: #353130;
		font-size: 14px;
		text-align: center;
	}

	.site_header__button:hover {
		color: #353130;
		border-color: #EADBC2;
		transform: none;
	}

	.site_header__button--outline {
		background-color: #EADBC2;
		color: #353130;
	}

	.site_header__button + .site_header__button {
		border-left: 1px solid #353130;
	}

	.site_menu__content {
		padding: 35px 20px 120px;
	}

	.site_menu__logo {
		width: 260px;
		margin-bottom: 55px;
	}

	.site_menu__list {
		gap: 24px;
	}

	.site_menu__list a {
		font-size: 28px;
	}
}

@media screen and (max-width: 600px) {
	.site_header__menu_button {
		top: 25px;
		left: 25px;
		width: 36px;
		height: 36px;
	}

	.site_header__menu_button img {
		width: 36px;
		height: 36px;
	}

	.site_header__hero_logo {
		width: 250px;
	}

	.site_menu__logo {
		width: 240px;
	}

	.site_menu__list a {
		font-size: 24px;
	}

	.site_menu__languages {
		gap: 18px;
		margin-top: 40px;
	}

	.site_menu__languages a {
		font-size: 14px;
	}
}



/* //////////////////////////////////// FOOTER //////////////////////////////////// */

.site_footer {
	position: relative;
	width: 100%;
	padding: 40px 0 80px;
	background-color: #353130;
	color: #EADBC2;
	text-align: center;
}

.site_footer .w900 {
	margin-left: auto;
	margin-right: auto;
}

.site_footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.site_footer__logo {
	width: 180px;
	margin: 0 auto 25px;
}

.site_footer__logo img {
	width: 100%;
	height: auto;
	display: block;
}

.site_footer__adresse {
	margin: 0 auto 15px;
	font-family: "minion-3-display", serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.45;
	color: #EADBC2;
}

.site_footer__adresse p {
	margin: 0;
}

.site_footer__kontakt {
	font-family: "minion-3-display", serif;
	font-size: 36px;
	font-weight: 400;
	line-height: 1.15;
}

.site_footer__kontakt a {
	color: #EADBC2;
	transition: color 0.3s ease;
}

.site_footer__kontakt a:hover {
	color: #fff4df;
}

.site_footer__email {
	margin-bottom: 25px;
}

.site_footer__links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 auto 25px;
	font-family: "minion-3-display", serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	text-transform: uppercase;
	letter-spacing: 1.4px;
}

.site_footer__links a {
	position: relative;
	display: inline-flex;
	align-items: center;
	color: #EADBC2;
	transition: color 0.3s ease;
}

.site_footer__links a:hover {
	color: #fff4df;
}

.site_footer__links a:not(:last-child):after {
	content: "·";
	display: inline-block;
	margin: 0 10px;
	color: #EADBC2;
}

.site_footer__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.site_footer__socials a {
	width: 35px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.site_footer__socials a:hover {
	opacity: 0.75;
	transform: translateY(-2px);
}

.site_footer__socials img {
	width: 35px;
	height: 35px;
	display: block;
	object-fit: contain;
}

@media screen and (max-width: 768px) {
	.site_footer__kontakt {
		font-size: 30px;
	}

	.site_footer__logo {
		width: 160px;
	}
}

@media screen and (max-width: 480px) {
	.site_footer__kontakt {
		font-size: 25px;
	}

	.site_footer__links {
		flex-direction: column;
		gap: 6px;
	}

	.site_footer__links a:not(:last-child):after {
		display: none;
	}
}


/* //////////////////////////////////// CF7 ANFRAGE FORMULAR //////////////////////////////////// */

.cf7_anfrage {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	color: #353130;
}

.cf7_anfrage h3 {
	margin: 0 auto 30px;
	font-family: "minion-3-display", serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.1;
	text-transform: uppercase;
	text-align: center;
}

.cf7_anfrage h3:not(:first-child) {
	margin-top: 55px;
}

.cf7_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 30px;
}

.cf7_full {
	width: 100%;
	margin-top: 24px;
}

.cf7_field_wrap {
	width: 100%;
}

.cf7_field_wrap label {
	display: block;
	margin: 0 0 8px;
	font-family: "minion-3-display", serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #A18C6F;
}

.cf7_field,
.cf7_anfrage input[type="text"],
.cf7_anfrage input[type="email"],
.cf7_anfrage input[type="tel"],
.cf7_anfrage select,
.cf7_anfrage textarea {
	width: 100%;
	height: 48px;
	margin: 0;
	padding: 12px 15px 10px;
	border: 1px solid #A18C6F;
	border-radius: 0;
	background-color: transparent;
	box-shadow: none;
	outline: none;
	font-family: "minion-3-display", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	color: #353130;
	transition: border-color 0.3s ease, background-color 0.3s ease;
	appearance: none;
}

.cf7_anfrage textarea {
	height: 150px;
	resize: vertical;
}

.cf7_anfrage select {
	background-image: linear-gradient(45deg, transparent 50%, #A18C6F 50%), linear-gradient(135deg, #A18C6F 50%, transparent 50%);
	background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-right: 40px;
}

.cf7_field:focus,
.cf7_anfrage input[type="text"]:focus,
.cf7_anfrage input[type="email"]:focus,
.cf7_anfrage input[type="tel"]:focus,
.cf7_anfrage select:focus,
.cf7_anfrage textarea:focus {
	border-color: #353130;
	background-color: rgba(255,255,255,0.18);
}

.cf7_field::placeholder,
.cf7_anfrage input::placeholder,
.cf7_anfrage textarea::placeholder {
	color: #8F8679;
	opacity: 1;
}

.cf7_privacy {
	margin-top: 30px;
	font-family: "minion-3-display", serif;
	font-size: 17px;
	line-height: 1.4;
	color: #353130;
	text-align: center;
}

.cf7_privacy .wpcf7-list-item {
	margin: 0;
}

.cf7_privacy label {
	display: inline-flex;
	align-items: flex-start;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}

.cf7_privacy input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 3px 0 0;
	accent-color: #A18C6F;
}

.cf7_submit_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 40px;
}

.cf7_submit_wrap .block_link_line {
	width: 80px;
	height: 1px;
	background-color: #A18C6F;
}

.cf7_submit_wrap .wpcf7-submit,
.cf7_submit {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 12px 25px 10px;
	border: 1px solid #A18C6F;
	border-radius: 0;
	background-color: #A18C6F;
	color: #fff;
	font-family: "minion-3-display", serif;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	cursor: pointer;
	transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.cf7_submit_wrap .wpcf7-submit:hover,
.cf7_submit:hover {
	background-color: #8F8679;
	border-color: #8F8679;
	color: #fff;
	transform: translateY(-2px);
}

.cf7_anfrage .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 14px;
	color: #A18C6F;
}

.cf7_anfrage .wpcf7-response-output {
	margin: 30px 0 0;
	padding: 15px 20px;
	border: 1px solid #A18C6F;
	color: #353130;
	text-align: center;
}
/* Contact Form 7 Spinner ausblenden */

.cf7_anfrage .wpcf7-spinner {
	display: none !important;
}
.cf7_submit_wrap .wpcf7-spinner {
	margin: 0 !important;
	width: 0 !important;
	height: 0 !important;
}
.cf7_anfrage {
	margin: 40px 0; 
}


/* //////////////////////////////////// BLOCK 1 VIDEO / HERO //////////////////////////////////// */

.layout_video {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #353130;
}

.layout_video--home {
	height: 100vh;
	min-height: 600px;
}

.layout_video--subpage {
	height: 70vh;
	min-height: 480px;
}

.layout_video__media,
.layout_video__slider,
.layout_video__slide,
.layout_video__slide--single {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.layout_video__media {
	display: block;
	object-fit: cover;
	object-position: center center;
	z-index: 1;
}

.layout_video video.layout_video__media {
	pointer-events: none;
}

.layout_video__slider {
	z-index: 1;
}

.layout_video__slider .slick-list,
.layout_video__slider .slick-track {
	height: 100%;
}

.layout_video__slide {
	position: relative;
	overflow: hidden;
}

.layout_video__slider .layout_video__slide {
	position: relative;
	height: 100%;
}

.layout_video__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.layout_video__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(53, 49, 48, 0.3);
	pointer-events: none;
	z-index: 2;
}

.layout_video .slick-arrow {
	position: absolute;
	top: 50%;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	z-index: 5;
	transform: translateY(-50%);
	transition: transform 0.35s ease, opacity 0.35s ease;
	opacity: 0.95;
}

.layout_video .slick-arrow img {
	width: 100%;
	height: 100%;
	display: block;
}

.layout_video .slick-prev {
	left: 20px;
}

.layout_video .slick-next {
	right: 20px;
}

.layout_video .slick-prev:hover {
	transform: translateY(-50%) translateX(-6px);
	opacity: 1;
}

.layout_video .slick-next:hover {
	transform: translateY(-50%) translateX(6px);
	opacity: 1;
}

.layout_video .slick-dots {
	position: absolute;
	left: 50%;
	bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	transform: translateX(-50%);
	z-index: 5;
}

.layout_video .slick-dots li {
	margin: 0;
	padding: 0;
}

.layout_video .slick-dots button {
	width: 8px;
	height: 8px;
	display: block;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: transparent;
	font-size: 0;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.layout_video .slick-dots .slick-active button {
	background-color: #fff;
	transform: scale(1.2);
}

@media screen and (max-width: 768px) {
	.layout_video--home {
		min-height: 500px;
	}

	.layout_video--subpage {
		height: 60vh;
		min-height: 420px;
	}

	.layout_video .slick-arrow {
		width: 36px;
		height: 36px;
	}

	.layout_video .slick-prev {
		left: 14px;
	}

	.layout_video .slick-next {
		right: 14px;
	}
}

@media screen and (max-width: 480px) {
	.layout_video--home {
		height: 85vh;
		min-height: 420px;
	}

	.layout_video--subpage {
		height: 55vh;
		min-height: 360px;
	}
}


/* //////////////////////////////////// BLOCK 2 TITEL TEXT LINK //////////////////////////////////// */

.layout_titel_text_link {
	position: relative;
	width: 100%;
}

.layout_titel_text_link .w900 {
	margin-left: auto;
	margin-right: auto;
}

.layout_titel_text_link__text {
	color: #353130;
	margin: 0 auto;
}

.layout_titel_text_link__button_wrap {
	margin-top: 35px;
	display: flex;
	justify-content: center;
}

.layout_button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #A18C6F;
	color: #fff;
	font-family: "minion-3-display", serif;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	line-height: 1;
	padding: 12px 25px 10px;
	border: 1px solid #A18C6F;
	overflow: hidden;
	transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
	z-index: 1;
}

.layout_button:before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 120%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255,255,255,0.16) 45%,
		rgba(255,255,255,0.26) 50%,
		rgba(255,255,255,0.16) 55%,
		transparent 100%
	);
	transition: left 0.55s ease;
	z-index: -1;
}

.layout_button:hover {
	color: #fff;
	border-color: #A18C6F;
	transform: translateY(-1px);
}

.layout_button:hover:before {
	left: 100%;
}

@media screen and (max-width: 768px) {
	.layout_titel_text_link__button_wrap {
		margin-top: 28px;
	}

	.layout_button {
		font-size: 14px;
		padding: 15px 28px 13px;
	}
}

/* Block 2 Listen */

.layout_titel_text_link__text ul,
.layout_titel_text_link__text ol {
	margin: 25px auto 40px;
	padding: 0;
	list-style: none;
	text-align: center;
}

.layout_titel_text_link__text li {
	position: relative;
	margin: 0 auto 5px;
	padding: 0;
	text-align: center;
}

.layout_titel_text_link__text li:after {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	margin: 5px auto 0;
	background-color: #A18C6F;
}

.layout_titel_text_link__text li:last-child {
	margin-bottom: 0;
}

.layout_titel_text_link__text li:last-child:after {
	display: none;
}


/* //////////////////////////////////// BLOCK 3 SLIDER //////////////////////////////////// */

.layout_slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.layout_slider__inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.layout_slider__slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.layout_slider__slide {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 6;
	overflow: hidden;
	background-color: #8F8679;
}

.layout_slider__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.layout_slider .slick-list,
.layout_slider .slick-track {
	height: 100%;
}

.layout_slider__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(53, 49, 48, 0.3);
	pointer-events: none;
	z-index: 4;
}

.layout_slider__title {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1280px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 5;
}

.layout_slider__title h2 {
	color: #EADBC2;
	margin: 0 auto;
	font-size:63px;
}

.layout_slider .slick-arrow {
	position: absolute;
	top: 50%;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	z-index: 20;
	transform: translateY(-50%);
	transition: transform 0.35s ease, opacity 0.35s ease;
	opacity: 0.95;
}

.layout_slider .slick-arrow img {
	width: 100%;
	height: 100%;
	display: block;
}

.layout_slider .slick-prev {
	left: 20px;
}

.layout_slider .slick-next {
	right: 20px;
}

.layout_slider .slick-prev:hover {
	transform: translateY(-50%) translateX(-6px);
	opacity: 1;
}

.layout_slider .slick-next:hover {
	transform: translateY(-50%) translateX(6px);
	opacity: 1;
}

.layout_slider .slick-dots {
	position: absolute;
	left: 50%;
	bottom: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	transform: translateX(-50%);
	z-index: 20;
}

.layout_slider .slick-dots li {
	margin: 0;
	padding: 0;
}

.layout_slider .slick-dots button {
	width: 8px;
	height: 8px;
	display: block;
	padding: 0;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: transparent;
	font-size: 0;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.layout_slider .slick-dots .slick-active button {
	background-color: #fff;
	transform: scale(1.2);
}
@media screen and (max-width: 900px) {
	.layout_slider__title h2 {
		font-size:50px;
	}
}
@media screen and (max-width: 768px) {
	.layout_slider .slick-arrow {
		width: 36px;
		height: 36px;
	}

	.layout_slider .slick-prev {
		left: 14px;
	}

	.layout_slider .slick-next {
		right: 14px;
	}

	.layout_slider .slick-dots {
		bottom: 16px;
	}
}

@media screen and (max-width: 480px) {
	.layout_slider__slide {
		aspect-ratio: 4 / 3;
	}
	.layout_slider__title h2 {
		font-size:40px;
	}
}


/* //////////////////////////////////// BLOCK 4 TITEL TEXT SPALTEN //////////////////////////////////// */

.layout_titel_text_spalten {
	position: relative;
	width: 100%;
}

.layout_titel_text_spalten__grid {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 0;
	align-items: start;
}

.layout_titel_text_spalten__left {
	padding: 0 50px;
	text-align: center;
}

.layout_titel_text_spalten__left h2 {
	margin: 0 auto;
}

.layout_titel_text_spalten__right {
	text-align: left;
	color: #353130;
}

@media screen and (max-width: 900px) {
	.layout_titel_text_spalten__grid {
		display: block;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}

	.layout_titel_text_spalten__left {
		padding: 0;
		margin-bottom: 25px;
	}

	.layout_titel_text_spalten__right {
		text-align: center;
	}
}



/* //////////////////////////////////// BLOCK 5 2 BILDER TITEL TEXT LINK //////////////////////////////////// */

.layout_2bilder_titel_text_link {
	position: relative;
	width: 100%;
}

.layout_2bilder__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 55px;
}

.layout_2bilder__image_wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
	background-color: #8F8679;
}

.layout_2bilder__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.layout_2bilder__title {
	margin-bottom: 35px;
}

.layout_2bilder__text_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	text-align: left;
}

.layout_2bilder_text--single {
	display: block;
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.layout_2bilder__button_wrap {
	margin-top: 35px;
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 900px) {
	.layout_2bilder__grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}

	.layout_2bilder__text_grid {
		grid-template-columns: 1fr;
		gap: 20px;
		text-align: center;
	}

	.layout_2bilder__title {
		margin-bottom: 25px;
	}
}



/* //////////////////////////////////// BLOCK 6 PARTNER //////////////////////////////////// */

.layout_partner {
	position: relative;
	width: 100%;
}

.layout_partner .w900 {
	margin-left: auto;
	margin-right: auto;
}

.layout_partner__box {
	position: relative;
	padding: 80px 20px 20px;
	text-align: center;
}

.layout_partner__box:before {
	content: "";
	position: absolute;
	inset: 0;
	border: 2px dotted #A18C6F;
	pointer-events: none;
}

.layout_partner__logo {
	position: absolute;
	top: -60px;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 240px;
	padding: 0 30px;
	background-color: #EADBC2;
	transform: translateX(-50%);
	z-index: 2;
}

.layout_partner__logo img {
	width: auto;
	height: 120px;
	display: block;
}

.layout_partner__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.layout_partner__text {
	margin: 0 auto;
	color: #353130;
}

.layout_partner__button_wrap {
	margin-top: 35px;
	display: flex;
	justify-content: center;
}


/* //////////////////////////////////// BLOCK 7 HIGHLIGHTS //////////////////////////////////// */

.layout_highlights {
	position: relative;
	width: 100%;
	padding: 80px 0;
	background-color: #A18C6F;
	overflow: hidden;
}

.layout_highlights__title {
	color: #353130;
	margin-bottom: 50px;
}

.layout_highlights__wrap {
	position: relative;
	width: 100%;
}

.layout_highlights__slider {
	position: relative;
	width: 100%;
	padding: 0 70px;
}

.layout_highlights__slide {
	position: relative;
	padding: 0 15px;
	text-align: center;
	opacity: 0.45;
	transition: opacity 0.45s ease;
}

.layout_highlights__slide.is-middle {
	opacity: 1;
}

.layout_highlights__image_wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background-color: #8F8679;
	transform: scale(0.75);
	transform-origin: center center;
	transition: transform 0.45s ease;
}

.layout_highlights__slide.is-middle .layout_highlights__image_wrap {
	transform: scale(1);
}


.layout_highlights__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

.layout_highlights__text {
	max-width: 360px;
	margin: 25px auto 0;
	color: #353130;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.layout_highlights__slide.is-middle .layout_highlights__text {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.layout_highlights__text p {
	color: #353130;
}

.layout_highlights .slick-list {
	overflow: hidden;
}

.layout_highlights .slick-track {
	display: flex;
	align-items: center;
}

.layout_highlights .slick-arrow {
	position: absolute;
	top: 42%;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0;
	line-height: 0;
	color: transparent;
	cursor: pointer;
	z-index: 20;
	transform: translateY(-50%);
	transition: transform 0.35s ease, opacity 0.35s ease;
	opacity: 0.9;
}

.layout_highlights .slick-arrow img {
	width: 100%;
	height: 100%;
	display: block;
}

.layout_highlights .slick-prev {
	left: 0;
}

.layout_highlights .slick-next {
	right: 0;
}

.layout_highlights .slick-prev:hover {
	transform: translateY(-50%) translateX(-6px);
	opacity: 1;
}

.layout_highlights .slick-next:hover {
	transform: translateY(-50%) translateX(6px);
	opacity: 1;
}

@media screen and (max-width: 900px) {
	.layout_highlights {
		padding: 70px 0;
	}

	.layout_highlights__title {
		margin-bottom: 35px;
	}

	.layout_highlights__slider {
		padding: 0 55px;
	}

	.layout_highlights__slide {
		padding: 0 10px;
		transform: scale(1);
		opacity: 1;
	}

	.layout_highlights__text {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.layout_highlights .slick-track {
		align-items: flex-start;
	}

	.layout_highlights .slick-arrow {
		top: 42%;
		width: 38px;
		height: 38px;
	}
}

@media screen and (max-width: 520px) {
	.layout_highlights {
		padding: 60px 0;
	}

	.layout_highlights__slider {
		padding: 0 45px;
	}

	.layout_highlights__slide {
		padding: 0;
	}

	.layout_highlights .slick-prev {
		left: 0;
	}

	.layout_highlights .slick-next {
		right: 0;
	}
}

.layout_highlights__slider:not(.slick-initialized) {
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
}

.layout_highlights__slider:not(.slick-initialized) .layout_highlights__slide {
	opacity: 1;
	transform: none;
}

.layout_highlights__slider:not(.slick-initialized) .layout_highlights__text {
	opacity: 1;
	visibility: visible;
	transform: none;
}






/* //////////////////////////////////// BLOCK 8 WOHNUNGEN //////////////////////////////////// */

.layout_wohnungen {
	position: relative;
	width: 100%;
}

.layout_wohnungen__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 50px 30px;
}

.layout_wohnungen__item {
	width: calc((100% - 120px) / 5);
	display: block;
	text-align: center;
	color: #353130;
}

.layout_wohnungen__image_wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	background-color: #8F8679;
}

.layout_wohnungen__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.7s ease, filter 0.7s ease;
}

.layout_wohnungen__item:hover .layout_wohnungen__image {
	transform: scale(1.08);
	filter: brightness(0.92);
}

.layout_wohnungen__content {
	margin-top: 20px;
}

.layout_wohnungen h2,
.layout_wohnungen__content h2,
.layout_wohnungen__info_left h2 {
	font-family: "meow-script", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 55px;
	line-height: 0.75;
	text-align: center;
	text-transform: none;
	color: #A18C6F;
	margin: 0 auto;
}

.layout_wohnungen__facts {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	font-family: "minion-3-display", serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.35;
	color: #353130;
	text-align: center;
}

.layout_wohnungen__facts span {
	display: inline-flex;
	align-items: center;
}
.layout_wohnungen__facts span:last-child {
	display: inline-block;
	align-items: center;
	width: 100%;
}

.layout_wohnungen__facts span:first-child:after {
	content: "|";
	display: inline-block;
	margin: 0 9px;
	color: #353130;
}

.layout_wohnungen__infos {
	--wohnung-marker-left: 50%;

	position: relative;
	width: 100%;
	margin-top: 30px;
	padding-top: 60px;
	border-top: 1px solid #353130;
}

.layout_wohnungen__marker {
	position: absolute;
	top: -1px;
	left: var(--wohnung-marker-left);
	width: 15px;
	height: auto;
	line-height: 0;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
	transition: left 0.35s ease, opacity 0.25s ease;
	z-index: 2;
}

.layout_wohnungen__marker img {
	width: 15px;
	height: auto;
	display: block;
}

.layout_wohnungen__infos.has_active_marker .layout_wohnungen__marker {
	opacity: 1;
}

.layout_wohnungen__info {
	display: none;
}

.layout_wohnungen__info.is_active {
	display: block;
}

.layout_wohnungen__info_top {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 0;
	align-items: start;
}

.layout_wohnungen__info_left {
	padding: 0 50px;
	text-align: center;
}

.layout_wohnungen__info_right {
	text-align: left;
	color: #353130;
}

.layout_wohnungen__info_right ul {
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
}

.layout_wohnungen__info_right li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 0;
}

.layout_wohnungen__info_right li:before {
	content: "–";
	position: absolute;
	left: 0;
	top: 0;
	color: #A18C6F;
}

.layout_wohnungen__buttons {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	width: 220px;
	margin: 35px auto 0;
}

.wohnung_button {
	position: relative;
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 12px 25px 10px;
	border: 1px solid #A18C6F;
	overflow: hidden;
	font-family: "minion-3-display", serif;
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
	z-index: 1;
}

.wohnung_button:before {
	content: "";
	position: absolute;
	top: 0;
	left: -130%;
	width: 130%;
	height: 100%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255,255,255,0.05) 34%,
		rgba(255,255,255,0.35) 48%,
		rgba(255,255,255,0.55) 50%,
		rgba(255,255,255,0.35) 52%,
		rgba(255,255,255,0.05) 66%,
		transparent 100%
	);
	transition: left 0.65s ease;
	z-index: -1;
}

.wohnung_button:hover {
	transform: translateY(-2px);
}

.wohnung_button:hover:before {
	left: 100%;
}

.wohnung_button--filled {
	background-color: #A18C6F;
	color: #fff;
}

.wohnung_button--filled:hover {
	color: #fff;
	border-color: #A18C6F;
}

.wohnung_button--outline {
	background-color: transparent;
	color: #A18C6F;
}

.wohnung_button--outline:hover {
	color: #A18C6F;
	border-color: #A18C6F;
}


/* Galerie */

.layout_wohnungen__gallery {
	width: 100%;
	max-width: 1280px;
	margin: 45px auto 0;
}

.layout_wohnungen__gallery_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.layout_wohnungen__gallery_item {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background-color: #8F8679;
}

.layout_wohnungen__gallery_item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.6s ease, filter 0.6s ease;
}

.layout_wohnungen__gallery_item:hover img {
	transform: scale(1.05);
	filter: brightness(0.92);
}


/* Weitere Wohnungen */

.layout_wohnungen__more {
	width: 100%;
	margin: 55px auto 0;
	text-align: center;
}

.layout_wohnungen__more h3 {
	font-family: "meow-script", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 40px;
	color:#A18C6F;
	line-height: 1.2;
	text-align: center;
	margin: 0 0 25px;
}

.layout_wohnungen__more_buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.layout_wohnungen__more_buttons .wohnung_button {
	width: auto;
	min-width: 180px;
}


/* Responsive */

@media screen and (max-width: 1000px) {
	.layout_wohnungen__item {
		width: calc((100% - 30px) / 2);
	}

	.layout_wohnungen__marker {
		display: none;
	}

	.layout_wohnungen__infos {
		margin-top: 70px;
		padding-top: 50px;
	}

	.layout_wohnungen__info_top {
		grid-template-columns: 1fr;
		gap: 35px;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}

	.layout_wohnungen__info_left {
		padding: 0;
	}

	.layout_wohnungen__info_right {
		text-align: center;
	}

	.layout_wohnungen__info_right li {
		display: inline-block;
		text-align: left;
	}

	.layout_wohnungen__image_wrap {
		aspect-ratio: 1 / 1;
	}

	.layout_wohnungen__facts span:not(:last-child):after {
		content: "|";
		display: inline-block;
		margin: 0 9px;
		color: #353130;
	}
}

@media screen and (max-width: 900px) {
	.layout_wohnungen__gallery_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 700px) {
	.layout_wohnungen__grid {
		gap: 40px;
	}

	.layout_wohnungen__item {
		width: 100%;
		max-width: 440px;
	}

	.layout_wohnungen h2,
	.layout_wohnungen__content h2,
	.layout_wohnungen__info_left h2 {
		font-size: 58px;
	}

	.layout_wohnungen__facts {
		font-size: 16px;
	}

	.layout_wohnungen__buttons {
		width: 100%;
		max-width: 240px;
	}

	.layout_wohnungen__more h3 {
		font-size: 24px;
	}

	.layout_wohnungen__more_buttons {
		flex-direction: column;
	}

	.layout_wohnungen__more_buttons .wohnung_button {
		width: 100%;
		max-width: 260px;
	}
}

@media screen and (max-width: 520px) {
	.layout_wohnungen__gallery_grid {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 480px) {
	.layout_wohnungen h2,
	.layout_wohnungen__content h2,
	.layout_wohnungen__info_left h2 {
		font-size: 48px;
	}

	.layout_wohnungen__facts {
		display: block;
	}

	.layout_wohnungen__facts span {
		display: block;
	}

	.layout_wohnungen__facts span:not(:last-child):after {
		display: none;
	}
}