/* ==================================================================
   Landhaus – Startseiten-Sections + Footer
   Umsetzung der Design-Vorlage (/design) in plain CSS.
   ================================================================== */

/* ---------- Basis ---------- */

.lh-section {
	position: relative;
	padding: clamp(6rem, 10vw, 10rem) 0;
	background: var(--lh-creme);
	color: var(--lh-kamin);
	font-family: var(--lh-font-sans);
	overflow: hidden;
}

.lh-section--warmweiss {
	background: var(--lh-warmweiss);
}

.lh-section--dunkel {
	background: var(--lh-dunkel);
	color: var(--lh-warmweiss);
}

.lh-container {
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (min-width: 768px) {
	.lh-container {
		padding: 0 3rem;
	}
}

@media (min-width: 1024px) {
	.lh-container {
		padding: 0 4rem;
	}
}

/* ---------- Typografie-Bausteine ---------- */

.lh-display {
	font-family: var(--lh-font-serif);
	font-weight: 300;
	font-size: clamp(2rem, 4.2vw, 3.6rem);
	line-height: 1.05;
	letter-spacing: -0.012em;
	color: var(--lh-kamin);
	margin: 1.5rem 0 0;
}

.lh-display--lg {
	font-size: clamp(2.2rem, 4.6vw, 3.9rem);
}

.lh-display--md {
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	line-height: 1.1;
}

.lh-display em {
	font-style: italic;
	color: var(--lh-akzentdunkel);
}

.lh-display--light {
	color: var(--lh-warmweiss);
}

.lh-display--light em {
	color: rgba(255, 253, 248, 0.9);
}

.lh-copy {
	margin: 1.75rem 0 0;
	max-width: 28rem;
	color: rgba(43, 38, 33, 0.75);
	font-size: 15.5px;
	line-height: 1.75;
	font-weight: 300;
	font-family: var(--lh-font-sans);
}

.lh-copy--light {
	color: rgba(255, 253, 248, 0.7);
}

.lh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0;
	color: var(--lh-akzentdunkel);
	font-family: var(--lh-font-sans);
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.32em;
}

.lh-eyebrow::before,
.lh-eyebrow::after {
	content: '';
	display: inline-block;
	width: 28px;
	height: 1px;
	background: currentColor;
	opacity: 0.4;
	margin: 0 14px;
}

.lh-eyebrow--akzent {
	color: var(--lh-akzent);
}

.lh-eyebrow--oliv {
	color: #6f7a54;
}

.lh-script {
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-weight: 400;
}

.lh-dot {
	display: inline-block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--lh-akzent);
	flex-shrink: 0;
}

.lh-icon {
	width: 18px;
	height: 18px;
}

.lh-icon--sm {
	width: 14px;
	height: 14px;
}

/* ---------- Buttons (Pill mit Pfeil-Kreis) ---------- */

.lh-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--lh-font-sans);
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-decoration: none !important;
	border-radius: 999px;
	padding: 12px 20px 12px 24px;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
}

.lh-btn__arrow {
	display: inline-flex;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: background 0.3s ease;
}

.lh-btn__arrow svg {
	width: 12px;
	height: 12px;
}

.lh-btn--primary {
	background: var(--lh-akzent);
	color: var(--lh-warmweiss);
	padding: 5px 5px 5px 24px;
}

.lh-btn--primary:hover {
	background: var(--lh-akzentdunkel);
	color: var(--lh-warmweiss);
}

.lh-btn--primary .lh-btn__arrow {
	background: rgba(255, 253, 248, 0.1);
}

.lh-btn--primary:hover .lh-btn__arrow {
	background: rgba(255, 253, 248, 0.2);
}

.lh-btn--secondary {
	background: var(--lh-warmweiss);
	color: var(--lh-kamin);
	border: 1px solid rgba(43, 38, 33, 0.1);
}

