:root {
	--ink: #3f372f;
	--muted: #6e6257;
	--paper: #fbfaf7;
	--soft: #f4efe7;
	--line: #e6ddd1;
	--gold: #f0a61f;
	--gold-dark: #d68c07;
	--brown: #6c5d4d;
	--hero: #4b4136;
	--shadow: 0 22px 70px rgba(63, 55, 47, .12);
	--serif: Georgia, 'Times New Roman', serif;
	--sans: Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
}

img {
	max-width: 100%;
	display: block
}

a {
	color: inherit;
	text-decoration: none
}

.site-header {
	height: 90px;
	max-width: 945px;
	margin: 0 auto;
	padding: 0 54px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(251, 250, 247, .96);
	border-bottom: 0;
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(12px);
}

.site-header div:first-child {
	margin: 0 auto;
}

.brand img {
	width: 152px;
	height: auto
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 12px;
	font-weight: 600;
	color: #302b26
}

.main-nav a {
	position: relative;
	padding: 36px 0 31px;
	white-space: nowrap
}

.main-nav a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 23px;
	margin: auto;
	width: 38px;
	height: 3px;
	background: var(--gold);
	border-radius: 4px
}

.nav-cta {
	border: 1px solid var(--gold);
	border-radius: 6px;
	padding: 13px 14px !important;
	color: var(--gold-dark);
	font-weight: 500 !important
}

.nav-cta span {
	font-size: 20px;
	vertical-align: -2px;
	margin-left: 12px
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	font-size: 28px;
	color: var(--ink)
}

main {
	max-width: 945px;
	margin: 0 auto;
	border: 1px solid var(--line);
	border-top: 0;
	background: var(--paper);
	overflow: hidden
}

.hero {
	height: 403px;
	position: relative;
	background: var(--hero);
	overflow: hidden
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: url('../images/Block_1_Hintergrundbild.png') center right/cover no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(73, 62, 51, .96) 0%, rgba(73, 62, 51, .83) 34%, rgba(73, 62, 51, .45) 67%, rgba(73, 62, 51, .25) 100%)
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 45px 0 0 190px;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .12)
}

.quote-mark {
	font-family: var(--serif);
	font-size: 154px;
	line-height: .65;
	color: var(--gold);
	height: 75px;
	margin-left: -104px
}

h1 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 35px;
	line-height: 1.22;
	margin: 0 0 23px;
	letter-spacing: -.5px
}

.accent-line {
	display: block;
	width: 42px;
	height: 3px;
	background: var(--gold);
	border-radius: 5px;
	margin: 0 0 28px
}

.hero p {
	font-size: 12px;
	line-height: 1.62;
	margin: 0;
	color: #fff;
	max-width: 330px
}

.year-mark {
	position: absolute;
	right: 28px;
	bottom: 35px;
	z-index: 2;
	color: rgba(223, 171, 88, .62);
	font-family: var(--serif);
	font-weight: 400
}

.year-mark span {
	font-size: 188px;
	line-height: .75;
	letter-spacing: -10px;
	-webkit-text-stroke: 2px rgba(223, 171, 88, .62);
	color: transparent
}

.year-mark small {
	position: absolute;
	left: 93px;
	bottom: 46px;
	font: 700 18px/1 var(--sans);
	letter-spacing: 2px;
	color: rgba(223, 171, 88, .7)
}

.section {
	padding: 43px 56px 0
}

.voices {
	position: relative;
	padding: 0;
	background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
	max-height: 1500px;
}

.voice-card {
	display: grid;
	grid-template-columns: 1.1fr 256px 1.05fr;
	min-height: 356px;
	border-radius: 9px; */
	overflow: hidden;
	box-shadow: var(--shadow);
	background: #fffdf9
}

.voice-card .voice-text {
	font: italic 24px/1.55 var(--serif);
}

.voice-card .voice-text::after {
	content: '\201D';
	font-size: 76px;
  color: #8b8177;
}

