/* ===================================================
   Scrollable Landing Content
   =================================================== */

:root {
	--gold: #f1d09a;
	--deep-gold: #c18a51;
	--bronze: #724c29;
	--charcoal: #050505;
	--muted: rgba(248, 246, 242, 0.75);
	--card-bg: rgba(12, 10, 9, 0.85);
}

/* Normales Seiten-Scrolling – Hero scrollt mit, kein Overlap */
html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
	overflow-y: auto !important;
	/* Überschreibt das 'hidden' aus main.css */
	overscroll-behavior: none;
}

/* Wrapper wird aus fixed-Modus befreit für normales Scrollen */
#wrapper {
	position: relative !important;
	height: auto !important;
	min-height: 100vh;
}

#main {
	position: relative !important;
	height: auto !important;
	min-height: 100vh;
}

/* Mobile UND Desktop: Gleiche Animation auf allen Geräten */
#bg {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 0 !important;
	width: 6750px !important;
	height: 100% !important;
	background-image: url('/assets/images/homepage.4b82a5e2.jpg?v=10') !important;
	background-repeat: repeat-x !important;
	background-size: auto 50vh !important;
	background-position: center bottom !important;
	-moz-animation: bg 60s linear infinite !important;
	-webkit-animation: bg 60s linear infinite !important;
	-ms-animation: bg 60s linear infinite !important;
	animation: bg 60s linear infinite !important;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#overlay {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	z-index: 1 !important;
	pointer-events: none !important;
	background-image: url("/assets/css/images/overlay.svg?v=10"), linear-gradient(to bottom,
			#7D6047 0%,
			#7D6047 52%,
			rgba(125, 96, 71, 0.92) 58%,
			rgba(125, 96, 71, 0.82) 64%,
			rgba(125, 96, 71, 0.70) 70%,
			rgba(125, 96, 71, 0.56) 75%,
			rgba(125, 96, 71, 0.40) 80%,
			rgba(125, 96, 71, 0.26) 83%,
			rgba(125, 96, 71, 0.14) 84.5%,
			rgba(125, 96, 71, 0.06) 86%,
			rgba(125, 96, 71, 0.0) 88%) !important;
	background-position: center center, top left !important;
	background-repeat: no-repeat, no-repeat !important;
	background-size: cover, auto !important;
	opacity: 1 !important;
}

/* Touch Devices (Mobile & iPad): Kein background-attachment:fixed (funktioniert nicht auf iOS/iPadOS) */
@media (hover: none) and (pointer: coarse) {
	#overlay {
		background-attachment: scroll, scroll !important;
	}
}

/* Desktop with Mouse: background-attachment:fixed für besseren Parallax-Effekt */
@media (hover: hover) and (pointer: fine) {
	#overlay {
		background-attachment: fixed, fixed !important;
	}
}

#scroll-content {
	position: relative;
	background:
		radial-gradient(circle at 18% 18%, rgba(255, 227, 196, 0.28), transparent 42%),
		radial-gradient(circle at 78% 4%, rgba(255, 210, 166, 0.18), transparent 40%),
		linear-gradient(180deg,
			rgb(140, 104, 77) 0%,
			rgb(101, 72, 53) 32%,
			rgb(52, 37, 30) 100%);
	padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 5rem);
	min-height: 100vh;
	z-index: 2;

	/* Sanfter Übergang vom Hero */
	box-shadow: 0 -40px 80px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
	position: fixed;
	left: 50%;
	bottom: clamp(1.25rem, 3vh, 2.5rem);
	transform: translateX(-50%);
	z-index: 7000;
	display: inline-flex;
	text-decoration: none;
	opacity: 0.95;
}