.lh-btn--secondary:hover {
	background: var(--lh-creme);
	color: var(--lh-kamin);
}

.lh-btn--outline {
	background: transparent;
	border: 1px solid var(--lh-akzent);
	color: var(--lh-akzentdunkel);
	padding: 5px 5px 5px 24px;
}

.lh-btn--outline:hover {
	background: var(--lh-akzent);
	color: var(--lh-warmweiss);
}

.lh-btn--outline .lh-btn__arrow {
	background: rgba(112, 141, 171, 0.08);
}

.lh-btn--outline:hover .lh-btn__arrow {
	background: rgba(255, 253, 248, 0.16);
}

.lh-btn--on-dark {
	color: var(--lh-akzent);
	border-color: var(--lh-akzent);
	margin-top: 3rem;
}

.lh-btn--on-dark:hover {
	background: var(--lh-akzent);
	color: var(--lh-warmweiss);
}

/* ---------- Bilder & Platzhalter ---------- */

.lh-media {
	position: relative;
	overflow: hidden;
	border-radius: 28px;
	background: #1b231e;
}

.lh-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.lh-media--r20 { border-radius: 20px; }
.lh-media--r24 { border-radius: 24px; }
.lh-media--r28 { border-radius: 28px; }
.lh-media--r32 { border-radius: 32px; }
.lh-media--flat { border-radius: 0; }

.lh-media--fill {
	height: 100%;
	width: 100%;
}

.lh-media--shadow {
	box-shadow: 0 32px 64px -28px rgba(43, 38, 33, 0.22);
}

.lh-media--zoom img {
	transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-media--zoom:hover img,
article:hover .lh-media--zoom img,
figure:hover .lh-media--zoom img {
	transform: scale(1.05);
}

.lh-media--placeholder {
	display: grid;
	place-items: center;
}

.lh-media--placeholder span {
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 10px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center;
	padding: 0 1rem;
	color: rgba(43, 38, 33, 0.55);
}

.lh-media--placeholder::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: repeating-linear-gradient(45deg, rgba(82, 111, 141, 0.06) 0 1px, transparent 1px 24px);
}