.voice-quote {
	padding: 52px 38px 38px;
	background: linear-gradient(135deg, #fbf8f2, #f4eee5)
}

.voice-quote blockquote {
	height: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.small-quote {
	font-family: var(--serif);
	font-size: 76px;
	line-height: .6;
	color: #8b8177;
	margin-bottom: 26px
}

blockquote {
	margin: 0;
	color: #4a4139;
	font: italic 26px/1.55 var(--serif)
}

.voice-quote p {
	font-size: 13px;
	margin: 24px 0 42px;
	color: #37312c
}

.dots {
	display: flex;
	gap: 7px;
	justify-content: center
}

.dot {
	width: 8px;
	height: 8px;
	background: #ddd4c8;
	border-radius: 50%
}

.dot.active {
	background: var(--gold)
}

.voice-image {
	width: 100%;
	height: 100%;
  max-height: 400px;
	object-fit: contain;
	filter: sepia(.18) saturate(.82);
	margin: 20px auto !important;
	/*Neu*/
}

.voice-text {
	padding: 82px 32px 40px;
  background: linear-gradient(135deg, #fbf8f2, #f4eee5);
}

.voice-text h2 {
	font: 400 20px/1.2 var(--serif);
	margin: 0 0 10px
}

.role {
	color: var(--gold-dark);
	font-size: 12px;
	margin: 0 0 25px !important
}

.slider-arrow {
	position: absolute;
	top: 47%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	color: #3a332d;
	font-size: 34px;
	font-family: var(--serif);
	display: grid;
	place-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	cursor: pointer
}

.slider-arrow.prev {
	left: 25px
}

.slider-arrow.next {
	right: 25px
}

.slider-arrow:hover {
	border-color: var(--gold);
	color: var(--gold-dark)
}

.moments {
	padding-bottom: 57px
}

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 27px
}

.section-head h2 {
	font: 400 29px/1.2 var(--serif);
	margin: 0 0 17px
}

.section-head .accent-line {
	margin-bottom: 0
}

.section-head a {
	font-size: 12px;
	color: var(--gold-dark);
	font-weight: 700
}

.section-head a span {
	font-size: 24px;
	vertical-align: -4px;
	margin-left: 16px
}

.gallery {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 7px
}

.gallery-item {
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden
}

.gallery-item img {
	width: 100%;
	aspect-ratio: 1/1.68;
	object-fit: cover;
	filter: sepia(.18) saturate(.85);
	transition: transform .35s ease, filter .35s ease
}

.gallery-item:hover img {
	transform: scale(1.04);
	filter: sepia(.05) saturate(1)
}

.thank-you {
	min-height: 297px;
	padding: 45px 0 40px;
	display: grid;
	grid-template-columns: 270px 1px 1fr;
	align-items: center;
	background: linear-gradient(135deg, #f5cd71, #f5cd71);
	color: #fff;
	position: relative;
	overflow: hidden
}

.thank-you::before {
	content: "";
	position: absolute;
	left: -100px;
	bottom: -150px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	box-shadow: 0 0 0 26px rgba(255, 255, 255, .08), 0 0 0 52px rgba(255, 255, 255, .08), 0 0 0 78px rgba(255, 255, 255, .06)
}

.glasses {
	position: relative;
	z-index: 1;
	justify-self: end;
	margin-right: 57px;
	width: 82px
}

.glasses svg {
	width: 100%;
	height: auto
}

.divider {
	height: 143px;
	background: rgba(255, 255, 255, .65);
	position: relative;
	z-index: 1
}

.thanks-copy {
	position: relative;
	z-index: 1;
	padding-left: 36px
}

.thanks-copy h2 {
	font: 400 35px/1.22 var(--serif);
	margin: 0 0 18px
}

.thanks-copy p {
	font-size: 16px;
	line-height: 1.48;
	margin: 0 0 18px
}

.heart {
	font-size: 44px;
	line-height: 1
}

.lightbox {
	position: fixed;
	inset: 0;
	background: rgba(30, 25, 21, .86);
	z-index: 50;
	display: none;
	place-items: center;
	padding: 30px
}

.lightbox.is-open {
	display: grid
}

.lightbox img {
	max-width: min(92vw, 900px);
	max-height: 84vh;
	border: 10px solid #fff;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .45)
}

.lightbox-close {
	position: fixed;
	top: 22px;
	right: 30px;
	background: #fff;
	border: 0;
	border-radius: 50%;
	width: 42px;
	height: 42px;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	color: var(--ink)
}

@media(max-width:880px) {
	.site-header {
		height: auto;
		padding: 18px 24px;
		align-items: flex-start
	}

	.nav-toggle {
		display: block
	}

	.main-nav {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 0;
		align-items: flex-start;
		padding-top: 16px
	}

	.site-header.nav-open {
		flex-wrap: wrap
	}

	.site-header.nav-open .main-nav {
		display: flex
	}

	.main-nav a {
		padding: 10px 0
	}

	.main-nav a.active::after {
		bottom: 6px
	}

	.nav-cta {
		margin-top: 8px
	}

	.hero {
		height: auto;
	}

	.hero-content {
		padding: 48px 30px 55px 120px
	}

	.quote-mark {
		margin-left: -80px
	}

	.year-mark {
		right: 15px;
		bottom: 20px;
		opacity: .6
	}

	.voice-card {
		grid-template-columns: 1fr
	}

	.voice-image {
		height: 320px
	}

	.voice-text {
		padding: 36px
	}

	.slider-arrow {
		display: none
	}

	.gallery {
		grid-template-columns: repeat(2, 1fr)
	}

	.thank-you {
		grid-template-columns: 1fr;
		text-align: left;
		padding: 44px 34px
	}

	.glasses {
		justify-self: start;
		margin: 0 0 25px
	}

	.divider {
		display: none
	}

	.thanks-copy {
		padding-left: 0
	}

	.small-quote,
  .voice-card .voice-text::after  {
		font-size: 54px;
	}

	blockquote {
		font-size: 18px;
	}
}

@media(max-width:520px) {
	.hero-content {
		padding-left: 34px
	}

	.quote-mark {
		margin-left: 0;
		font-size: 105px
	}

	.hero h1 {
		font-size: 29px
	}

	.section {
		padding-left: 25px;
		padding-right: 25px
	}

	.section-head {
		display: block
	}

	.section-head a {
		display: inline-block;
		margin-top: 12px
	}

	.thank-you h2 {
		font-size: 30px
	}

	.brand img {
		width: 130px
	}

	.small-quote,
  .voice-card .voice-text::after  {
		font-size: 36px;
	}
}

/* Slick Mitarbeiter-Slider */
.employee-slider {
	position: relative;
	/*background: #fffdf9;*/
	background: linear-gradient(135deg, #fbf8f2, #f4eee5);
}

.employee-slider .slick-list {
	overflow: hidden;
}

.employee-slider .slick-track {
	display: flex;
	align-items: stretch;
}

.employee-slider .slick-slide {
	height: auto;
}

.employee-slider.slick-slide img {
	max-height: 400px;
	object-fit: scale-down;
}

.employee-slider .slick-slide>div {
	height: 100%;
}

.employee-slider .voice-card {
	height: 100%;
	box-shadow: none;
}

.employee-slider .slick-prev,
.employee-slider .slick-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: #fff;
	color: #3a332d;
	font-size: 34px;
	font-family: var(--serif);
	line-height: 1;
	display: grid !important;
	place-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
	cursor: pointer;
	z-index: 3;
}

.employee-slider .slick-prev {
	left: -30px;
}

.employee-slider .slick-next {
	right: -30px;
}

.employee-slider .slick-prev:hover,
.employee-slider .slick-next:hover {
	border-color: var(--gold);
	color: var(--gold-dark);
}

.employee-slider .slick-dots {
	position: absolute;
	left: 38px;
	bottom: 34px;
	display: flex !important;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.employee-slider .slick-dots li {
	width: 8px;
	height: 8px;
	margin: 0;
}

.employee-slider .slick-dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #ddd4c8;
	color: transparent;
	font-size: 0;
	cursor: pointer;
}

.employee-slider .slick-dots .slick-active button {
	background: var(--gold);
}

@media(max-width:880px) {

	.employee-slider .slick-prev,
	.employee-slider .slick-next {
		display: none !important
	}

	.employee-slider .slick-dots {
		left: 36px;
		bottom: 28px
	}
}