.scroll-indicator-inner {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: clamp(40px, 10vw, 50px);
	height: clamp(40px, 10vw, 50px);
	border-radius: 50%;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(10, 22, 39, 0.48);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(6px);
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.scroll-indicator-inner i {
	font-size: clamp(0.9rem, 2.5vw, 1.1rem);
	animation: scrollChevronDrift 1.45s ease-in-out infinite;
	will-change: transform, opacity;
}

.scroll-indicator:hover .scroll-indicator-inner,
.scroll-indicator:focus-visible .scroll-indicator-inner {
	background-color: rgba(10, 22, 39, 0.58);
	border-color: rgba(255, 255, 255, 0.34);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 26px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
}

@keyframes scrollChevronDrift {
	0% {
		transform: translateY(-4px);
		opacity: 0.55;
	}

	50% {
		transform: translateY(6px);
		opacity: 1;
	}

	100% {
		transform: translateY(-4px);
		opacity: 0.55;
	}
}

/* Scroll-Indicator auf Touch-Geräten (Mobile & iPad) ausblenden */
@media (hover: none) and (pointer: coarse) {
	.scroll-indicator {
		display: none !important;
	}
}

.content-section {
	max-width: 1200px;
	margin: 0 auto clamp(5rem, 8vw, 7rem);
	padding: 0 clamp(1.5rem, 4vw, 3rem);
	position: relative;
}

.content-section:not(:last-of-type)::after {
	content: "";
	display: block;
	width: min(240px, 60%);
	height: 1px;
	margin: clamp(2.4rem, 5vw, 3.2rem) auto 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 18%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.2) 82%, rgba(255, 255, 255, 0) 100%);
	filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.25));
	grid-column: 1 / -1;
	justify-self: center;
}

/* Modernes, automatisch skalierendes Grid ohne feste Pixel-Breakpoints */
.signature-grid {
	display: grid;
	/* Intelligent skalierendes Grid: 
	   - Nutzt so viel Platz wie verfügbar
	   - Mindestens 280px, maximal 600px pro Spalte
	   - Auto-fit passt die Spaltenanzahl automatisch an */
	grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 600px), 1fr));
	/* Fluid scaling Gap: wächst mit der Viewport-Breite */
	gap: clamp(2rem, 5vw, 6rem);
	align-items: start;
	scroll-margin-top: clamp(4rem, 8vh, 6rem);
	/* Maximale Breite relativ zur Viewport-Breite */
	max-width: min(90vw, 1600px);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.signature-copy h2 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.25;
	margin-bottom: 1.25rem;
	color: #f8f6f2;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
	font-weight: 600;
}

.signature-copy .eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.4em;
	font-size: 0.85rem;
	color: rgba(244, 236, 226, 0.68);
	margin-bottom: 0.75rem;
}

.signature-copy p {
	color: rgba(245, 240, 234, 0.9);
}

.signature-stats {
	list-style: none;
	margin: clamp(1.5rem, 4vw, 2.5rem) 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1.5rem;
}

.signature-stats li {
	background: linear-gradient(160deg, rgba(26, 20, 17, 0.72), rgba(34, 26, 22, 0.62));
	border: 1px solid rgba(216, 188, 121, 0.8);
	/* Goldener Rahmen bleibt */
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	/* Dunkler Schatten */
	backdrop-filter: blur(8px);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.signature-stats li:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
	/* Dunkler Schatten auch hier */
	border-color: rgba(216, 188, 121, 1.0);
}

.signature-stats .stat-value {
	display: block;
	font-size: 2.2rem;
	font-weight: 700;
	color: #f6ebdb;
	letter-spacing: -0.015em;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
	letter-spacing: -0.02em;
}

.signature-stats .stat-label {
	display: block;
	margin-top: 0.4rem;
	color: rgba(242, 236, 230, 0.82);
	font-size: 0.95rem;
}

.signature-panels {
	display: grid;
	gap: 1.5rem;
}

.material-card {
	background: rgba(241, 208, 154, 0.06);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
	border: 1px solid rgba(216, 188, 121, 0.5);
	/* Goldener Rahmen */
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 48px rgba(241, 208, 154, 0.15);
}

.material-card.alt {
	background: rgba(193, 138, 81, 0.08);
	border-color: rgba(193, 138, 81, 0.25);
}

.material-card h3 {
	margin-top: 0;
	font-size: 1.4rem;
	color: #f7f2ea;
}

.material-card ul {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: grid;
	gap: 0.6rem;
}

.material-card li {
	color: rgba(244, 239, 232, 0.9);
	font-size: 0.95rem;
	position: relative;
	padding-left: 1.3rem;
}