.lh-media--tint-warm { background: linear-gradient(135deg, #efe6d7 0%, #e3d3b8 45%, #d8c7a7 100%); }
.lh-media--tint-sand { background: linear-gradient(135deg, #ede2cc 0%, #d8c7a7 100%); }
.lh-media--tint-cool { background: linear-gradient(135deg, #d6dee6 0%, #aabdce 50%, #708dab 100%); }
.lh-media--tint-olive { background: linear-gradient(135deg, #8b9479 0%, #6f7a54 100%); }
.lh-media--tint-olive span { color: rgba(255, 253, 248, 0.75); }
.lh-media--tint-dark { background: linear-gradient(135deg, #2a3530 0%, #15201a 60%, #111713 100%); }
.lh-media--tint-dark span { color: rgba(255, 253, 248, 0.55); }

/* ---------- Section-Kopf ---------- */

.lh-section-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lh-section-head__sub {
	margin: 1.25rem 0 0;
	max-width: 42rem;
	color: rgba(43, 38, 33, 0.65);
	font-size: 15px;
	line-height: 1.65;
	font-weight: 300;
}

/* ---------- Scroll-Reveal ---------- */

.lh-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-reveal--left { transform: translateX(-36px); }
.lh-reveal--right { transform: translateX(36px); }

.lh-reveal.is-inview {
	opacity: 1;
	transform: none;
}

/* Ohne JS oder mit reduzierter Bewegung: alles sichtbar */
.no-js .lh-reveal {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.lh-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* ==================================================================
   Ankommen
   ================================================================== */

.lh-ankommen__grid {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.lh-ankommen__grid {
		grid-template-columns: 1fr 1fr;
		gap: 6rem;
	}
}

.lh-ankommen__media {
	position: relative;
}

.lh-ankommen__badge {
	position: absolute;
	bottom: -20px;
	left: 2rem;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--lh-warmweiss);
	border: 1px solid rgba(43, 38, 33, 0.05);
	border-radius: 999px;
	padding: 8px 20px 8px 12px;
	box-shadow: 0 4px 14px rgba(43, 38, 33, 0.12);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-weight: 600;
	color: rgba(43, 38, 33, 0.7);
	white-space: nowrap;
}

.lh-ankommen__pills {
	margin-top: 2.25rem;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	max-width: 28rem;
}

@media (min-width: 640px) {
	.lh-ankommen__pills {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.lh-pill {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--lh-warmweiss);
	border: 1px solid rgba(43, 38, 33, 0.1);
	border-radius: 999px;
	padding: 10px 16px 10px 14px;
	color: rgba(43, 38, 33, 0.85);
	font-size: 12px;
	font-weight: 500;
	transition: border-color 0.3s ease;
	white-space: nowrap;
}

.lh-pill:hover {
	border-color: rgba(112, 141, 171, 0.4);
}

.lh-pill__icon {
	color: var(--lh-akzent);
	display: inline-flex;
}

.lh-pill__icon .lh-icon {
	width: 16px;
	height: 16px;
}

/* ==================================================================
   Häuser
   ================================================================== */

.lh-haeuser__scroller {
	margin-top: clamp(3.5rem, 6vw, 5rem);
}

.lh-haeuser__grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 78%;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 1rem;
	-webkit-overflow-scrolling: touch;
}

.lh-haeuser__grid > article {
	scroll-snap-align: start;
}

@media (min-width: 640px) {
	.lh-haeuser__grid {
		grid-auto-columns: 44%;
	}
}

@media (min-width: 768px) {
	.lh-haeuser__grid {
		grid-auto-flow: row;
		grid-auto-columns: auto;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		overflow-x: visible;
		gap: 1.75rem;
		padding-bottom: 0;
	}
}

@media (min-width: 1024px) {
	.lh-haeuser__grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
		gap: 2rem;
	}
}

.lh-house {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.lh-house__media {
	position: relative;
	width: 100%;
}

.lh-house__num {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(255, 253, 248, 0.9);
	backdrop-filter: blur(4px);
	color: rgba(43, 38, 33, 0.8);
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 999px;
	padding: 6px 12px;
}

.lh-house__name {
	margin: 1.5rem 0 0;
	font-size: clamp(2.2rem, 2.6vw, 2.6rem);
	line-height: 1;
	color: var(--lh-akzentdunkel);
	font-weight: 400;
}

.lh-house__facts {
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 0;
	color: rgba(43, 38, 33, 0.75);
	font-size: 13.5px;
	line-height: 1.55;
}

.lh-house__facts li {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 6px;
	font-family: var(--lh-font-sans);
	font-weight: 400;
}

.lh-house__facts .lh-dot {
	width: 4px;
	height: 4px;
}

.lh-house__micro {
	margin: 1.25rem 0 0;
	color: rgba(43, 38, 33, 0.65);
	font-size: 13px;
	line-height: 1.6;
	font-weight: 300;
	min-height: 3.6em;
}

.lh-house .lh-btn {
	margin-top: 1.5rem;
}

/* ==================================================================
   Garten & Wellness
   ================================================================== */

.lh-garten__grid {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.lh-garten__grid {
		grid-template-columns: 5fr 7fr;
		gap: 4rem;
	}
}

.lh-garten__quote {
	display: block;
	margin-top: 3rem;
	max-width: 24rem;
	font-size: clamp(1.8rem, 2.6vw, 2.4rem);
	line-height: 1.1;
	color: rgba(112, 141, 171, 0.8);
}

.lh-garten__image {
	position: relative;
}

.lh-garten__image .lh-media {
	border: 1px solid rgba(255, 253, 248, 0.08);
}

.lh-hotspot {
	position: absolute;
	transform: translate(-50%, -50%);
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
}

.lh-hotspot__ping {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -20px;
	border-radius: 50%;
	background: rgba(112, 141, 171, 0.25);
	animation: lh-ping 2.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes lh-ping {
	75%, 100% {
		transform: scale(2);
		opacity: 0;
	}
}

.lh-hotspot__dot {
	position: relative;
	display: block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--lh-akzent);
	box-shadow: 0 0 0 3px rgba(255, 253, 248, 0.9), 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s ease;
}

.lh-hotspot:hover .lh-hotspot__dot,
.lh-hotspot:focus .lh-hotspot__dot {
	transform: scale(1.25);
}

.lh-hotspot__label {
	position: absolute;
	left: 50%;
	top: -8px;
	transform: translate(-50%, -100%);
	white-space: nowrap;
	background: rgba(255, 253, 248, 0.95);
	backdrop-filter: blur(4px);
	color: var(--lh-kamin);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.26em;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 999px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	opacity: 0.85;
	transition: opacity 0.3s ease, top 0.3s ease;
}

.lh-hotspot:hover .lh-hotspot__label,
.lh-hotspot:focus .lh-hotspot__label {
	opacity: 1;
	top: -12px;
}

.lh-garten__info {
	margin-top: 1.25rem;
	display: flex;
	align-items: center;
	min-height: 64px;
	background: rgba(255, 253, 248, 0.05);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 253, 248, 0.1);
	border-radius: 16px;
	padding: 1rem 1.25rem;
	opacity: 0.5;
	transition: opacity 0.3s ease;
}

.lh-garten__info.is-active {
	opacity: 1;
}

.lh-garten__info-label {
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--lh-akzent);
	margin-right: 1rem;
	flex-shrink: 0;
}

.lh-garten__info-note {
	color: rgba(255, 253, 248, 0.75);
	font-size: 13.5px;
	line-height: 1.55;
	font-weight: 300;
}

/* ==================================================================
   Momente (Bento-Galerie)
   ================================================================== */

.lh-momente__grid {
	margin-top: clamp(3.5rem, 6vw, 5rem);
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

@media (min-width: 768px) {
	.lh-momente__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.lh-tile--2x1 { grid-column: span 2; }
	.lh-tile--1x2 { grid-row: span 2; }
}

.lh-tile {
	position: relative;
	margin: 0;
}

.lh-tile::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 20px;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(17, 23, 19, 0.65) 100%);
}

.lh-tile__caption {
	position: absolute;
	bottom: 14px;
	left: 16px;
	right: 16px;
	z-index: 1;
	color: var(--lh-warmweiss);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* ==================================================================
   Urlaub nach Gefühl
   ================================================================== */

.lh-urlaub__grid {
	margin-top: clamp(3.5rem, 6vw, 5rem);
	display: grid;
	grid-template-columns: 1fr;
	gap: 1px;
	background: rgba(43, 38, 33, 0.08);
	border: 1px solid rgba(43, 38, 33, 0.08);
	border-radius: 28px;
	overflow: hidden;
}

@media (min-width: 640px) {
	.lh-urlaub__grid {
		grid-template-columns: 1fr 1fr;
	}
}

.lh-mood {
	position: relative;
	background: var(--lh-warmweiss);
	padding: clamp(2.25rem, 4vw, 3rem);
	transition: background 0.3s ease;
	overflow: hidden;
}

.lh-mood:hover {
	background: rgba(244, 239, 232, 0.6);
}

.lh-mood__ghost {
	position: absolute;
	top: 0.75rem;
	right: 1.25rem;
	font-family: var(--lh-font-serif);
	font-style: italic;
	font-size: clamp(5rem, 8vw, 7.5rem);
	line-height: 1;
	color: rgba(43, 38, 33, 0.04);
	pointer-events: none;
	user-select: none;
}

.lh-mood__title {
	position: relative;
	margin: 0;
	font-family: var(--lh-font-serif);
	font-weight: 400;
	font-size: clamp(1.4rem, 1.8vw, 1.75rem);
	line-height: 1.15;
	color: var(--lh-kamin);
}

.lh-mood__body {
	position: relative;
	margin: 1rem 0 0;
	color: rgba(43, 38, 33, 0.65);
	font-size: 13.5px;
	line-height: 1.7;
	font-weight: 300;
	max-width: 26ch;
}

.lh-mood__foot {
	position: relative;
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(43, 38, 33, 0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.lh-mood__label {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: rgba(43, 38, 33, 0.4);
	font-weight: 600;
}

.lh-mood__rec {
	font-size: 12.5px;
	color: var(--lh-akzentdunkel);
	font-weight: 500;
}

/* ==================================================================
   Anreise
   ================================================================== */

.lh-anreise__top {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.lh-anreise__top {
		grid-template-columns: 5fr 7fr;
		gap: 4rem;
	}
}

.lh-anreise__map {
	background: rgba(255, 253, 248, 0.7);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(43, 38, 33, 0.08);
	border-radius: 28px;
	padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.lh-anreise__map-svg {
	width: 100%;
	height: auto;
	display: block;
}

.lh-anreise__routes {
	margin-top: clamp(3rem, 5vw, 4rem);
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 640px) {
	.lh-anreise__routes {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.lh-anreise__routes {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.lh-route {
	display: flex;
	flex-direction: column;
	background: var(--lh-warmweiss);
	border: 1px solid rgba(43, 38, 33, 0.08);
	border-radius: 22px;
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lh-route:hover {
	border-color: rgba(112, 141, 171, 0.4);
	box-shadow: 0 8px 32px -8px rgba(112, 141, 171, 0.18);
}

.lh-route__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.lh-route__head {
	display: flex;
	align-items: center;
	gap: 12px;
}

.lh-route__head h4 {
	margin: 0;
	font-family: var(--lh-font-sans);
	color: var(--lh-kamin);
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0;
}

.lh-route__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(112, 141, 171, 0.1);
	color: var(--lh-akzentdunkel);
	flex-shrink: 0;
}

.lh-route__body p {
	margin: 0.75rem 0 0;
	color: rgba(43, 38, 33, 0.65);
	font-size: 12.5px;
	line-height: 1.6;
	font-weight: 300;
}

/* ==================================================================
   Gastgeber
   ================================================================== */

.lh-gastgeber__card {
	position: relative;
	background: rgba(244, 239, 232, 0.6);
	border: 1px solid rgba(43, 38, 33, 0.08);
	border-radius: 36px;
	padding: clamp(1.5rem, 4vw, 4rem);
	display: grid;
	gap: 2rem;
	align-items: center;
	overflow: hidden;
}

@media (min-width: 768px) {
	.lh-gastgeber__card {
		grid-template-columns: 5fr 7fr;
		gap: 3rem;
	}
}

.lh-gastgeber__ghost {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	font-size: clamp(2.4rem, 4vw, 3.6rem);
	line-height: 1;
	color: rgba(112, 141, 171, 0.25);
	pointer-events: none;
	user-select: none;
}

.lh-gastgeber__name {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 1.5rem 0 0;
	color: rgba(43, 38, 33, 0.8);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	font-weight: 600;
}

.lh-gastgeber__name .lh-dot {
	width: 6px;
	height: 6px;
}

.lh-gastgeber__actions {
	margin-top: 2.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

/* ==================================================================
   Footer (Design-Struktur)
   ================================================================== */

.lh-footer {
	position: relative;
	background: var(--lh-dunkel);
	color: var(--lh-warmweiss);
	font-family: var(--lh-font-sans);
	overflow: hidden;
}

.lh-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.3;
	background: radial-gradient(60% 50% at 80% 0%, rgba(112, 141, 171, 0.3) 0%, rgba(17, 23, 19, 0) 60%);
}

.lh-footer__inner {
	position: relative;
	max-width: 80rem;
	margin: 0 auto;
	padding: clamp(5rem, 8vw, 7rem) 1.5rem 0;
}

@media (min-width: 768px) {
	.lh-footer__inner {
		padding-left: 3rem;
		padding-right: 3rem;
	}
}

@media (min-width: 1024px) {
	.lh-footer__inner {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}

/* CTA-Strip */

.lh-footer__cta {
	position: relative;
	display: grid;
	gap: 2.5rem;
	align-items: end;
	padding-bottom: clamp(4rem, 6vw, 5rem);
	border-bottom: 1px solid rgba(255, 253, 248, 0.1);
	overflow: hidden;
}

@media (min-width: 1024px) {
	.lh-footer__cta {
		grid-template-columns: 7fr 5fr;
	}

	.lh-footer__cta-action {
		display: flex;
		justify-content: flex-end;
	}
}

.lh-footer__ghost {
	position: absolute;
	right: -1.5rem;
	bottom: -2.5rem;
	font-size: clamp(7rem, 14vw, 14rem);
	line-height: 1;
	color: rgba(255, 253, 248, 0.035);
	pointer-events: none;
	user-select: none;
}

.lh-footer__cta-body {
	position: relative;
}

/* Spalten */

.lh-footer__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem 2rem;
	padding: clamp(3.5rem, 6vw, 5rem) 0;
}

@media (min-width: 640px) {
	.lh-footer__columns {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.lh-footer__columns {
		grid-template-columns: repeat(6, minmax(0, 1fr));
	}
}

.lh-footer__brand {
	grid-column: 1 / -1;
}

@media (min-width: 1024px) {
	.lh-footer__brand {
		grid-column: span 2;
	}
}

.lh-footer__brand img {
	max-height: 48px;
	width: auto;
	margin-bottom: 1.5rem;
}

.lh-footer__brand .lh-logo-text {
	color: var(--lh-warmweiss);
	display: inline-block;
	margin-bottom: 1.5rem;
}

.lh-footer__address {
	margin: 0;
	color: rgba(255, 253, 248, 0.55);
	font-size: 13px;
	line-height: 1.7;
	font-weight: 300;
	max-width: 20rem;
}

.lh-footer__contact {
	margin: 1rem 0 0;
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.7;
}

.lh-footer__contact a {
	color: rgba(255, 253, 248, 0.8);
	text-decoration: none;
	transition: color 0.2s ease;
}

.lh-footer__contact a:hover {
	color: var(--lh-akzent);
}

.lh-footer-widget__title {
	margin: 0 0 20px !important;
	padding: 0;
	font-family: var(--lh-font-sans);
	font-size: 10px;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.32em;
	font-weight: 600;
	color: rgba(255, 253, 248, 0.5);
}

.lh-footer__col ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lh-footer__col li {
	margin: 0 !important;
	padding: 0 !important;
	font-size: 13.5px;
	line-height: 1.5;
	font-weight: 300;
	font-family: var(--lh-font-sans);
}

.lh-footer__col a {
	color: rgba(255, 253, 248, 0.8);
	font-size: 13.5px;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

.lh-footer__col a:hover {
	color: var(--lh-akzent);
}

/* Untere Zeile */

.lh-footer__bottom {
	border-top: 1px solid rgba(255, 253, 248, 0.1);
	padding: 1.75rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	color: rgba(255, 253, 248, 0.5);
	font-size: 12px;
	font-weight: 300;
}

@media (min-width: 640px) {
	.lh-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

ul.lh-legal-menu {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

ul.lh-legal-menu li {
	margin: 0 !important;
	padding: 0 !important;
}

ul.lh-legal-menu a {
	color: rgba(255, 253, 248, 0.5);
	font-size: 12px;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

ul.lh-legal-menu a:hover {
	color: var(--lh-akzent);
}