.material-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f4d5a8;
}

.section-header {
	text-align: center;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header .eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.4em;
	font-size: 0.85rem;
	color: rgba(244, 236, 226, 0.68);
	margin-bottom: 0.75rem;
}

.section-header h2 {
	font-size: clamp(2.2rem, 5vw, 3.2rem);
	margin: 0.5rem 0 1rem;
	color: #f8f5f0;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.20);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.section-header .intro {
	max-width: clamp(320px, 90%, 640px);
	margin: 0.75rem auto 0;
	color: rgba(244, 239, 233, 0.9);
}

.services-grid {
	display: grid;
	/* Automatische Anpassung der Spalten ohne feste Breakpoints */
	grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 30vw, 350px), 1fr));
	gap: clamp(1.35rem, 3vw, 2.8rem);
	max-width: min(90vw, 1200px);
	margin: 0 auto;
}

.service-card-link {
	text-decoration: none;
	color: inherit;
	display: block;
	cursor: pointer;
	height: 100%;
}

.service-card-link:hover,
.service-card-link:focus {
	text-decoration: none;
	color: inherit;
}

.service-card-link:hover .service-card {
	--card-raise: -10px;
	--card-shadow-shift: 10px;
	border-color: rgba(241, 208, 154, 0.4);
	box-shadow: 0 28px 55px rgba(0, 0, 0, 0.55);
}

.service-card {
	--card-raise: 0px;
	--card-shadow-shift: 0px;
	--service-image-scale: 1;
	--service-stagger: 0s;
	background: rgba(44, 34, 28, 0.95);
	border-radius: 20px;
	border: 1px solid rgba(241, 208, 154, 0.2);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	transform-origin: center;
	transform-style: preserve-3d;
	backface-visibility: hidden;
	transform: perspective(1100px) translate3d(0, var(--card-raise), 0);
	transition: transform 360ms cubic-bezier(.23, 1, .32, 1), box-shadow 360ms cubic-bezier(.23, 1, .32, 1), border-color 360ms ease;
}


.service-card::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 10px;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(209, 145, 95, 0.98), rgba(114, 76, 41, 0.95));
	opacity: 0.85;
	transform: translateY(var(--card-shadow-shift));
	transition: opacity 360ms ease, transform 360ms ease;
}

.service-card .service-media {
	flex: none;
	height: 240px;
	width: 100%;
	background: rgba(8, 6, 5, 0.92);
	position: relative;
	border-radius: 16px 16px 0 0;
	overflow: hidden;
	isolation: isolate;
}

.service-card .service-media::before,
.service-card .service-media::after,
.service-card::after {
	will-change: transform, opacity;
}

.service-card .service-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transform: scale(var(--service-image-scale));
	transition: transform 380ms cubic-bezier(.23, 1, .32, 1), filter 380ms ease;
}

.service-card .service-media::before,
.service-card .service-media::after {
	content: '';
	position: absolute;
	inset: 0;
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
}


.service-card .service-media::before {
	background: linear-gradient(180deg, rgba(6, 5, 4, 0) 25%, rgba(6, 5, 4, 0.55) 100%);
	opacity: 0.5;
}


.service-card .service-media::after {
	background: radial-gradient(circle at 20% 20%, rgba(255, 236, 210, 0.35) 0%, transparent 45%),
		radial-gradient(circle at 80% 0%, rgba(221, 162, 111, 0.25) 0%, transparent 40%),
		linear-gradient(135deg, rgba(139, 99, 56, 0.25), rgba(62, 36, 22, 0.2));
	opacity: 0.25;
	mix-blend-mode: screen;
}

.service-card .service-copy {
	padding: 1.2rem 1.4rem 2.2rem;
	background: linear-gradient(180deg, rgba(30, 22, 18, 0.98), rgba(21, 15, 12, 0.98));
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card h3 {
	margin: 0;
	font-size: 1.18rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #fef8ec;
}


.service-card h3::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	margin-top: 0.5rem;
	background: rgba(209, 145, 95, 0.9);
	transition: transform 360ms ease;
}


.service-card p {
	margin: 0.85rem 0 0;
	color: rgba(248, 246, 242, 0.78);
	font-size: 0.95rem;
	line-height: 1.5;
}

@media (hover:hover) and (pointer:fine) {
	.service-card:hover {
		box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
		--card-raise: -6px;
		border-color: rgba(241, 208, 154, 0.32);
	}

	.service-card:hover::after {
		opacity: 1;
		--card-shadow-shift: -3px;
	}

	.service-card:hover .service-media img {
		--service-image-scale: 1.045;
		filter: saturate(1.08);
	}

	.service-card:hover .service-media::before {
		opacity: 0.7;
		transform: translateY(-12px);
	}

	.service-card:hover .service-media::after {
		opacity: 0.4;
	}

	.service-card:hover h3::after {
		transform: translateX(6px);
	}
}

.services-grid .service-card {
	will-change: transform, opacity;
}

.services-grid .service-card:nth-child(1) {
	--service-stagger: 0s;
}

.services-grid .service-card:nth-child(2) {
	--service-stagger: 0.08s;
}

.services-grid .service-card:nth-child(3) {
	--service-stagger: 0.16s;
}

.services-grid .service-card:nth-child(4) {
	--service-stagger: 0.24s;
}

.services-grid .service-card:nth-child(5) {
	--service-stagger: 0.32s;
}

.services-grid .service-card:nth-child(6) {
	--service-stagger: 0.4s;
}

.services-grid .service-card[data-animate] {
	opacity: 0;
	transform: translateY(36px) scale(0.96);
}

.services-grid .service-card.is-visible {
	opacity: 1;
	animation: serviceCardIntro 720ms cubic-bezier(.22, .82, .22, 1) forwards;
	animation-delay: var(--service-stagger);
}

.services-grid .service-card .service-media img {
	transform-origin: center;
}

.services-grid .service-card.is-visible .service-media img {
	animation: serviceImageIntro 760ms cubic-bezier(.22, .82, .22, 1) forwards;
	animation-delay: calc(var(--service-stagger) + 0.05s);
}

.services-grid .service-card.is-visible .service-media::after {
	animation: serviceGlowIntro 900ms ease forwards;
	animation-delay: calc(var(--service-stagger) + 0.05s);
}

@keyframes serviceCardIntro {
	0% {
		opacity: 0;
		transform: translateY(32px) scale(0.94);
	}

	100% {
		opacity: 1;
		transform: translateY(var(--card-raise)) scale(1);
	}
}

@keyframes serviceImageIntro {
	0% {
		transform: scale(1.06) translateY(12px);
	}

	100% {
		transform: scale(var(--service-image-scale)) translateZ(0);
	}
}

@keyframes serviceGlowIntro {
	0% {
		opacity: 0.1;
		filter: blur(10px);
	}

	55% {
		opacity: 0.45;
		filter: blur(0);
	}

	100% {
		opacity: 0.25;
		filter: blur(0);
	}
}

.section-cta {
	margin-top: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.brand-strip {
	text-align: center;
}

.brand-logos {
	display: grid;
	/* Automatische Anpassung: 3 Spalten auf Desktop, weniger auf kleineren Geräten */
	grid-template-columns: repeat(auto-fit, minmax(clamp(160px, 25vw, 240px), 1fr));
	gap: clamp(1rem, 2.4vw, 1.4rem);
	align-items: center;
	justify-items: center;
	max-width: min(90vw, 800px);
	margin: 2.2rem auto 0;
}

.brand-logos span {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	border-radius: 18px;
	padding: clamp(0.75rem, 2vw, 1.15rem);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, filter 0.2s ease;
	width: 100%;
	max-width: 230px;
	height: clamp(104px, 10vw, 132px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	/* Sicherstellen, dass nichts rausragt */
}

.brand-logos span:hover {
	transform: translateY(-3px) scale(1.01);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
	border-color: rgba(255, 255, 255, 0.24);
	background-color: rgba(255, 255, 255, 0.1);
	filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));
}

.brand-logos img {
	max-height: clamp(50px, 6vw, 76px);
	/* Etwas reduziert für Mobile */
	height: auto;
	max-width: 90%;
	/* Puffer zum Rand erzwingen */
	width: auto;
	object-fit: contain;
	/* Verhältnis bewahren */
	display: block;
	filter: none;
	opacity: 1;
	transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.brand-logos span:hover img {
	filter: brightness(1.06);
	opacity: 1;
	transform: scale(1.02);
}

.brand-strip .section-cta {
	margin-top: clamp(1.6rem, 3vw, 2.4rem);
}



.contact-highlight {
	background: linear-gradient(135deg, rgba(193, 138, 81, 0.25), rgba(114, 76, 41, 0.15));
	border-radius: 28px;
	padding: clamp(2.5rem, 5vw, 4rem);
	border: 1px solid rgba(241, 208, 154, 0.35);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(12px);
}

.contact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
}

.contact-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.contact-actions .btn {
	min-width: 200px;
	box-shadow: none;
}

.contact-actions .btn:hover {
	box-shadow: none;
}

.scroll-spacer {
	height: 0;
	width: 100%;
	display: none;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, #c18a51, #8b6338);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 999px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-size: 0.95rem;
	box-shadow: 0 8px 24px rgba(193, 138, 81, 0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-decoration: none;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(193, 138, 81, 0.5);
}

.btn.ghost {
	background: transparent;
	border: 2px solid rgba(241, 208, 154, 0.5);
	box-shadow: none;
}

.btn.ghost:hover {
	background: rgba(241, 208, 154, 0.1);
	border-color: rgba(241, 208, 154, 0.7);
	box-shadow: 0 8px 20px rgba(241, 208, 154, 0.2);
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.gallery-card {
	background: rgba(12, 10, 9, 0.7);
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(241, 208, 154, 0.15);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(241, 208, 154, 0.15);
}

.gallery-card figure {
	height: 240px;
	margin: 0;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gallery-meta {
	padding: 1.5rem;
}

.gallery-meta p {
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.75rem;
	margin: 0 0 0.5rem;
	color: rgba(241, 208, 154, 0.7);
}

.gallery-meta h3 {
	margin: 0;
}

.ghost-link {
	margin: auto 1.5rem 1.5rem;
	align-self: flex-start;
	color: #f1d09a;
	border-bottom: 1px solid rgba(241, 208, 154, 0.4);
	padding-bottom: 0.2rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.85rem;
}

[data-animate] {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-animate] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.service-card,
	.service-card .service-media img {
		transform: none !important;
	}

	.services-grid .service-card {
		animation: none !important;
	}

	.services-grid .service-card .service-media img,
	.services-grid .service-card .service-media::after {
		animation: none !important;
	}
}

@media (max-width: 768px) {
	.contact-grid {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-actions {
		justify-content: flex-start;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.service-card img {
		height: 150px;
	}

	.gallery-card figure {
		height: 200px;
	}
}

.page-footer {
	position: relative;
	background: rgb(52, 37, 30);
	padding: 1rem 1rem 0.5rem;
	text-align: center;
	color: rgba(248, 246, 242, 0.7);
	font-size: 0.6rem;
	border-top: none;
	z-index: 2;
}

.page-footer a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(248, 246, 242, 0.3);
	padding-bottom: 0.15rem;
}

.page-footer .footer-inner {
	display: inline-flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	justify-content: center;
}

/* iPad Landscape: Nutze mehr horizontalen Platz */
@media (hover: none) and (pointer: coarse) and (orientation: landscape) {

	.content-section,
	#scroll-content .content-section {
		max-width: 1400px !important;
		width: 92% !important;
		padding: 0 clamp(3rem, 7vw, 5rem) !important;
	}

	.signature-grid {
		gap: clamp(3.5rem, 7vw, 6rem) !important;
		width: 100%;
	}

	.signature-copy {
		max-width: 100%;
	}

	.signature-panels {
		max-width: 100%;
	}
}


/* Moderne, fluid scaling Lösung: Nur bei sehr großen Viewports die maximale Breite anpassen */
@media (min-width: 100rem) {
	.content-section {
		max-width: clamp(1400px, 85vw, 2000px);
	}
}