/**
 * @package     codeDESIGN.Static
 * @subpackage  DerKarosserieprofi.OnePage
 * @version     1.0.0
 * @date        2026-08
 * @file        /assets/css/site.css
 *
 * @copyright   Copyright (C) 2026 Milos Mandic | codeDESIGN
 * @license     Proprietary / All rights reserved.
 */
/* codeDESIGN - site.css */
@charset "utf-8";
@font-face {
	font-family: 'Oswald';
	src: url('../../media/fonts/oswald/oswald_500.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Oswald';
	src: url('../../media/fonts/oswald/oswald_600.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Oswald';
	src: url('../../media/fonts/oswald/oswald_700.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../../media/fonts/inter/inter_400.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../../media/fonts/inter/inter_500.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../../media/fonts/inter/inter_600.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Inter';
	src: url('../../media/fonts/inter/inter_700.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Allura';
	src: url('../../media/fonts/allura/allura_400.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
:root {
	--kp-black: #050505;
	--kp-black-soft: #0c0c0c;
	--kp-charcoal: #141414;
	--kp-charcoal-light: #1d1d1d;
	--kp-gold: #d5ad3d;
	--kp-gold-light: #e7c65d;
	--kp-gold-dark: #9f7920;
	--kp-white: #ffffff;
	--kp-text: #f2f2f2;
	--kp-text-muted: #b9b9b9;
	--kp-border-gold: rgba(213, 173, 61, 0.45);
	--kp-border-soft: rgba(255, 255, 255, 0.12);
	--container-width: 1480px;
	--container-padding: 32px;
	color-scheme: dark;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--kp-black);
	color: var(--kp-text);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}
body.is_locked {
	overflow: hidden;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button,
a {
	-webkit-tap-highlight-color: transparent;
}
:focus-visible {
	outline: 2px solid var(--kp-gold-light);
	outline-offset: 4px;
}
.skip_link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 2000;
	padding: 10px 14px;
	background: var(--kp-gold);
	color: var(--kp-black);
	font-weight: 700;
	transform: translateY(-140%);
}
.skip_link:focus {
	transform: translateY(0);
}
.container {
	width: min(100% - 64px, var(--container-width));
	margin-inline: auto;
}
.site_header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(5, 5, 5, 0.94);
	border-bottom: 1px solid rgba(213, 173, 61, 0.18);
	backdrop-filter: blur(12px);
}
.site_header_content {
	display: grid;
	grid-template-columns: 240px 1fr auto auto;
	align-items: center;
	min-height: 96px;
	gap: 28px;
}
.brand img {
	width: 220px;
	height: 84px;
	object-fit: contain;
	object-position: left center;
}
.desktop_nav {
	display: flex;
	justify-content: center;
	gap: 34px;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.desktop_nav a {
	position: relative;
	padding-block: 34px;
	color: var(--kp-text);
}
.desktop_nav a::after {
	position: absolute;
	right: 0;
	bottom: 25px;
	left: 0;
	height: 2px;
	content: '';
	background: var(--kp-gold);
	opacity: 0;
	transform: scaleX(0.45);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.desktop_nav a:hover,
.desktop_nav a.is_active {
	color: var(--kp-gold-light);
}
.desktop_nav a:hover::after,
.desktop_nav a.is_active::after {
	opacity: 1;
	transform: scaleX(1);
}
.header_phone {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	gap: 10px;
	border: 1px solid var(--kp-gold);
	color: var(--kp-gold-light);
	font-weight: 700;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.header_phone img,
.button img,
.trust_item img,
.benefit_item img,
.service_card_content > img {
	filter: brightness(0) saturate(100%) invert(70%) sepia(58%) saturate(487%) hue-rotate(4deg) brightness(94%) contrast(92%);
}
.header_phone:hover {
	background: var(--kp-gold);
	color: #080808;
	transform: translateY(-2px);
}
.mobile_menu_toggle {
	display: none;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 1px solid var(--kp-border-gold);
	background: transparent;
	color: var(--kp-white);
}
.mobile_menu_toggle span {
	display: block;
	width: 21px;
	height: 2px;
	margin: 5px auto;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile_menu_toggle[aria-expanded='true'] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.mobile_menu_toggle[aria-expanded='true'] span:nth-child(2) {
	opacity: 0;
}
.mobile_menu_toggle[aria-expanded='true'] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
.mobile_nav {
	position: fixed;
	inset: 96px 0 auto 0;
	z-index: 999;
	display: grid;
	padding: 20px 24px 28px;
	background: rgba(5, 5, 5, 0.98);
	border-bottom: 1px solid var(--kp-border-gold);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.mobile_nav a {
	padding: 16px 0;
	border-bottom: 1px solid rgba(213, 173, 61, 0.22);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
}
.mobile_phone {
	margin-top: 18px;
	padding: 16px 18px !important;
	background: var(--kp-gold);
	color: #080808;
	text-align: center;
}
.hero_section {
	position: relative;
	background: var(--kp-black);
	border-bottom: 1px solid rgba(213, 173, 61, 0.2);
}
.hero_swiper {
	min-height: 720px;
	height: min(82vh, 860px);
}
.hero_slide {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 720px;
	height: min(82vh, 860px);
	overflow: hidden;
	background: 		linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 40%, rgba(0, 0, 0, 0.12) 75%), 		linear-gradient(135deg, #060606 0%, #151515 56%, #2b2515 100%);
}
.hero_slide::before {
	position: absolute;
	inset: 0;
	content: '';
	background-image: var(--hero_image);
	background-position: center right;
	background-size: cover;
	opacity: 0.82;
}
.hero_slide::after {
	position: absolute;
	inset: 0;
	content: '';
	background: 		radial-gradient(circle at 72% 46%, rgba(213, 173, 61, 0.12), transparent 32%), 		linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}
.hero_content {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin-left: max(32px, calc((100vw - var(--container-width)) / 2));
}
.eyebrow {
	margin: 0 0 12px;
	color: var(--kp-gold-light);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
h1,
h2,
h3 {
	margin: 0;
	font-family: 'Oswald', Arial, sans-serif;
	text-transform: uppercase;
}
h1 {
	max-width: 760px;
	font-size: clamp(3.5rem, 5vw, 6.5rem);
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: 0.01em;
}
.hero_slide h2 {
	max-width: 760px;
	font-size: clamp(3.5rem, 5vw, 6.5rem);
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: 0.01em;
}
h1 span,
.hero_slide h2 span,
.section_intro h2 span,
.about_content h2 span {
	color: var(--kp-gold-light);
}
.hero_lead {
	position: relative;
	max-width: 600px;
	margin: 34px 0 0;
	color: var(--kp-text);
	font-size: clamp(1rem, 1.1vw, 1.22rem);
	line-height: 1.7;
}
.hero_lead::before {
	position: absolute;
	top: -20px;
	left: 0;
	width: 72px;
	height: 4px;
	content: '';
	background: var(--kp-gold);
}
.hero_actions,
.contact_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	margin-top: 30px;
}
.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	min-height: 54px;
	padding: 0 28px;
	gap: 12px;
	border: 1px solid var(--kp-gold);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.button:hover {
	transform: translateY(-2px);
}
.button_primary {
	background: linear-gradient(135deg, var(--kp-gold-light), var(--kp-gold));
	color: #080808;
	border-color: var(--kp-gold-light);
}
.button_secondary {
	background: transparent;
	color: var(--kp-white);
}
.button_secondary:hover {
	background: var(--kp-gold);
	color: #080808;
}
.hero_swiper > .swiper-pagination {
	right: max(32px, calc((100vw - var(--container-width)) / 2)) !important;
	bottom: 36px !important;
	left: auto !important;
	z-index: 6;
	display: inline-flex;
	width: auto !important;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	transform: none !important;
}
.hero_swiper > .swiper-pagination .swiper-pagination-bullet {
	width: 34px;
	height: 3px;
	margin: 0 !important;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.45);
	opacity: 1;
}
.hero_swiper > .swiper-pagination .swiper-pagination-bullet-active {
	background: var(--kp-gold);
}
.trust_row {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: -96px;
	padding-bottom: 34px;
}
.trust_item {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	gap: 14px;
	min-height: 92px;
	padding: 20px;
	background: linear-gradient(135deg, rgba(20, 20, 20, 0.94), rgba(8, 8, 8, 0.9));
	border: 1px solid rgba(213, 173, 61, 0.24);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}
.trust_item span,
.benefit_item span {
	font-weight: 700;
	line-height: 1.35;
}
.section {
	padding-block: 100px;
}
.services_section {
	background: 		linear-gradient(180deg, rgba(213, 173, 61, 0.05), transparent 18%), 		linear-gradient(135deg, var(--kp-charcoal) 0%, var(--kp-black) 68%);
}
.section_intro {
	max-width: 720px;
	margin-bottom: 34px;
}
.section_intro_center {
	margin-inline: auto;
	text-align: center;
}
.section_intro h2,
.about_content h2,
.references_copy h2,
.contact_cta h2 {
	font-size: clamp(2.2rem, 3vw, 4rem);
	line-height: 1;
	font-weight: 600;
}
.section_intro p:not(.eyebrow),
.references_copy p,
.about_content p:not(.eyebrow):not(.signature) {
	color: var(--kp-text-muted);
}
.service_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.service_card {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	border: 1px solid var(--kp-border-soft);
	background: 		linear-gradient(135deg, #111111, #050505);
}
.service_card::after {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.44) 58%, rgba(0, 0, 0, 0.08));
}
.service_image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.72;
	transition: transform 0.35s ease;
}
.service_card:hover .service_image {
	transform: scale(1.04);
}
.service_card_content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	min-height: 280px;
	padding: 28px;
}
.service_card h3 {
	margin-top: 18px;
	font-size: clamp(1.35rem, 1.6vw, 2rem);
	line-height: 1.1;
	font-weight: 600;
}
.service_card p {
	max-width: 360px;
	margin: 14px 0 0;
	color: var(--kp-text);
	font-size: 0.95rem;
	line-height: 1.55;
}
.section_center_action {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}
.about_section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
	border-top: 1px solid rgba(213, 173, 61, 0.2);
	border-bottom: 1px solid rgba(213, 173, 61, 0.2);
	background: var(--kp-black-soft);
}
.about_media {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	background: linear-gradient(135deg, #111111, #050505);
}
.about_media::after {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(90deg, transparent, rgba(5, 5, 5, 0.25));
}
.about_media img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
}
.about_content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 690px;
	padding: 72px max(32px, calc((100vw - var(--container-width)) / 2)) 72px 64px;
}
.signature {
	margin: 18px 0 24px;
	color: var(--kp-gold-light);
	font-family: 'Allura', cursive;
	font-size: clamp(1.9rem, 2vw, 2.7rem);
	line-height: 1.1;
}
.benefits_section {
	background: 		linear-gradient(180deg, rgba(213, 173, 61, 0.08), transparent 44%), 		var(--kp-black);
}
.benefit_grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--kp-border-gold);
	border-bottom: 1px solid var(--kp-border-gold);
}
.benefit_item {
	display: grid;
	place-items: center;
	min-height: 150px;
	padding: 24px 18px;
	text-align: center;
	border-right: 1px solid rgba(213, 173, 61, 0.24);
}
.benefit_item:last-child {
	border-right: 0;
}
.benefit_item span {
	margin-top: 12px;
}
.partners_section {
	padding-block: 42px;
	background: #101010;
	border-top: 1px solid rgba(213, 173, 61, 0.18);
	border-bottom: 1px solid rgba(213, 173, 61, 0.18);
}
.partner_list {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	align-items: center;
	gap: 22px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}
.partner_list li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 78px;
	color: rgba(255, 255, 255, 0.72);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.4rem, 1.7vw, 2.2rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}
.references_section {
	padding-block: 74px;
	background: linear-gradient(135deg, #050505, #141414);
	border-bottom: 1px solid rgba(213, 173, 61, 0.24);
}
.references_layout {
	display: grid;
	grid-template-columns: 390px 1fr;
	align-items: center;
	gap: 40px;
}
.reference_gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}
.reference_gallery img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, #151515, #050505);
}
.contact_cta {
	padding-block: 86px;
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.82)), 		linear-gradient(135deg, #151515, #2a220f);
	border-bottom: 1px solid rgba(213, 173, 61, 0.25);
}
.contact_cta_content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
}
.contact_actions {
	justify-content: flex-end;
	margin-top: 0;
}
.site_footer {
	padding-top: 64px;
	background: #080808;
}
.footer_grid {
	display: grid;
	grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
	gap: 48px;
	padding-bottom: 46px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer_grid h2 {
	margin-bottom: 18px;
	color: var(--kp-gold-light);
	font-family: 'Inter', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.footer_grid a {
	display: block;
	color: var(--kp-text-muted);
	font-size: 0.95rem;
}
.footer_grid a:hover {
	color: var(--kp-gold-light);
}
.footer_brand img {
	width: 250px;
	height: 92px;
	object-fit: contain;
	object-position: left center;
}
address {
	color: var(--kp-text-muted);
	font-style: normal;
}
.footer_note {
	color: var(--kp-text-muted);
	font-size: 0.875rem;
}
.footer_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-block: 22px;
	color: var(--kp-text-muted);
	font-size: 0.875rem;
}
.footer_bottom div {
	display: flex;
	gap: 24px;
}
.is_reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.is_reveal.is_visible {
	opacity: 1;
	transform: translateY(0);
}
@media (max-width: 1399px) {
	.site_header_content {
		grid-template-columns: 210px 1fr auto auto;
		gap: 20px;
	}
	.desktop_nav {
		gap: 22px;
	}
}
@media (max-width: 1199px) {
	.desktop_nav,
	.header_phone {
		display: none;
	}
	.site_header_content {
		grid-template-columns: 1fr auto;
		min-height: 84px;
	}
	.mobile_menu_toggle {
		display: block;
	}
	.mobile_nav {
		inset: 84px 0 auto 0;
	}
	.hero_swiper,
	.hero_slide {
		min-height: 680px;
	}
	.trust_row {
		grid-template-columns: repeat(2, 1fr);
		margin-top: -70px;
	}
	.service_grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.benefit_grid,
	.partner_list {
		grid-template-columns: repeat(3, 1fr);
	}
	.benefit_item:nth-child(3) {
		border-right: 0;
	}
	.references_layout {
		grid-template-columns: 1fr;
	}
	.contact_cta_content {
		align-items: flex-start;
		flex-direction: column;
	}
}
@media (max-width: 991px) {
	.section {
		padding-block: 72px;
	}
	.about_section {
		grid-template-columns: 1fr;
	}
	.about_content {
		max-width: none;
		padding: 64px 32px;
	}
	.footer_grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
	.container {
		width: min(100% - 40px, var(--container-width));
	}
	.brand img {
		width: 176px;
		height: 68px;
	}
	.hero_swiper,
	.hero_slide {
		min-height: 640px;
		height: 76vh;
	}
	.hero_content {
		margin-left: 20px;
	}
	h1,
	.hero_slide h2 {
		font-size: clamp(2.8rem, 13vw, 4.2rem);
	}
	.hero_actions,
	.contact_actions {
		display: grid;
		width: 100%;
	}
	.button {
		width: 100%;
		min-width: 0;
	}
	.trust_row,
	.service_grid,
	.benefit_grid,
	.partner_list,
	.reference_gallery,
	.footer_grid {
		grid-template-columns: 1fr;
	}
	.trust_row {
		margin-top: 0;
		padding-top: 24px;
	}
	.benefit_item {
		border-right: 0;
		border-bottom: 1px solid rgba(213, 173, 61, 0.24);
	}
	.benefit_item:last-child {
		border-bottom: 0;
	}
	.footer_bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}
@media (max-width: 575px) {
	.section {
		padding-block: 56px;
	}
	.site_header_content {
		min-height: 76px;
	}
	.mobile_nav {
		inset: 76px 0 auto 0;
	}
	.hero_swiper,
	.hero_slide {
		min-height: 590px;
	}
	.service_card,
	.service_card_content {
		min-height: 250px;
	}
}
@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
/* Pending photography fallback polish */
.hero_slide::before {
	background-image: 		var(--hero_image), 		radial-gradient(ellipse at 78% 48%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 28%, transparent 48%), 		linear-gradient(115deg, transparent 0 48%, rgba(213, 173, 61, 0.16) 48.4% 49%, transparent 49.4%), 		linear-gradient(145deg, #080808 0%, #181818 58%, #30260f 100%);
	background-position: center right, center right, center right, center right;
	background-size: cover, cover, cover, cover;
}
.service_card::before,
.reference_gallery img::before,
.about_media::before {
	position: absolute;
	inset: 0;
	content: '';
	background: 		radial-gradient(circle at 78% 24%, rgba(213, 173, 61, 0.16), transparent 28%), 		linear-gradient(120deg, rgba(255, 255, 255, 0.09), transparent 32%), 		linear-gradient(145deg, #101010, #050505 66%, #221b0c);
}
.service_card_content {
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}
.service_card_content > img {
	width: 58px;
	height: 58px;
}
.service_card h3,
.references_copy h2,
.about_content h2,
.contact_cta h2 {
	text-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}
.section_intro h2::after,
.references_copy h2::after,
.about_content h2::after {
	display: block;
	width: 74px;
	height: 3px;
	margin-top: 18px;
	content: '';
	background: var(--kp_gold_line, var(--kp-gold));
}
.partner_list li {
	min-height: 90px;
	filter: grayscale(1);
}
.reference_gallery img.is_missing_asset {
	display: block;
	opacity: 1;
	background: 		radial-gradient(circle at 70% 30%, rgba(213, 173, 61, 0.14), transparent 30%), 		linear-gradient(135deg, #171717, #050505 70%);
}
.about_media img.is_missing_asset {
	opacity: 0;
}
.about_media {
	background: 		radial-gradient(ellipse at 42% 38%, rgba(255, 255, 255, 0.12), transparent 26%), 		radial-gradient(circle at 35% 62%, rgba(213, 173, 61, 0.16), transparent 18%), 		linear-gradient(135deg, #161616, #050505 68%, #251d0b);
}
.site_footer {
	background: 		linear-gradient(180deg, rgba(213, 173, 61, 0.06), transparent 30%), 		#080808;
}
/* Navigation hardening */
[hidden] {
	display: none !important;
}
@media (min-width: 1200px) {
	.mobile_menu_toggle,
	.mobile_nav,
	.mobile_nav.is_open {
		display: none !important;
	}
	body.is_locked {
		overflow: auto;
	}
}
@media (max-width: 1199px) {
	.mobile_nav.is_open {
		display: grid;
	}
}
/* Clean one-page anchor scrolling */
[id] {
	scroll-margin-top: 116px;
}
@media (max-width: 1199px) {
	[id] {
		scroll-margin-top: 98px;
	}
}
@media (max-width: 575px) {
	[id] {
		scroll-margin-top: 88px;
	}
}
/* Landingpage responsive image layer */
.hero_media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, #060606 0%, #151515 56%, #2b2515 100%);
}
.hero_media picture,
.hero_media img,
.service_card picture,
.about_media picture,
.reference_gallery picture {
	display: block;
	width: 100%;
	height: 100%;
}
.hero_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
	opacity: 0.82;
}
.hero_slide::before {
	display: none;
}
.hero_slide::after {
	z-index: 1;
	pointer-events: none;
}
.service_card picture {
	position: absolute;
	inset: 0;
}
.about_image {
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
}
.reference_image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, #151515, #050505);
}
/* Mobile headline fit hardening */
@media (max-width: 575px) {
	h1,
	.hero_slide h2 {
		font-size: clamp(2.15rem, 10.5vw, 2.75rem);
		line-height: 1.04;
	}
	.hero_content {
		max-width: calc(100vw - 40px);
	}
}
/* Final screendesign alignment */
.partners_section {
	padding-block: 28px 34px;
	background: linear-gradient(180deg, #111111, #090909);
}
.partner_list {
	gap: 0;
	margin-top: 12px;
	border-top: 1px solid rgba(213, 173, 61, 0.24);
	border-bottom: 1px solid rgba(213, 173, 61, 0.24);
}
.partner_list li {
	min-height: 72px;
	border: 0;
	border-right: 1px solid rgba(213, 173, 61, 0.2);
	background: transparent;
	color: rgba(255, 255, 255, 0.66);
	filter: grayscale(1);
}
.partner_list li:last-child {
	border-right: 0;
}
.references_section {
	padding-block: 58px;
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(18, 18, 18, 0.92)), 		#090909;
}
.references_layout {
	grid-template-columns: minmax(300px, 420px) 1fr;
	gap: 34px;
}
.reference_gallery {
	gap: 12px;
}
.reference_gallery picture {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(213, 173, 61, 0.24);
	background: #080808;
}
.reference_gallery picture::after {
	position: absolute;
	inset: 0;
	content: '';
	background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.42));
	pointer-events: none;
}
.reference_image {
	border: 0;
	transition: transform 0.35s ease, opacity 0.35s ease;
}
.reference_gallery picture:hover .reference_image {
	transform: scale(1.04);
	opacity: 0.9;
}
@media (min-width: 1200px) {
	.hero_swiper,
	.hero_slide {
		min-height: 700px;
		height: min(78vh, 820px);
	}
	.services_section {
		padding-top: 78px;
	}
}
@media (max-width: 767px) {
	.references_section {
		padding-block: 56px;
	}
	.reference_gallery {
		grid-template-columns: 1fr 1fr;
	}
	.partner_list li {
		border-right: 0;
		border-bottom: 1px solid rgba(213, 173, 61, 0.18);
	}
	.partner_list li:last-child {
		border-bottom: 0;
	}
}
@media (max-width: 430px) {
	.reference_gallery {
		grid-template-columns: 1fr;
	}
}
/* Mobile about image crop */
@media (max-width: 767px) {
	.about_media,
	.about_media img,
	.about_image {
		min-height: 360px;
	}
	.about_image {
		object-position: center center;
	}
}
@media (max-width: 430px) {
	.about_media,
	.about_media img,
	.about_image {
		min-height: 320px;
	}
}
/* About media stacking fix */
.about_media picture {
	position: relative;
	z-index: 1;
}
.about_media::after {
	z-index: 2;
	pointer-events: none;
}
/* Cookie consent and fixed navigation buttons */
.cookie_consent {
	position: fixed;
	z-index: 80;
	right: 32px;
	bottom: 32px;
	left: 132px;
	max-width: 1040px;
	border: 1px solid var(--kp-border-gold);
	background: linear-gradient(135deg, rgba(22, 22, 22, 0.98), rgba(5, 5, 5, 0.98)), var(--kp-black);
	max-height: calc(100dvh - 64px);
	overflow: auto;
	box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
	overscroll-behavior: contain;
}
.cookie_consent[hidden] {
	display: none;
}
.cookie_consent_layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.2fr);
	gap: 34px;
	padding: 34px;
}
.cookie_consent_content h2 {
	margin: 0 0 14px;
	color: var(--kp-white);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(2rem, 3vw, 3.25rem);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}
.cookie_consent_content p:not(.eyebrow) {
	margin: 0;
	color: var(--kp-text-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}
.cookie_consent_form {
	display: grid;
	gap: 12px;
}
.cookie_option {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 20px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cookie_option:first-child {
	border-top: 0;
}
.cookie_option strong {
	display: block;
	margin-bottom: 4px;
	color: var(--kp-text);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	text-transform: uppercase;
}
.cookie_option span {
	display: block;
	color: var(--kp-text-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}
.cookie_switch {
	min-width: 122px;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	cursor: pointer;
}
.cookie_switch input {
	width: 22px;
	height: 22px;
	margin: 0;
	accent-color: var(--kp-gold);
}
.cookie_switch input:disabled {
	cursor: not-allowed;
}
.cookie_switch span {
	color: var(--kp-gold-light);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.cookie_actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 10px;
}
.cookie_actions .button {
	min-height: 46px;
	padding: 0 18px;
	font-size: 0.78rem;
}
.website_fixed_navigations_buttons_wrapper {
	position: fixed;
	z-index: 90;
	left: 28px;
	bottom: 28px;
	color: var(--kp-text);
}
.website_fixed_navigations_buttons {
	display: grid;
	gap: 14px;
}
.privacy_settings_button,
.totop_button {
	position: relative;
	width: 76px;
	min-height: 76px;
	padding: 0;
	display: grid;
	place-items: center;
	border: 1px solid var(--kp-border-gold);
	background: rgba(5, 5, 5, 0.92);
	color: var(--kp-gold-light);
	box-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
	cursor: pointer;
}
.privacy_settings_button:hover,
.totop_button:hover,
.privacy_settings_button[aria-expanded="true"] {
	background: var(--kp-gold);
	color: #080808;
}
.privacy_settings_icon,
.totop_button_icon {
	position: relative;
	width: 28px;
	height: 28px;
	display: block;
}
.privacy_settings_icon::before,
.privacy_settings_icon::after,
.totop_button_icon::before,
.totop_button_icon::after {
	position: absolute;
	content: '';
}
.privacy_settings_icon::before {
	inset: 4px;
	border: 2px solid currentColor;
	border-radius: 50%;
}
.privacy_settings_icon::after {
	top: 2px;
	right: 5px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: -12px 7px 0 currentColor, 1px 18px 0 currentColor;
}
.totop_button_icon::before {
	top: 8px;
	left: 7px;
	width: 14px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	transform: rotate(45deg);
}
.totop_button_icon::after {
	top: 11px;
	left: 13px;
	width: 2px;
	height: 16px;
	background: currentColor;
}
.privacy_settings_button_wording,
.totop_button_wording {
	position: absolute;
	left: calc(100% + 12px);
	width: max-content;
	max-width: 180px;
	padding: 7px 10px;
	border: 1px solid rgba(213, 173, 61, 0.28);
	background: rgba(5, 5, 5, 0.9);
	color: var(--kp-text-muted);
	font-size: 0.72rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
}
.privacy_settings_button:hover .privacy_settings_button_wording,
.privacy_settings_button:focus-visible .privacy_settings_button_wording,
.totop_button:hover .totop_button_wording,
.totop_button:focus-visible .totop_button_wording {
	opacity: 1;
	transform: translateX(0);
}
@media (max-width: 991px) {
	.cookie_consent {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}
	.cookie_consent_layout {
		grid-template-columns: 1fr;
		padding: 26px;
	}
}
@media (max-width: 575px) {
	.cookie_consent {
		top: 20px;
		bottom: 96px;
		max-height: calc(100dvh - 116px);
	}
	.cookie_consent_layout {
		padding: 20px;
		gap: 20px;
	}
	.cookie_option {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.cookie_switch {
		justify-content: flex-start;
	}
	.cookie_actions {
		display: grid;
	}
	.website_fixed_navigations_buttons_wrapper {
		left: 18px;
		bottom: 18px;
	}
	.privacy_settings_button,
	.totop_button {
		width: 62px;
		min-height: 62px;
	}
	.privacy_settings_button_wording,
	.totop_button_wording {
		display: none;
	}
}
/* Font Awesome cookie icon override */
.privacy_settings_icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.privacy_settings_icon::before,
.privacy_settings_icon::after {
	display: none;
}
.font_awesome_cookie_icon {
	width: 30px;
	height: 30px;
	display: block;
	fill: currentColor;
}
@media (max-width: 575px) {
	.font_awesome_cookie_icon {
		width: 25px;
		height: 25px;
	}
}
/* Service page architecture */
.service_card {
	color: inherit;
	text-decoration: none;
}
.service_card:focus-visible {
	outline: 2px solid var(--color_gold);
	outline-offset: 4px;
}
.service_card_title {
	display: block;
	font-family: var(--font_display);
	font-size: clamp(1.25rem, 1.6vw, 1.65rem);
	font-weight: 800;
	line-height: 1.05;
	text-transform: uppercase;
}
.service_card_text {
	display: block;
	margin-top: 0.85rem;
}
.breadcrumb_nav {
	margin-bottom: clamp(1.5rem, 2vw, 2.5rem);
}
.breadcrumb_nav ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.breadcrumb_nav li,
.breadcrumb_nav a {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.82rem;
	text-decoration: none;
}
.breadcrumb_nav li + li::before {
	content: '/';
	color: var(--color_gold);
	margin-right: 0.55rem;
}
.service_hub_page,
.service_detail,
.error_page {
	padding-top: clamp(8rem, 10vw, 12rem);
}
.service_detail_grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: start;
}
.service_detail_copy h1,
.error_page h1,
.service_hub_page h1 {
	font-family: var(--font_display);
	font-size: clamp(2.2rem, 5vw, 5rem);
	line-height: 0.98;
	margin: 0 0 1.5rem;
	text-transform: uppercase;
}
.service_detail_intro {
	max-width: 62ch;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.05rem, 1.4vw, 1.25rem);
	line-height: 1.7;
}
.service_detail_sections {
	display: grid;
	gap: 1.2rem;
	margin-top: 2rem;
}
.service_detail_sections section,
.service_faq details {
	border-top: 1px solid rgba(218, 174, 65, 0.32);
	padding-top: 1rem;
}
.service_detail_sections h2,
.service_faq h2,
.related_services h2 {
	font-family: var(--font_display);
	font-size: clamp(1.25rem, 2vw, 1.8rem);
	line-height: 1.1;
	margin: 0 0 0.65rem;
	text-transform: uppercase;
}
.service_detail_media {
	display: grid;
	gap: 1.25rem;
}
.service_detail_image {
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(218, 174, 65, 0.25);
	object-fit: cover;
	width: 100%;
}
.service_detail_more {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
	gap: clamp(2rem, 5vw, 5rem);
	margin-top: clamp(3rem, 6vw, 6rem);
}
.service_faq summary {
	cursor: pointer;
	font-weight: 800;
}
.related_services_links {
	display: grid;
	gap: 0.75rem;
}
.related_services_links a {
	border-bottom: 1px solid rgba(218, 174, 65, 0.42);
	color: #fff;
	font-weight: 800;
	padding: 0.85rem 0;
	text-decoration: none;
	text-transform: uppercase;
}
.service_modal_shell[hidden] {
	display: none;
}
.service_modal_shell {
	inset: 0;
	position: fixed;
	z-index: 1200;
}
.service_modal_backdrop {
	background: rgba(0, 0, 0, 0.78);
	inset: 0;
	position: absolute;
}
.service_modal_panel {
	background: #080808;
	border-left: 1px solid rgba(218, 174, 65, 0.45);
	box-shadow: -30px 0 70px rgba(0, 0, 0, 0.5);
	height: 100%;
	overflow: auto;
	padding: clamp(2rem, 4vw, 4rem) 0;
	position: absolute;
	right: 0;
	width: min(980px, 92vw);
}
.service_modal_close {
	align-items: center;
	background: var(--color_gold);
	border: 0;
	color: #050505;
	cursor: pointer;
	display: flex;
	font-size: 2rem;
	font-weight: 800;
	height: 3rem;
	justify-content: center;
	position: sticky;
	top: 1rem;
	margin-left: auto;
	margin-right: 1rem;
	width: 3rem;
	z-index: 2;
}
.has_service_modal {
	overflow: hidden;
}
@media (max-width: 820px) {
	.service_detail_grid,
	.service_detail_more {
		grid-template-columns: 1fr;
	}
	.service_modal_panel {
		width: 100%;
	}
}
/* Approved long-form service content integration */
.service_article {
	max-width: 78ch;
}
.service_hub_article {
	margin-bottom: clamp(2.5rem, 5vw, 4.75rem);
}
.service_article > h1 {
	margin-bottom: 1.1rem;
}
.service_article_intro {
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1.05rem, 1.35vw, 1.22rem);
	line-height: 1.72;
	margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.service_article p {
	color: rgba(255, 255, 255, 0.76);
	line-height: 1.78;
	margin: 0 0 1rem;
}
.service_article a:not(.button) {
	color: var(--color_gold);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
}
.service_article_section {
	border-top: 1px solid rgba(218, 174, 65, 0.24);
	padding: clamp(1.3rem, 2.5vw, 2rem) 0 0;
}
.service_article_section + .service_article_section,
.service_faq,
.related_services,
.service_cta_panel {
	margin-top: clamp(1.7rem, 3vw, 2.6rem);
}
.service_article_section h2,
.service_faq h2,
.related_services h2,
.service_cta_panel h2 {
	font-family: var(--font_display);
	font-size: clamp(1.35rem, 2vw, 2rem);
	line-height: 1.12;
	margin: 0 0 0.85rem;
	text-transform: uppercase;
}
.service_faq details {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
	border: 1px solid rgba(218, 174, 65, 0.24);
	margin-top: 0.8rem;
	padding: 1rem 1.1rem;
}
.service_faq summary {
	color: #fff;
	list-style-position: outside;
}
.related_services_links {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.service_cta_panel {
	align-items: center;
	background: linear-gradient(135deg, rgba(218, 174, 65, 0.2), rgba(255, 255, 255, 0.045));
	border: 1px solid rgba(218, 174, 65, 0.4);
	display: grid;
	gap: 1.25rem;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: clamp(1.25rem, 3vw, 2rem);
}
.service_cta_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: flex-end;
}
.service_modal_panel {
	width: min(1180px, 94vw);
}
.service_detail_modal {
	padding-top: clamp(2.5rem, 5vw, 4rem);
}
.service_detail_modal .container {
	max-width: 1060px;
}
.service_detail_modal .service_detail_grid {
	grid-template-columns: minmax(0, 1fr) minmax(240px, 0.48fr);
}
@media (max-width: 820px) {
	.service_cta_panel {
		grid-template-columns: 1fr;
	}
	.service_cta_actions {
		justify-content: flex-start;
	}
	.service_modal_panel {
		height: 100dvh;
		width: 100%;
	}
	.service_detail_modal .service_detail_grid {
		grid-template-columns: 1fr;
	}
}
/* Task 20260816_005 visual correction layer */
.site_header {
	overflow: visible;
}
.site_header_content {
	grid-template-columns: minmax(188px, 220px) minmax(0, 1fr) auto auto;
}
.desktop_nav {
	min-width: 0;
	gap: clamp(14px, 1.55vw, 28px);
}
.desktop_nav a {
	white-space: nowrap;
}
@media (max-width: 1320px) and (min-width: 1200px) {
	.site_header_content {
		grid-template-columns: 188px minmax(0, 1fr) auto auto;
		gap: 16px;
	}
	.brand img {
		width: 188px;
	}
	.desktop_nav {
		gap: 12px;
		font-size: 0.78rem;
	}
	.header_phone {
		min-height: 44px;
		padding-inline: 14px;
	}
}
.about_content {
	max-width: none;
	width: 100%;
	padding-right: max(32px, calc((100vw - var(--container-width)) / 2));
}
.about_content p:not(.eyebrow):not(.signature) {
	max-width: none;
}
.partner_accordion_section {
	padding-block: clamp(58px, 6vw, 92px);
	background: 		linear-gradient(180deg, rgba(213, 173, 61, 0.06), transparent 22%), 		linear-gradient(135deg, #111111, #050505 72%);
}
.partner_accordion_intro {
	margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}
.partner_accordion {
	border-top: 1px solid rgba(213, 173, 61, 0.32);
	border-bottom: 1px solid rgba(213, 173, 61, 0.24);
}
.partner_accordion_item {
	border-top: 1px solid rgba(255, 255, 255, 0.095);
}
.partner_accordion_item:first-child {
	border-top: 0;
}
.partner_accordion_item h2 {
	margin: 0;
}
.partner_accordion_trigger {
	width: 100%;
	min-height: 86px;
	padding: 22px 0;
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr) 38px;
	align-items: center;
	gap: clamp(1rem, 2vw, 2rem);
	border: 0;
	background: transparent;
	color: var(--kp-white);
	cursor: pointer;
	text-align: left;
}
.partner_accordion_number {
	color: var(--kp-gold-light);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.5rem, 2vw, 2.2rem);
	font-weight: 700;
	line-height: 1;
}
.partner_accordion_title {
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.2rem, 1.8vw, 1.8rem);
	font-weight: 600;
	line-height: 1.12;
	text-transform: uppercase;
}
.partner_accordion_indicator {
	position: relative;
	width: 32px;
	height: 32px;
	border: 1px solid rgba(213, 173, 61, 0.45);
}
.partner_accordion_indicator::before,
.partner_accordion_indicator::after {
	position: absolute;
	content: '';
	background: var(--kp-gold-light);
}
.partner_accordion_indicator::before {
	top: 15px;
	left: 8px;
	width: 14px;
	height: 2px;
}
.partner_accordion_indicator::after {
	top: 9px;
	left: 14px;
	width: 2px;
	height: 14px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.partner_accordion_trigger[aria-expanded='true'] .partner_accordion_indicator::after {
	opacity: 0;
	transform: rotate(90deg);
}
.partner_accordion_panel {
	max-width: 1040px;
	padding: 0 0 clamp(1.45rem, 3vw, 2.25rem) 82px;
}
.partner_accordion_panel p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(0.98rem, 1vw, 1.08rem);
	line-height: 1.8;
}
.subpage_header {
	position: relative;
	min-height: clamp(260px, 22vw, 320px);
	display: grid;
	align-items: end;
	overflow: hidden;
	border-bottom: 1px solid rgba(213, 173, 61, 0.24);
	background: #080808;
}
.subpage_header_media,
.subpage_header_media .swiper-wrapper,
.subpage_header_single,
.subpage_header_slide,
.subpage_header_media .swiper-slide,
.subpage_header picture,
.subpage_header_image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.subpage_header_image {
	object-fit: cover;
	object-position: center center;
	filter: saturate(0.88) contrast(1.08);
}
.subpage_header::after {
	position: absolute;
	inset: 0;
	content: '';
	background: 		linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.18)), 		linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68));
	pointer-events: none;
}
.subpage_header_content {
	position: relative;
	z-index: 2;
	padding-block: clamp(2rem, 4vw, 3.5rem);
}
.subpage_header .breadcrumb_nav {
	margin-bottom: 1rem;
}
.subpage_header h1 {
	max-width: 980px;
	font-size: clamp(2.25rem, 4vw, 4.5rem);
	line-height: 0.98;
}
.service_hub_page,
.service_detail,
.error_page {
	padding-top: clamp(4rem, 6vw, 6rem);
}
.service_hub_article,
.service_article {
	max-width: 92ch;
}
.site_footer {
	padding-top: clamp(72px, 6vw, 88px);
	background: 		linear-gradient(180deg, rgba(213, 173, 61, 0.09), rgba(213, 173, 61, 0.015) 32%, transparent 64%), 		#070707;
	border-top: 1px solid rgba(213, 173, 61, 0.3);
}
.footer_grid {
	grid-template-columns: minmax(280px, 1.25fr) minmax(190px, 0.8fr) minmax(230px, 0.95fr) minmax(190px, 0.8fr);
	gap: clamp(2rem, 4vw, 4rem);
	padding-bottom: clamp(42px, 5vw, 64px);
}
.footer_column h2,
.footer_grid h2 {
	color: var(--kp-gold-light);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.08em;
}
.footer_brand img {
	width: 230px;
	height: 86px;
}
.footer_brand_statement {
	max-width: 38ch;
	margin: 18px 0 24px;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.65;
}
.footer_primary_cta,
.footer_contact_cta {
	width: fit-content;
	min-width: 0;
	padding-inline: 22px;
}
.footer_grid a {
	padding-block: 0.34rem;
	line-height: 1.35;
}
.footer_contact p {
	margin: 0 0 0.65rem;
}
.footer_bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 991px) {
	.footer_grid {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 767px) {
	.subpage_header {
		min-height: clamp(220px, 58vw, 260px);
	}
	.subpage_header_content {
		padding-block: 1.6rem 2rem;
	}
	.subpage_header h1 {
		font-size: clamp(1.9rem, 8vw, 2.6rem);
		line-height: 1.05;
	}
	.partner_accordion_trigger {
		grid-template-columns: 48px minmax(0, 1fr) 32px;
		min-height: 76px;
		gap: 0.85rem;
	}
	.partner_accordion_panel {
		padding-left: 48px;
	}
	.footer_grid {
		grid-template-columns: 1fr;
		gap: 2.1rem;
	}
}
@media (max-width: 430px) {
	.partner_accordion_trigger {
		grid-template-columns: 1fr 32px;
	}
	.partner_accordion_number {
		grid-column: 1 / -1;
	}
	.partner_accordion_panel {
		padding-left: 0;
	}
}
/* Footer and accordion refinements requested after 20260816_005 */
.footer_brand img {
	width: clamp(280px, 18vw, 340px);
	height: clamp(104px, 6.6vw, 128px);
}
.footer_primary_cta,
.footer_contact_cta,
.footer_column .button {
	display: inline-flex;
	width: auto;
	min-width: 0;
	max-width: max-content;
	min-height: 46px;
	padding: 0 20px;
	font-size: 0.78rem;
	line-height: 1;
}
.footer_column .button + .button,
.footer_contact_cta {
	margin-top: 0.65rem;
}
.partner_accordion_trigger,
.service_faq summary {
	min-height: 70px;
}
.partner_accordion_title,
.service_faq summary {
	font-family: 'Inter', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	text-transform: none;
}
.partner_accordion_panel {
	max-width: none;
	padding-right: 0;
}
.partner_accordion_panel p,
.service_faq details p {
	width: 100%;
	max-width: none;
	font-size: 0.92rem;
	line-height: 1.72;
}
.service_faq {
	border-top: 1px solid rgba(213, 173, 61, 0.32);
	border-bottom: 1px solid rgba(213, 173, 61, 0.24);
}
.service_faq h2 {
	margin-bottom: 0;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.095);
}
.service_faq details {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.095);
}
.service_faq details:first-of-type {
	border-top: 0;
}
.service_faq summary {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 32px;
	align-items: center;
	gap: 1rem;
	padding: 20px 0;
	color: var(--kp-white);
	cursor: pointer;
	list-style: none;
}
.service_faq summary::-webkit-details-marker {
	display: none;
}
.service_faq summary::before {
	grid-column: 2;
	grid-row: 1;
	content: '';
	width: 32px;
	height: 32px;
	border: 1px solid rgba(213, 173, 61, 0.45);
}
.service_faq summary::after {
	position: absolute;
	right: 9px;
	top: calc(50% - 1px);
	width: 14px;
	height: 2px;
	content: '';
	background: var(--kp-gold-light);
	box-shadow: 0 0 0 0 var(--kp-gold-light);
}
.service_faq details:not([open]) summary::after {
	box-shadow: 0 0 0 0 var(--kp-gold-light), 6px -6px 0 -5px transparent;
}
.service_faq details:not([open]) summary span::after {
	content: none;
}
.service_faq details > p,
.service_faq details > *:not(summary) {
	padding: 0 0 clamp(1.35rem, 2.5vw, 2rem);
}
@media (max-width: 767px) {
	.footer_brand img {
		width: min(310px, 82vw);
		height: auto;
	}
	.footer_column .button,
	.footer_primary_cta,
	.footer_contact_cta {
		width: fit-content;
		max-width: 100%;
	}
	.partner_accordion_title,
	.service_faq summary {
		font-size: 0.98rem;
	}
	.partner_accordion_panel p,
	.service_faq details p {
		font-size: 0.9rem;
	}
}
/* Subpage FAQ indicator polish to match homepage accordion */
.service_faq summary::after {
	right: 9px;
	top: calc(50% - 7px);
	width: 14px;
	height: 14px;
	background: 		linear-gradient(var(--kp-gold-light), var(--kp-gold-light)) center / 14px 2px no-repeat, 		linear-gradient(var(--kp-gold-light), var(--kp-gold-light)) center / 2px 14px no-repeat;
	box-shadow: none;
}
.service_faq details[open] summary::after {
	background: linear-gradient(var(--kp-gold-light), var(--kp-gold-light)) center / 14px 2px no-repeat;
}
/* Button contrast and centered service modal correction */
.button_primary,
.button_primary:visited,
.button_primary:hover,
.button_primary:focus-visible,
.header_phone:hover,
.mobile_phone,
.mobile_phone:visited,
.privacy_settings_button:hover,
.privacy_settings_button[aria-expanded="true"],
.totop_button:hover {
	color: #050505;
}
.button_primary img,
.button_primary:hover img,
.button_primary:focus-visible img,
.header_phone:hover img,
.mobile_phone img {
	filter: brightness(0) saturate(100%);
}
.service_modal_shell {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(18px, 3vw, 42px);
}
.service_modal_backdrop {
	background: rgba(0, 0, 0, 0.78);
	backdrop-filter: blur(6px);
}
.service_modal_panel {
	position: relative;
	right: auto;
	width: min(1180px, calc(100vw - 48px));
	height: auto;
	max-height: min(88dvh, 980px);
	padding: 0;
	overflow: auto;
	background: #080808;
	border: 1px solid rgba(213, 173, 61, 0.42);
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.68);
}
.service_modal_fragment {
	position: relative;
}
.service_modal_fragment .subpage_header {
	min-height: clamp(230px, 25vw, 310px);
}
.service_modal_fragment .subpage_header_content {
	padding-block: clamp(1.75rem, 4vw, 3rem);
}
.service_modal_fragment .subpage_header h1 {
	font-size: clamp(2rem, 4vw, 4rem);
}
.service_modal_close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 8;
	margin: 0;
	width: 46px;
	height: 46px;
	background: var(--kp-gold);
	color: #050505;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}
.service_detail_modal {
	padding-top: 0;
	padding-bottom: clamp(2rem, 4vw, 4rem);
}
.service_detail_modal .service_detail_grid {
	grid-template-columns: minmax(0, 1fr);
}
.service_detail_modal .container {
	max-width: 980px;
}
.service_detail_modal .service_article {
	max-width: none;
}
@media (max-width: 820px) {
	.service_modal_shell {
		align-items: stretch;
		padding: 0;
	}
	.service_modal_panel {
		width: 100%;
		max-height: 100dvh;
		height: 100dvh;
		border: 0;
	}
	.service_modal_close {
		top: 12px;
		right: 12px;
	}
}
/* Modal article spacing refinement */
.service_detail_modal {
	padding-bottom: clamp(2.5rem, 4vw, 4.5rem);
}
.service_detail_modal .container {
	width: min(100% - clamp(38px, 6vw, 92px), 940px);
}
.service_detail_modal .service_detail_grid {
	gap: 0;
}
.service_detail_modal .service_article_intro {
	margin-bottom: clamp(1.7rem, 3vw, 2.6rem);
	font-size: clamp(1rem, 1.15vw, 1.12rem);
	line-height: 1.68;
}
.service_detail_modal .service_article p {
	margin-bottom: 0.82rem;
	line-height: 1.68;
}
.service_detail_modal .service_article_section {
	padding-top: clamp(1.05rem, 2vw, 1.55rem);
}
.service_detail_modal .service_article_section + .service_article_section,
.service_detail_modal .service_faq,
.service_detail_modal .related_services,
.service_detail_modal .service_cta_panel {
	margin-top: clamp(1.25rem, 2.4vw, 2rem);
}
.service_detail_modal .service_article_section h2,
.service_detail_modal .service_faq h2,
.service_detail_modal .related_services h2,
.service_detail_modal .service_cta_panel h2 {
	margin-bottom: 0.65rem;
	font-size: clamp(1.18rem, 1.65vw, 1.62rem);
	line-height: 1.16;
}
.service_detail_modal .service_faq summary {
	min-height: 60px;
	padding: 16px 0;
}
.service_detail_modal .service_faq details > p,
.service_detail_modal .service_faq details > *:not(summary) {
	padding-bottom: clamp(1rem, 2vw, 1.45rem);
}
.service_detail_modal .related_services_links a {
	padding: 0.62rem 0;
	font-size: 0.86rem;
}
.service_detail_modal .service_cta_panel {
	padding: clamp(1rem, 2.2vw, 1.55rem);
}
.service_detail_modal .service_cta_panel p {
	margin-bottom: 0;
}
@media (max-width: 575px) {
	.service_detail_modal .container {
		width: min(100% - 32px, 940px);
	}
	.service_detail_modal .service_article_intro,
	.service_detail_modal .service_article p {
		line-height: 1.62;
	}
}
/* Legal subpage content */
.legal_page {
	background: 		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)), 		var(--kp-black);
}
.legal_article {
	max-width: 1040px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.82);
}
.legal_section {
	padding-block: clamp(1.65rem, 3vw, 2.7rem);
	border-top: 1px solid rgba(213, 173, 61, 0.2);
}
.legal_section:first-child {
	border-top: 0;
	padding-top: 0;
}
.legal_article h2,
.legal_article h3,
.legal_article h4 {
	margin: 0 0 0.8rem;
	color: var(--kp-white);
	font-family: 'Oswald', Arial, sans-serif;
	text-transform: uppercase;
	line-height: 1.12;
	letter-spacing: 0;
}
.legal_article h2 {
	font-size: clamp(1.55rem, 2vw, 2.15rem);
}
.legal_article h3 {
	margin-top: 1.1rem;
	font-size: clamp(1.08rem, 1.3vw, 1.35rem);
	color: var(--kp-gold-light);
}
.legal_article p,
.legal_article li {
	font-size: clamp(0.98rem, 1vw, 1.06rem);
	line-height: 1.75;
}
.legal_article p {
	margin: 0 0 1.05rem;
}
.legal_article ul {
	margin: 0 0 1.25rem;
	padding-left: 1.2rem;
}
.legal_article li + li {
	margin-top: 0.55rem;
}
.legal_article strong {
	color: var(--kp-white);
	font-weight: 800;
}
.legal_article a {
	color: var(--kp-gold-light);
	font-weight: 800;
	overflow-wrap: anywhere;
	text-decoration-color: rgba(213, 173, 61, 0.45);
	text-underline-offset: 0.16em;
}
.legal_article code,
.legal_code {
	font-family: Consolas, 'Courier New', monospace;
}
.legal_code {
	display: inline-block;
	max-width: 100%;
	margin: 0.25rem 0 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(213, 173, 61, 0.24);
	background: rgba(255, 255, 255, 0.045);
	color: var(--kp-gold-light);
	overflow-x: auto;
}
.partner_accordion_lead {
	max-width: 980px;
	margin: clamp(1rem, 2vw, 1.4rem) auto 0;
}
.partner_accordion_lead p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(0.98rem, 1vw, 1.06rem);
	line-height: 1.7;
}
.partner_accordion_lead p + p {
	margin-top: 0.85rem;
}
/* Desktop hero Swiper pagination */
@media (min-width: 992px) {
	.hero_swiper > .swiper-pagination {
		top: 56px !important;
		bottom: auto !important;
	}
}
@media (max-width: 991px) {
	.hero_swiper > .swiper-pagination {
		right: 32px !important;
		bottom: 30px !important;
	}
}
@media (max-width: 575px) {
	.hero_swiper > .swiper-pagination {
		right: 20px !important;
		bottom: 24px !important;
	}
	.hero_swiper > .swiper-pagination .swiper-pagination-bullet {
		width: 26px;
	}
}
/* Fixed navigation button size correction */
.website_fixed_navigations_buttons {
	gap: 7px;
}
.privacy_settings_button,
.totop_button {
	width: 38px;
	min-height: 38px;
}
.privacy_settings_icon,
.totop_button_icon {
	width: 14px;
	height: 14px;
}
.font_awesome_cookie_icon {
	width: 15px;
	height: 15px;
}
.totop_button_icon::before {
	top: 4px;
	left: 4px;
	width: 7px;
	height: 7px;
	border-top-width: 2px;
	border-left-width: 2px;
}
.totop_button_icon::after {
	top: 6px;
	left: 7px;
	width: 2px;
	height: 8px;
}
@media (max-width: 991px) {
	.privacy_settings_button,
	.totop_button {
		width: 31px;
		min-height: 31px;
	}
	.font_awesome_cookie_icon {
		width: 13px;
		height: 13px;
	}
}
/* Leistungen submenu navigation */
.desktop_nav_item {
	position: relative;
	display: flex;
	align-items: center;
}
.desktop_nav_item > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.desktop_nav_item.has_submenu > a::before {
	content: '';
	width: 6px;
	height: 6px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	order: 2;
	transition: transform 0.2s ease;
}
.desktop_nav_item.has_submenu:hover > a::before,
.desktop_nav_item.has_submenu:focus-within > a::before {
	transform: rotate(225deg) translateY(-1px);
}
.desktop_submenu {
	position: absolute;
	top: calc(100% - 12px);
	left: 50%;
	width: min(320px, 88vw);
	padding: 12px 0;
	border: 1px solid rgba(213, 173, 61, 0.32);
	background: rgba(7, 7, 7, 0.97);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, 10px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}
.desktop_nav_item.has_submenu:hover .desktop_submenu,
.desktop_nav_item.has_submenu:focus-within .desktop_submenu {
	opacity: 1;
	pointer-events: auto;
	transform: translate(-50%, 0);
}
.desktop_submenu a {
	display: block;
	padding: 11px 18px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.82rem;
	line-height: 1.25;
	white-space: normal;
}
.desktop_submenu a::after {
	display: none;
}
.desktop_submenu a:hover,
.desktop_submenu a:focus-visible {
	background: rgba(213, 173, 61, 0.12);
	color: var(--kp-gold-light);
}
.mobile_submenu {
	display: grid;
	padding: 2px 0 8px 16px;
	border-bottom: 1px solid rgba(213, 173, 61, 0.22);
}
.mobile_nav .mobile_submenu a {
	padding: 10px 0 10px 14px;
	border-bottom: 0;
	border-left: 1px solid rgba(213, 173, 61, 0.28);
	color: rgba(255, 255, 255, 0.76);
	font-size: 1rem;
}
/* Button hover contrast guard */
.button_primary,
.button_primary:visited,
.button_primary:hover,
.button_primary:focus-visible,
.button_secondary:hover,
.button_secondary:focus-visible,
.header_phone:hover,
.header_phone:focus-visible,
.mobile_phone,
.mobile_phone:visited,
.mobile_phone:hover,
.mobile_phone:focus-visible,
.privacy_settings_button:hover,
.privacy_settings_button:focus-visible,
.privacy_settings_button[aria-expanded="true"],
.totop_button:hover,
.totop_button:focus-visible {
	color: #050505;
}
.button_primary img,
.button_primary:hover img,
.button_primary:focus-visible img,
.button_secondary:hover img,
.button_secondary:focus-visible img,
.header_phone:hover img,
.header_phone:focus-visible img,
.mobile_phone img,
.mobile_phone:hover img,
.mobile_phone:focus-visible img {
	filter: brightness(0) saturate(100%);
}
.button_secondary:hover svg,
.button_secondary:focus-visible svg,
.button_primary svg,
.button_primary:hover svg,
.button_primary:focus-visible svg,
.privacy_settings_button:hover svg,
.privacy_settings_button:focus-visible svg,
.privacy_settings_button[aria-expanded="true"] svg,
.totop_button:hover svg,
.totop_button:focus-visible svg {
	color: #050505;
	fill: currentColor;
}
/* Mobile footer accordion */
.footer_accordion_trigger {
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	text-align: left;
}
.footer_accordion_trigger span {
	display: none;
}
.footer_accordion_panel[hidden] {
	display: none;
}
@media (min-width: 768px) {
	.footer_accordion_trigger {
		pointer-events: none;
	}
}
@media (max-width: 767px) {
	.footer_grid {
		display: block;
		padding-bottom: 28px;
	}
	.footer_brand {
		margin-bottom: 30px;
	}
	.footer_accordion_item {
		border-top: 1px solid rgba(213, 173, 61, 0.24);
	}
	.footer_accordion_item:last-child {
		border-bottom: 1px solid rgba(213, 173, 61, 0.24);
	}
	.footer_grid .footer_accordion_item h2 {
		margin: 0;
	}
	.footer_accordion_trigger {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 56px;
		color: var(--kp-gold-light);
		cursor: pointer;
	}
	.footer_accordion_trigger span {
		position: relative;
		display: block;
		width: 18px;
		height: 18px;
		flex: 0 0 18px;
	}
	.footer_accordion_trigger span::before,
	.footer_accordion_trigger span::after {
		position: absolute;
		content: '';
		background: currentColor;
		transition: opacity 0.18s ease, transform 0.18s ease;
	}
	.footer_accordion_trigger span::before {
		top: 8px;
		left: 2px;
		width: 14px;
		height: 2px;
	}
	.footer_accordion_trigger span::after {
		top: 2px;
		left: 8px;
		width: 2px;
		height: 14px;
	}
	.footer_accordion_trigger[aria-expanded='true'] span::after {
		opacity: 0;
		transform: rotate(90deg);
	}
	.footer_accordion_panel {
		padding: 0 0 20px;
	}
	.footer_accordion_panel a,
	.footer_accordion_panel p,
	.footer_accordion_panel address {
		font-size: 0.94rem;
		line-height: 1.62;
	}
}
/* Organized footer contact rows */
.footer_contact_rows {
	display: grid;
	gap: 15px;
}
.footer_contact_row {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: start;
	gap: 12px;
	color: var(--kp-text-muted);
}
.footer_contact_row img {
	width: 22px;
	height: 22px;
	margin-top: 3px;
	filter: none;
}
.footer_contact_label {
	display: block;
	margin-bottom: 3px;
	color: var(--kp-gold-light);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.footer_contact_row address,
.footer_contact_row a {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	line-height: 1.55;
	overflow-wrap: anywhere;
}
.footer_contact_row a:hover,
.footer_contact_row a:focus-visible {
	color: var(--kp-gold-light);
}
.footer_contact_row strong {
	color: var(--kp-white);
}
@media (max-width: 767px) {
	.footer_contact_rows {
		gap: 13px;
	}
	.footer_contact_row {
		grid-template-columns: 26px minmax(0, 1fr);
		gap: 10px;
	}
	.footer_contact_row img {
		width: 20px;
		height: 20px;
	}
}
/* Reference black gold lightbox */
.reference_lightbox_trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
	text-align: inherit;
}
.reference_lightbox_trigger::after {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 2;
	content: '+';
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(213, 173, 61, 0.68);
	background: rgba(5, 5, 5, 0.82);
	color: var(--kp-gold-light);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1.35rem;
	line-height: 1;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 0.22s ease, transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.reference_lightbox_trigger:hover::after,
.reference_lightbox_trigger:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}
.reference_lightbox_trigger:hover .reference_image,
.reference_lightbox_trigger:focus-visible .reference_image {
	transform: scale(1.04);
	opacity: 0.9;
}
.reference_lightbox_shell[hidden] {
	display: none;
}
.reference_lightbox_shell {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	padding: clamp(18px, 4vw, 54px);
}
.reference_lightbox_backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.86);
	backdrop-filter: blur(8px);
}
.reference_lightbox_dialog {
	position: relative;
	z-index: 1;
	width: min(1280px, 94vw);
	max-height: 90dvh;
	border: 1px solid rgba(213, 173, 61, 0.48);
	background: #050505;
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.76);
	overflow: hidden;
}
.reference_lightbox_dialog figure {
	margin: 0;
}
.reference_lightbox_image {
	display: block;
	width: 100%;
	max-height: calc(90dvh - 62px);
	object-fit: contain;
	background: #050505;
}
.reference_lightbox_caption {
	min-height: 62px;
	padding: 18px 74px 18px 24px;
	border-top: 1px solid rgba(213, 173, 61, 0.28);
	color: rgba(255, 255, 255, 0.82);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.reference_lightbox_close,
.reference_lightbox_nav {
	position: absolute;
	z-index: 2;
	display: grid;
	place-items: center;
	border: 1px solid rgba(213, 173, 61, 0.62);
	background: rgba(5, 5, 5, 0.86);
	color: var(--kp-gold-light);
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.reference_lightbox_close:hover,
.reference_lightbox_close:focus-visible,
.reference_lightbox_nav:hover,
.reference_lightbox_nav:focus-visible {
	background: var(--kp-gold);
	color: #050505;
	transform: translateY(-1px);
}
.reference_lightbox_close {
	top: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	font-size: 2rem;
	line-height: 1;
}
.reference_lightbox_nav {
	top: 50%;
	width: 48px;
	height: 64px;
	transform: translateY(-50%);
}
.reference_lightbox_nav:hover,
.reference_lightbox_nav:focus-visible {
	transform: translateY(calc(-50% - 1px));
}
.reference_lightbox_nav::before {
	content: '';
	width: 14px;
	height: 14px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
}
.reference_lightbox_nav.is_prev {
	left: 14px;
}
.reference_lightbox_nav.is_prev::before {
	transform: rotate(-45deg);
}
.reference_lightbox_nav.is_next {
	right: 14px;
}
.reference_lightbox_nav.is_next::before {
	transform: rotate(135deg);
}
.has_reference_lightbox {
	overflow: hidden;
}
@media (max-width: 767px) {
	.reference_lightbox_shell {
		padding: 12px;
	}
	.reference_lightbox_dialog {
		width: 100%;
		max-height: 92dvh;
	}
	.reference_lightbox_caption {
		min-height: 54px;
		padding: 14px 58px 14px 16px;
		font-size: 0.86rem;
	}
	.reference_lightbox_close {
		width: 38px;
		height: 38px;
	}
	.reference_lightbox_nav {
		width: 40px;
		height: 54px;
	}
}
/* Fixed navigation right side correction */
.website_fixed_navigations_buttons_wrapper {
	right: 28px;
	left: auto;
}
.privacy_settings_button_wording,
.totop_button_wording {
	right: calc(100% + 12px);
	left: auto;
	transform: translateX(8px);
}
.privacy_settings_button:hover .privacy_settings_button_wording,
.privacy_settings_button:focus-visible .privacy_settings_button_wording,
.totop_button:hover .totop_button_wording,
.totop_button:focus-visible .totop_button_wording {
	transform: translateX(0);
}
@media (max-width: 991px) {
	.website_fixed_navigations_buttons_wrapper {
		right: 18px;
		left: auto;
	}
}
/* Fullscreen mobile menu overlay */
@media (max-width: 1199px) {
	.mobile_nav {
		inset: 84px 0 0 0;
		align-content: start;
		min-height: calc(100dvh - 84px);
		max-height: calc(100dvh - 84px);
		overflow-y: auto;
		padding: clamp(26px, 7vw, 46px) max(24px, calc((100vw - 720px) / 2)) 46px;
		background: 			linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(12, 12, 12, 0.98)), 			#050505;
		box-shadow: inset 0 1px 0 rgba(213, 173, 61, 0.22), 0 28px 70px rgba(0, 0, 0, 0.62);
	}
	.mobile_nav a {
		font-size: clamp(1.45rem, 6vw, 2.35rem);
		line-height: 1.1;
		padding: 18px 0;
	}
	.mobile_nav .mobile_submenu {
		padding: 4px 0 18px 18px;
	}
	.mobile_nav .mobile_submenu a {
		font-size: clamp(1rem, 3.8vw, 1.2rem);
		padding: 11px 0 11px 16px;
	}
	.mobile_phone {
		margin-top: 24px;
		font-size: 1rem !important;
		line-height: 1.2 !important;
	}
}
@media (max-width: 575px) {
	.mobile_nav {
		inset: 76px 0 0 0;
		min-height: calc(100dvh - 76px);
		max-height: calc(100dvh - 76px);
		padding-inline: 24px;
	}
}
/* Location map */
.location_map_section {
	padding: 0;
	background: #080808;
	border-top: 1px solid rgba(213, 173, 61, 0.24);
	border-bottom: 1px solid rgba(213, 173, 61, 0.18);
}
.location_map_surface {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.18) 44%, rgba(5, 5, 5, 0.78)), 		linear-gradient(135deg, #070707 0%, #161616 48%, #2a220f 100%);
}
.location_map_canvas {
	position: relative;
	min-height: 430px;
	isolation: isolate;
}
.location_map_art,
.location_map_frame,
.location_map_frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.location_map_art {
	background: 		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), 		linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px), 		radial-gradient(circle at 58% 46%, rgba(213, 173, 61, 0.28), transparent 15%), 		linear-gradient(135deg, #101010, #1b1b1b 52%, #080808);
	background-size: 84px 84px, 84px 84px, auto, auto;
}
.location_map_art::before,
.location_map_art::after,
.map_road {
	position: absolute;
	display: block;
	content: '';
	background: linear-gradient(90deg, transparent, rgba(213, 173, 61, 0.45), rgba(245, 245, 245, 0.14), transparent);
	box-shadow: 0 0 36px rgba(213, 173, 61, 0.18);
}
.location_map_art::before {
	top: 46%;
	left: -6%;
	width: 112%;
	height: 28px;
	transform: rotate(-8deg);
}
.location_map_art::after {
	top: -12%;
	left: 55%;
	width: 26px;
	height: 130%;
	transform: rotate(18deg);
}
.map_road_one {
	top: 68%;
	left: 8%;
	width: 78%;
	height: 18px;
	transform: rotate(17deg);
}
.map_road_two {
	top: 21%;
	left: 14%;
	width: 64%;
	height: 14px;
	transform: rotate(-22deg);
	opacity: 0.66;
}
.map_road_three {
	top: -8%;
	left: 28%;
	width: 18px;
	height: 118%;
	transform: rotate(-15deg);
	opacity: 0.58;
}
.map_pin {
	position: absolute;
	top: calc(50% - 34px);
	left: calc(56% - 22px);
	width: 44px;
	height: 44px;
	border: 2px solid #f4cf61;
	border-radius: 50% 50% 50% 0;
	background: linear-gradient(135deg, #d5ad3d, #f4cf61);
	box-shadow: 0 0 0 12px rgba(213, 173, 61, 0.12), 0 18px 40px rgba(0, 0, 0, 0.48);
	transform: rotate(-45deg);
	z-index: 2;
}
.map_pin::after {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	content: '';
	background: #090909;
}
.location_map_tooltip {
	position: absolute;
	top: 70px;
	left: max(32px, calc((100vw - var(--container-width)) / 2));
	z-index: 3;
	max-width: 390px;
	padding: 28px 30px;
	border: 1px solid rgba(213, 173, 61, 0.58);
	background: linear-gradient(145deg, rgba(10, 10, 10, 0.96), rgba(28, 28, 28, 0.92));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}
.location_map_tooltip::after {
	position: absolute;
	right: -12px;
	bottom: 42px;
	width: 22px;
	height: 22px;
	border-top: 1px solid rgba(213, 173, 61, 0.58);
	border-right: 1px solid rgba(213, 173, 61, 0.58);
	content: '';
	background: #151515;
	transform: rotate(45deg);
}
.location_map_tooltip h2 {
	margin: 0 0 12px;
	color: var(--kp-gold-light);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.6rem, 2.2vw, 2.2rem);
	font-weight: 700;
	line-height: 1.05;
	text-transform: uppercase;
}
.location_map_tooltip p {
	margin: 0;
	color: var(--kp-text);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.6;
}
.location_map_actions {
	position: absolute;
	right: max(32px, calc((100vw - var(--container-width)) / 2));
	bottom: 42px;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}
.location_map_frame {
	z-index: 4;
	background: #101010;
}
.location_map_frame[hidden] {
	display: none;
}
.location_map_frame iframe {
	border: 0;
	filter: grayscale(1) invert(0.88) contrast(1.15) sepia(0.52) saturate(1.35) hue-rotate(348deg) brightness(0.76);
}
.location_map_canvas.is_map_loaded .location_map_tooltip,
.location_map_canvas.is_map_loaded .location_map_actions {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	z-index: 5;
	margin-left: max(32px, calc((100vw - var(--container-width)) / 2));
}
.location_map_canvas.is_map_loaded .location_map_tooltip {
	margin-top: 42px;
}
.location_map_canvas.is_map_loaded .location_map_actions {
	width: fit-content;
	margin-top: 14px;
}
@media (max-width: 767px) {
	.location_map_surface,
	.location_map_canvas {
		min-height: 520px;
	}
	.location_map_tooltip {
		top: 32px;
		left: 20px;
		right: 20px;
		max-width: none;
		padding: 24px;
	}
	.location_map_tooltip::after {
		display: none;
	}
	.location_map_actions {
		left: 20px;
		right: 20px;
		bottom: 28px;
		display: grid;
		justify-content: stretch;
	}
	.location_map_actions .button {
		width: 100%;
	}
	.map_pin {
		top: calc(56% - 30px);
		left: calc(50% - 22px);
	}
	.location_map_canvas.is_map_loaded .location_map_tooltip,
	.location_map_canvas.is_map_loaded .location_map_actions {
		margin-left: 20px;
		margin-right: 20px;
	}
}
/* Autolackierer-inspired footer layout */
.site_footer {
	padding-top: clamp(52px, 5vw, 72px);
	background: 		linear-gradient(180deg, rgba(213, 173, 61, 0.08), rgba(213, 173, 61, 0.015) 28%, transparent 58%), 		linear-gradient(135deg, #080808 0%, #111111 58%, #070707 100%);
	border-top: 1px solid rgba(213, 173, 61, 0.34);
}
.footer_logo_row {
	display: flex;
	justify-content: center;
	padding-bottom: clamp(34px, 4vw, 48px);
}
.footer_logo_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.footer_logo_link img {
	width: clamp(300px, 24vw, 440px);
	height: auto;
	max-height: 170px;
	object-fit: contain;
	filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.42));
}
.site_footer .footer_grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.6rem, 3vw, 3rem);
	padding-bottom: clamp(38px, 5vw, 58px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site_footer .footer_column {
	min-width: 0;
}
.site_footer .footer_grid h2 {
	margin: 0 0 20px;
	color: var(--kp-gold-light);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.05rem, 1.15vw, 1.25rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.site_footer address,
.site_footer p,
.footer_feature_list,
.footer_hours_list {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.95rem;
	line-height: 1.65;
}
.footer_company_name {
	margin-bottom: 10px !important;
	color: var(--kp-white) !important;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1.1rem !important;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.25 !important;
	text-transform: uppercase;
}
.footer_text_link {
	display: inline-flex !important;
	width: fit-content;
	margin-top: 16px;
	padding-bottom: 4px !important;
	border-bottom: 1px solid rgba(213, 173, 61, 0.55);
	color: var(--kp-gold-light) !important;
	font-weight: 800;
	line-height: 1.25 !important;
}
.footer_text_link:hover,
.footer_text_link:focus-visible {
	border-color: var(--kp-white);
	color: var(--kp-white) !important;
}
.footer_feature_list {
	display: grid;
	gap: 8px;
	padding: 18px 0 0;
	list-style: none;
}
.footer_feature_list li {
	position: relative;
	padding-left: 18px;
}
.footer_feature_list li::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	width: 7px;
	height: 7px;
	content: '';
	background: var(--kp-gold);
	transform: rotate(45deg);
}
.footer_hours_list {
	display: grid;
	gap: 8px;
}
.footer_hours_list div {
	display: grid;
	grid-template-columns: minmax(90px, 0.85fr) minmax(130px, 1fr);
	gap: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer_hours_list dt,
.footer_hours_list dd {
	margin: 0;
}
.footer_hours_list dt {
	color: var(--kp-white);
	font-weight: 800;
}
.footer_hours_list dd {
	color: rgba(255, 255, 255, 0.72);
	text-align: right;
}
.footer_hint {
	margin-top: 18px !important;
	color: rgba(255, 255, 255, 0.58) !important;
	font-size: 0.88rem !important;
}
.footer_reviews p {
	max-width: 30ch;
	margin-top: 10px;
}
.footer_rating_value {
	color: var(--kp-white);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(3rem, 4vw, 4.4rem);
	font-weight: 700;
	line-height: 0.9;
}
.footer_rating_stars {
	margin-top: 10px;
	color: var(--kp-gold-light);
	font-size: 1.1rem;
	letter-spacing: 0.18em;
}
.site_footer .footer_contact_cta {
	margin-top: 22px;
}
.site_footer .footer_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	padding-block: 24px;
	border-top: 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.86rem;
}
.site_footer .footer_bottom p {
	color: inherit;
	font-size: inherit;
}
.site_footer .footer_bottom div {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 18px;
}
.site_footer .footer_bottom a {
	padding: 0;
	color: rgba(255, 255, 255, 0.68);
}
.site_footer .footer_bottom a:hover,
.site_footer .footer_bottom a:focus-visible {
	color: var(--kp-gold-light);
}
@media (max-width: 1199px) {
	.site_footer .footer_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.footer_logo_row {
		justify-content: flex-start;
		padding-bottom: 26px;
	}
	.footer_logo_link img {
		width: min(100%, 320px);
	}
	.site_footer .footer_grid {
		display: block;
		padding-bottom: 28px;
	}
	.site_footer .footer_grid h2 {
		margin: 0;
		font-size: 1rem;
	}
	.footer_hours_list div {
		grid-template-columns: 1fr auto;
	}
	.footer_rating_value {
		font-size: 3rem;
	}
	.site_footer .footer_bottom {
		align-items: flex-start;
		flex-direction: column;
	}
	.site_footer .footer_bottom div {
		justify-content: flex-start;
	}
}
/* Location map visual correction */
.location_map_surface {
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.48), rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.58)), 		linear-gradient(135deg, #151515 0%, #252525 48%, #403517 100%);
}
.location_map_art {
	background: 		linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px), 		linear-gradient(0deg, rgba(255, 255, 255, 0.065) 1px, transparent 1px), 		radial-gradient(circle at 56% 49%, rgba(244, 207, 97, 0.34), transparent 17%), 		radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.08), transparent 20%), 		linear-gradient(135deg, #242424, #303030 50%, #151515 100%);
	background-size: 84px 84px, 84px 84px, auto, auto, auto;
}
.location_map_art::before,
.location_map_art::after,
.map_road {
	background: linear-gradient(90deg, transparent, rgba(245, 245, 245, 0.2), rgba(244, 207, 97, 0.72), rgba(245, 245, 245, 0.22), transparent);
	box-shadow: 0 0 46px rgba(244, 207, 97, 0.3);
}
.location_map_art::before {
	height: 34px;
}
.location_map_art::after {
	width: 32px;
}
.map_road_one {
	height: 22px;
	opacity: 0.95;
}
.map_road_two {
	height: 18px;
	opacity: 0.82;
}
.map_road_three {
	width: 22px;
	opacity: 0.74;
}
.map_pin {
	top: calc(55% - 34px);
	left: calc(58% - 22px);
	box-shadow: 0 0 0 14px rgba(244, 207, 97, 0.18), 0 18px 46px rgba(0, 0, 0, 0.42);
	z-index: 4;
}
.location_map_tooltip {
	top: calc(55% - 198px);
	left: calc(58% - 196px);
	width: min(392px, calc(100% - 64px));
	max-width: none;
	padding: 26px 28px 24px;
	border: 1px solid rgba(244, 207, 97, 0.72);
	background: 		linear-gradient(145deg, rgba(30, 30, 30, 0.98), rgba(13, 13, 13, 0.96)), 		#181818;
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}
.location_map_tooltip::before {
	position: absolute;
	top: -1px;
	left: 24px;
	width: 78px;
	height: 3px;
	content: '';
	background: var(--kp-gold-light);
}
.location_map_tooltip::after {
	right: auto;
	bottom: -12px;
	left: calc(50% - 11px);
	border: 0;
	border-right: 1px solid rgba(244, 207, 97, 0.72);
	border-bottom: 1px solid rgba(244, 207, 97, 0.72);
	background: #111111;
}
.location_map_tooltip h2 {
	font-size: clamp(1.45rem, 1.7vw, 1.9rem);
	letter-spacing: 0.02em;
}
.location_map_tooltip p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.98rem;
	line-height: 1.55;
}
.location_map_frame iframe {
	filter: grayscale(0.85) invert(0.72) contrast(1.08) sepia(0.42) saturate(1.45) hue-rotate(348deg) brightness(0.98);
}
.location_map_canvas.is_map_loaded .location_map_tooltip {
	width: min(392px, calc(100% - 64px));
}
@media (max-width: 767px) {
	.location_map_tooltip {
		top: 30px;
		left: 20px;
		right: 20px;
		width: auto;
		padding: 22px 22px 20px;
	}
	.location_map_tooltip::after {
		display: block;
		bottom: -10px;
		left: 50%;
		width: 20px;
		height: 20px;
	}
	.map_pin {
		top: calc(58% - 30px);
		left: calc(50% - 22px);
	}
}
/* Cross-brand DER AUTOLACKIERER section */
.cross_brand_section {
	position: relative;
	padding-block: clamp(72px, 7vw, 112px);
	overflow: hidden;
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(14, 14, 14, 0.78) 48%, rgba(5, 5, 5, 0.96)), 		linear-gradient(135deg, #080808 0%, #161616 52%, #2f260d 100%);
	border-bottom: 1px solid rgba(213, 173, 61, 0.24);
}
.cross_brand_section::before {
	position: absolute;
	inset: 0;
	content: '';
	background: 		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), 		linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px), 		radial-gradient(circle at 18% 24%, rgba(213, 173, 61, 0.16), transparent 28%), 		radial-gradient(circle at 84% 78%, rgba(213, 173, 61, 0.1), transparent 28%);
	background-size: 72px 72px, 72px 72px, auto, auto;
	pointer-events: none;
}
.cross_brand_layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
	gap: clamp(2.5rem, 5vw, 5rem);
	align-items: center;
}
.cross_brand_identity {
	position: relative;
	min-height: 360px;
	display: grid;
	place-items: center;
	padding: clamp(2rem, 4vw, 3.5rem);
	border: 1px solid rgba(213, 173, 61, 0.38);
	background: 		linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 36%), 		linear-gradient(135deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 8, 0.98));
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}
.cross_brand_identity::after {
	position: absolute;
	inset: 18px;
	content: '';
	border: 1px solid rgba(213, 173, 61, 0.18);
	pointer-events: none;
}
.mobile_nav a:hover,
.mobile_nav a:focus-visible,
.mobile_nav a.is_active {
	color: var(--kp-gold-light);
}
.cross_brand_logo_link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.cross_brand_logo {
	width: min(100%, 360px);
	height: auto;
	filter: drop-shadow(0 16px 38px rgba(0, 0, 0, 0.5));
}
.cross_brand_lion {
	position: absolute;
	right: clamp(22px, 4vw, 46px);
	bottom: clamp(20px, 4vw, 42px);
	width: clamp(88px, 9vw, 142px);
	height: auto;
	opacity: 0.42;
	filter: sepia(1) saturate(1.5) brightness(1.08) drop-shadow(0 12px 28px rgba(0, 0, 0, 0.36));
}
.cross_brand_copy h2 {
	max-width: 980px;
	font-size: clamp(2.1rem, 3.6vw, 4.5rem);
	line-height: 0.98;
}
.cross_brand_copy h2::after {
	display: block;
	width: 82px;
	height: 3px;
	margin-top: 20px;
	content: '';
	background: var(--kp-gold);
}
.cross_brand_copy p:not(.eyebrow) {
	max-width: 78ch;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(0.98rem, 1vw, 1.08rem);
	line-height: 1.78;
}
.cross_brand_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 30px;
}
.cross_brand_services {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(213, 173, 61, 0.32);
	border-left: 1px solid rgba(213, 173, 61, 0.22);
}
.cross_brand_services a {
	position: relative;
	display: grid;
	min-height: 190px;
	align-content: start;
	gap: 12px;
	padding: clamp(1.35rem, 2.4vw, 2rem);
	border-right: 1px solid rgba(213, 173, 61, 0.22);
	border-bottom: 1px solid rgba(213, 173, 61, 0.22);
	background: rgba(255, 255, 255, 0.025);
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.cross_brand_services a:hover,
.cross_brand_services a:focus-visible {
	border-color: rgba(244, 207, 97, 0.62);
	background: rgba(213, 173, 61, 0.08);
	transform: translateY(-2px);
}
.cross_brand_services span {
	color: var(--kp-gold-light);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1.35rem;
	font-weight: 700;
	line-height: 1;
}
.cross_brand_services strong {
	color: var(--kp-white);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.1rem, 1.45vw, 1.45rem);
	font-weight: 700;
	line-height: 1.14;
	text-transform: uppercase;
}
.cross_brand_services em {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.94rem;
	font-style: normal;
	line-height: 1.58;
}
@media (max-width: 991px) {
	.cross_brand_layout {
		grid-template-columns: 1fr;
	}
	.cross_brand_identity {
		min-height: 300px;
	}
	.cross_brand_services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.cross_brand_section {
		padding-block: 64px;
	}
	.cross_brand_identity {
		min-height: 240px;
		padding: 34px 24px;
	}
	.cross_brand_logo {
		width: min(100%, 300px);
	}
	.cross_brand_lion {
		width: 82px;
		right: 22px;
		bottom: 18px;
	}
	.cross_brand_actions {
		display: grid;
	}
	.cross_brand_actions .button {
		width: 100%;
	}
	.cross_brand_services {
		grid-template-columns: 1fr;
	}
	.cross_brand_services a {
		min-height: 0;
	}
}
/* Full-width service detail CTA stripe */
.service_detail > .service_cta_stripe_container {
	width: min(100% - 64px, var(--container-width));
	max-width: var(--container-width);
	margin-top: clamp(3rem, 6vw, 5rem);
}
.service_cta_panel.service_cta_stripe {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) auto;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 4rem);
	padding: clamp(2rem, 4vw, 3.35rem) clamp(1.5rem, 4vw, 3.5rem);
	overflow: hidden;
	border: 1px solid rgba(213, 173, 61, 0.42);
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(16, 16, 16, 0.9) 50%, rgba(48, 39, 14, 0.92)), 		linear-gradient(135deg, #090909, #1c1c1c 58%, #33290f);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}
.service_cta_panel.service_cta_stripe::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 7px;
	content: '';
	background: linear-gradient(180deg, var(--kp-gold-light), var(--kp-gold));
}
.service_cta_panel.service_cta_stripe::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: '';
	background: 		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px), 		radial-gradient(circle at 82% 42%, rgba(244, 207, 97, 0.18), transparent 28%);
	background-size: 72px 72px, auto;
	pointer-events: none;
}
.service_cta_panel.service_cta_stripe h2 {
	max-width: 760px;
	margin-bottom: 0.75rem;
	font-size: clamp(1.75rem, 3vw, 3.2rem);
	line-height: 1.02;
}
.service_cta_panel.service_cta_stripe h2::after {
	display: block;
	width: 78px;
	height: 3px;
	margin-top: 16px;
	content: '';
	background: var(--kp-gold);
}
.service_cta_panel.service_cta_stripe p {
	max-width: 760px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(0.98rem, 1.1vw, 1.1rem);
	line-height: 1.72;
}
.service_cta_panel.service_cta_stripe .service_cta_actions {
	display: grid;
	min-width: min(100%, 290px);
	justify-content: stretch;
	gap: 12px;
}
.service_cta_panel.service_cta_stripe .button {
	width: 100%;
	min-width: 0;
	white-space: normal;
}
.service_detail_modal .service_cta_panel {
	background: linear-gradient(135deg, rgba(218, 174, 65, 0.2), rgba(255, 255, 255, 0.045));
	border: 1px solid rgba(218, 174, 65, 0.4);
}
@media (max-width: 820px) {
	.service_detail > .service_cta_stripe_container {
		width: min(100% - 40px, var(--container-width));
		margin-top: 3rem;
	}
	.service_cta_panel.service_cta_stripe {
		grid-template-columns: 1fr;
	}
	.service_cta_panel.service_cta_stripe .service_cta_actions {
		min-width: 0;
	}
}
/* Subpage CTA true full-bleed stripe correction */
.service_detail > .service_cta_stripe_container {
	width: 100% !important;
	max-width: none !important;
	margin-top: clamp(3.5rem, 7vw, 6rem) !important;
	margin-inline: 0 !important;
	padding-inline: 0 !important;
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe {
	width: 100%;
	min-height: clamp(230px, 22vw, 320px);
	grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
	padding-block: clamp(3rem, 6vw, 5.25rem);
	padding-inline: max(32px, calc((100vw - var(--container-width)) / 2));
	border-width: 1px 0;
	border-color: rgba(213, 173, 61, 0.32);
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(10, 10, 10, 0.9) 43%, rgba(38, 31, 12, 0.82) 100%), 		linear-gradient(135deg, #050505 0%, #151515 54%, #2c230c 100%);
	box-shadow: none;
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe::before {
	top: 0;
	bottom: auto;
	left: max(32px, calc((100vw - var(--container-width)) / 2));
	width: clamp(88px, 8vw, 128px);
	height: 4px;
	background: var(--kp-gold-light);
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe::after {
	background: 		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px), 		radial-gradient(circle at 86% 50%, rgba(244, 207, 97, 0.22), transparent 24%), 		linear-gradient(90deg, transparent 0%, rgba(213, 173, 61, 0.08) 100%);
	background-size: 86px 86px, auto, auto;
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe h2 {
	max-width: 920px;
	font-size: clamp(2rem, 3.8vw, 4.25rem);
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe p {
	max-width: 820px;
	font-size: clamp(1rem, 1.16vw, 1.16rem);
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe .service_cta_actions {
	position: relative;
	padding: 22px;
	border-left: 1px solid rgba(213, 173, 61, 0.28);
	background: rgba(255, 255, 255, 0.035);
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe .service_cta_actions::before {
	position: absolute;
	top: 0;
	left: 22px;
	width: 48px;
	height: 2px;
	content: '';
	background: var(--kp-gold);
}
@media (max-width: 820px) {
	.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe {
		grid-template-columns: 1fr;
		padding-inline: 20px;
		padding-block: 3rem;
	}
	.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe::before {
		left: 20px;
	}
	.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe .service_cta_actions {
		padding: 18px 0 0;
		border-left: 0;
		background: transparent;
	}
}
/* Service detail and modal content rhythm correction */
.service_detail:not(.service_detail_modal) .service_detail_grid {
	gap: clamp(3rem, 5vw, 5.25rem);
}
.service_detail:not(.service_detail_modal) .service_article_intro {
	margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.service_detail:not(.service_detail_modal) .service_article_intro p + p,
.service_detail:not(.service_detail_modal) .service_article_section p + p {
	margin-top: 1.15rem;
}
.service_detail:not(.service_detail_modal) .service_article_section {
	padding-top: clamp(2rem, 3.5vw, 3rem);
}
.service_detail:not(.service_detail_modal) .service_article_section + .service_article_section,
.service_detail:not(.service_detail_modal) .service_faq,
.service_detail:not(.service_detail_modal) .related_services {
	margin-top: clamp(2.75rem, 5vw, 4.5rem);
}
.service_detail:not(.service_detail_modal) .service_article_section h2,
.service_detail:not(.service_detail_modal) .service_faq h2,
.service_detail:not(.service_detail_modal) .related_services h2 {
	margin-bottom: clamp(1.15rem, 2vw, 1.65rem);
}
.service_detail:not(.service_detail_modal) .service_faq {
	padding-top: clamp(0.5rem, 1vw, 1rem);
}
.service_detail:not(.service_detail_modal) .service_faq details {
	margin-top: 1rem;
	padding: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018));
}
.service_detail:not(.service_detail_modal) .service_faq summary {
	min-height: 72px;
	padding: 22px 28px;
	display: flex;
	align-items: center;
}
.service_detail:not(.service_detail_modal) .service_faq details > p,
.service_detail:not(.service_detail_modal) .service_faq details > *:not(summary) {
	padding: 0 28px 28px;
}
.service_detail_modal {
	padding-top: clamp(3.5rem, 6vw, 5.5rem);
}
.service_detail_modal .container {
	width: min(100% - clamp(42px, 7vw, 112px), 980px);
}
.service_detail_modal .service_article_intro {
	margin-top: clamp(1.25rem, 2.4vw, 2.2rem);
	margin-bottom: clamp(2.35rem, 4.2vw, 3.6rem);
}
.service_detail_modal .service_article_intro p + p,
.service_detail_modal .service_article_section p + p {
	margin-top: 1rem;
}
.service_detail_modal .service_article_section {
	padding-top: clamp(1.75rem, 3vw, 2.5rem);
}
.service_detail_modal .service_article_section + .service_article_section,
.service_detail_modal .service_faq,
.service_detail_modal .related_services,
.service_detail_modal .service_cta_panel {
	margin-top: clamp(2.2rem, 4vw, 3.35rem);
}
.service_detail_modal .service_article_section h2,
.service_detail_modal .service_faq h2,
.service_detail_modal .related_services h2,
.service_detail_modal .service_cta_panel h2 {
	margin-bottom: clamp(0.95rem, 1.8vw, 1.35rem);
}
.service_detail_modal .service_faq details {
	padding: 0;
}
.service_detail_modal .service_faq summary {
	min-height: 68px;
	padding: 20px 22px;
}
.service_detail_modal .service_faq details > p,
.service_detail_modal .service_faq details > *:not(summary) {
	padding: 0 22px 24px;
}
@media (max-width: 575px) {
	.service_detail:not(.service_detail_modal) .service_faq summary,
	.service_detail_modal .service_faq summary {
		min-height: 64px;
		padding: 18px 18px;
	}
	.service_detail:not(.service_detail_modal) .service_faq details > p,
	.service_detail:not(.service_detail_modal) .service_faq details > *:not(summary),
	.service_detail_modal .service_faq details > p,
	.service_detail_modal .service_faq details > *:not(summary) {
		padding: 0 18px 22px;
	}
}
/* Abstract map placeholder correction */
.location_map_art {
	background: 		radial-gradient(ellipse at 18% 22%, rgba(244, 207, 97, 0.16), transparent 20%), 		radial-gradient(ellipse at 76% 30%, rgba(255, 255, 255, 0.12), transparent 24%), 		radial-gradient(ellipse at 66% 78%, rgba(213, 173, 61, 0.18), transparent 28%), 		linear-gradient(135deg, rgba(62, 62, 62, 0.92), rgba(38, 38, 38, 0.96) 42%, rgba(18, 18, 18, 0.98));
	background-size: auto;
}
.location_map_art::before,
.location_map_art::after,
.map_road {
	background: transparent;
	box-shadow: none;
}
.location_map_art::before {
	top: 12%;
	left: 8%;
	width: 78%;
	height: 68%;
	border: 0;
	border-radius: 34% 66% 49% 51% / 45% 32% 68% 55%;
	background: 		linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)), 		linear-gradient(90deg, rgba(213, 173, 61, 0.11), rgba(255, 255, 255, 0.045));
	transform: rotate(-8deg);
}
.location_map_art::after {
	top: 23%;
	left: 44%;
	width: 42%;
	height: 46%;
	border: 0;
	border-radius: 58% 42% 62% 38% / 52% 64% 36% 48%;
	background: 		linear-gradient(145deg, rgba(244, 207, 97, 0.14), rgba(255, 255, 255, 0.045)), 		rgba(255, 255, 255, 0.025);
	transform: rotate(16deg);
}
.map_road_one,
.map_road_two,
.map_road_three {
	position: absolute;
	display: block;
	border-style: solid;
	border-color: rgba(238, 212, 132, 0.72);
	background: transparent;
	box-shadow: 0 0 26px rgba(244, 207, 97, 0.22);
	opacity: 1;
}
.map_road_one {
	top: 42%;
	left: 10%;
	width: 82%;
	height: 34%;
	border-width: 0 0 6px 0;
	border-radius: 0 0 58% 42% / 0 0 72% 46%;
	transform: rotate(-9deg);
}
.map_road_two {
	top: 20%;
	left: 23%;
	width: 58%;
	height: 48%;
	border-width: 5px 0 0 0;
	border-radius: 56% 44% 0 0 / 66% 55% 0 0;
	transform: rotate(18deg);
	opacity: 0.82;
}
.map_road_three {
	top: 6%;
	left: 48%;
	width: 26%;
	height: 86%;
	border-width: 0 0 0 5px;
	border-radius: 54% 0 0 46% / 42% 0 0 58%;
	transform: rotate(10deg);
	opacity: 0.68;
}
.location_map_canvas::before,
.location_map_canvas::after {
	position: absolute;
	z-index: 1;
	content: '';
	pointer-events: none;
}
.location_map_canvas::before {
	top: 16%;
	left: 15%;
	width: 18%;
	height: 20%;
	border-radius: 38% 62% 42% 58% / 46% 38% 62% 54%;
	background: rgba(255, 255, 255, 0.055);
}
.location_map_canvas::after {
	right: 13%;
	bottom: 16%;
	width: 24%;
	height: 24%;
	border-radius: 56% 44% 61% 39% / 48% 58% 42% 52%;
	background: rgba(213, 173, 61, 0.105);
}
.map_pin {
	z-index: 5;
}
/* Footer icon gold correction */
.site_footer .footer_contact_row img {
	filter: brightness(0) saturate(100%) invert(78%) sepia(58%) saturate(569%) hue-rotate(359deg) brightness(101%) contrast(92%);
}
/* Clean subpage CTA stripe background */
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe {
	min-height: auto;
	border-color: rgba(213, 173, 61, 0.22);
	background: #080808;
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe::after {
	display: none;
}
.service_detail > .service_cta_stripe_container .service_cta_panel.service_cta_stripe .service_cta_actions {
	border-left-color: rgba(213, 173, 61, 0.2);
	background: transparent;
}
/* Sharp vector-map placeholder correction */
.location_map_art {
	background: 		linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.08) 8% 9%, transparent 9% 30%, rgba(255, 255, 255, 0.065) 30% 31%, transparent 31% 53%, rgba(255, 255, 255, 0.075) 53% 54%, transparent 54% 77%, rgba(255, 255, 255, 0.06) 77% 78%, transparent 78%), 		linear-gradient(0deg, transparent 0 16%, rgba(255, 255, 255, 0.065) 16% 17%, transparent 17% 38%, rgba(255, 255, 255, 0.055) 38% 39%, transparent 39% 63%, rgba(255, 255, 255, 0.07) 63% 64%, transparent 64% 84%, rgba(255, 255, 255, 0.05) 84% 85%, transparent 85%), 		linear-gradient(135deg, #2c2c2c 0%, #202020 48%, #121212 100%);
	background-size: auto;
}
.location_map_art::before,
.location_map_art::after {
	position: absolute;
	content: '';
	box-shadow: none;
}
.location_map_art::before {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 0;
	background: 		linear-gradient(135deg, transparent 0 10%, rgba(213, 173, 61, 0.28) 10% 23%, transparent 23%), 		linear-gradient(30deg, transparent 0 64%, rgba(213, 173, 61, 0.22) 64% 78%, transparent 78%), 		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 19%, transparent 19% 22%, rgba(213, 173, 61, 0.12) 22% 34%, transparent 34% 55%, rgba(255, 255, 255, 0.045) 55% 70%, transparent 70%), 		linear-gradient(0deg, transparent 0 68%, rgba(255, 255, 255, 0.06) 68% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	transform: none;
}
.location_map_art::after {
	top: 9%;
	left: 5%;
	width: 90%;
	height: 78%;
	border: 0;
	border-radius: 0;
	background: 		linear-gradient(90deg, transparent 0 12%, rgba(244, 207, 97, 0.28) 12% 23%, transparent 23%), 		linear-gradient(0deg, transparent 0 58%, rgba(255, 255, 255, 0.08) 58% 68%, transparent 68%), 		linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.07) 42% 56%, transparent 56%);
	clip-path: polygon(0 0, 28% 0, 28% 24%, 44% 24%, 44% 0, 100% 0, 100% 31%, 86% 31%, 86% 52%, 100% 52%, 100% 100%, 56% 100%, 56% 72%, 35% 72%, 35% 100%, 0 100%, 0 64%, 17% 64%, 17% 38%, 0 38%);
	transform: none;
}
.map_road_one,
.map_road_two,
.map_road_three {
	position: absolute;
	display: block;
	border: 0;
	border-radius: 0;
	background: rgba(244, 207, 97, 0.82);
	box-shadow: 0 0 0 2px rgba(5, 5, 5, 0.42), 0 0 26px rgba(244, 207, 97, 0.2);
	opacity: 1;
}
.map_road_one {
	top: 55%;
	left: 14%;
	width: 52%;
	height: 14px;
	clip-path: polygon(0 0, 41% 0, 41% -210%, 48% -210%, 48% 0, 100% 0, 100% 100%, 45% 100%, 45% 310%, 34% 310%, 34% 100%, 0 100%);
	transform: none;
}
.map_road_two {
	top: 26%;
	left: -3%;
	width: 104%;
	height: 26px;
	background: rgba(255, 255, 255, 0.86);
	clip-path: polygon(0 0, 35% 0, 35% 185%, 42% 185%, 42% 0, 100% 0, 100% 100%, 47% 100%, 47% 270%, 29% 270%, 29% 100%, 0 100%);
	transform: none;
	opacity: 0.92;
}
.map_road_three {
	top: -8%;
	left: 73%;
	width: 28px;
	height: 122%;
	background: rgba(213, 173, 61, 0.62);
	clip-path: polygon(0 0, 100% 0, 100% 34%, 190% 34%, 190% 44%, 100% 44%, 100% 100%, 0 100%, 0 58%, -160% 58%, -160% 48%, 0 48%);
	transform: none;
	opacity: 0.8;
}
.location_map_canvas::before {
	top: 12%;
	left: 10%;
	width: 24%;
	height: 24%;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.06);
	clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 72%, 72% 100%, 0 100%);
}
.location_map_canvas::after {
	right: 10%;
	bottom: 14%;
	width: 28%;
	height: 28%;
	border-radius: 0;
	background: rgba(213, 173, 61, 0.14);
	clip-path: polygon(0 0, 72% 0, 72% 32%, 100% 32%, 100% 100%, 0 100%);
}
.map_pin {
	top: calc(50% - 32px);
	left: calc(60% - 22px);
}
/* Calm premium map placeholder correction */
.location_map_surface {
	background: linear-gradient(135deg, #151515 0%, #202020 52%, #111111 100%);
}
.location_map_art {
	background: 		linear-gradient(90deg, transparent 0 15%, rgba(255, 255, 255, 0.035) 15% 15.6%, transparent 15.6% 36%, rgba(255, 255, 255, 0.03) 36% 36.6%, transparent 36.6% 62%, rgba(255, 255, 255, 0.032) 62% 62.6%, transparent 62.6%), 		linear-gradient(0deg, transparent 0 24%, rgba(255, 255, 255, 0.032) 24% 24.6%, transparent 24.6% 48%, rgba(255, 255, 255, 0.028) 48% 48.6%, transparent 48.6% 73%, rgba(255, 255, 255, 0.03) 73% 73.6%, transparent 73.6%), 		linear-gradient(135deg, #242424 0%, #1b1b1b 58%, #111111 100%);
}
.location_map_art::before {
	top: 12%;
	left: 7%;
	width: 86%;
	height: 76%;
	border-radius: 0;
	background: 		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 24%, transparent 24% 28%, rgba(255, 255, 255, 0.025) 28% 48%, transparent 48% 52%, rgba(213, 173, 61, 0.055) 52% 72%, transparent 72%), 		linear-gradient(0deg, transparent 0 34%, rgba(255, 255, 255, 0.035) 34% 42%, transparent 42% 63%, rgba(213, 173, 61, 0.045) 63% 76%, transparent 76%);
	clip-path: polygon(0 0, 32% 0, 32% 18%, 52% 18%, 52% 0, 100% 0, 100% 100%, 65% 100%, 65% 78%, 42% 78%, 42% 100%, 0 100%);
	opacity: 0.72;
	transform: none;
}
.location_map_art::after {
	display: none;
}
.map_road_one,
.map_road_two,
.map_road_three {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	transform: none;
}
.map_road_one {
	top: 54%;
	left: 18%;
	width: 50%;
	height: 8px;
	background: rgba(213, 173, 61, 0.42);
	clip-path: polygon(0 0, 36% 0, 36% -210%, 45% -210%, 45% 0, 100% 0, 100% 100%, 42% 100%, 42% 300%, 32% 300%, 32% 100%, 0 100%);
}
.map_road_two {
	top: 28%;
	left: 0;
	width: 100%;
	height: 18px;
	background: rgba(255, 255, 255, 0.22);
	clip-path: polygon(0 0, 34% 0, 34% 170%, 43% 170%, 43% 0, 100% 0, 100% 100%, 48% 100%, 48% 245%, 30% 245%, 30% 100%, 0 100%);
}
.map_road_three {
	top: 0;
	left: 74%;
	width: 16px;
	height: 100%;
	background: rgba(213, 173, 61, 0.18);
	clip-path: none;
}
.location_map_canvas::before,
.location_map_canvas::after {
	border-radius: 0;
	box-shadow: none;
}
.location_map_canvas::before {
	top: 16%;
	left: 10%;
	width: 20%;
	height: 18%;
	background: rgba(255, 255, 255, 0.032);
	clip-path: polygon(0 0, 100% 0, 100% 70%, 68% 70%, 68% 100%, 0 100%);
}
.location_map_canvas::after {
	right: 11%;
	bottom: 16%;
	width: 24%;
	height: 22%;
	background: rgba(213, 173, 61, 0.06);
	clip-path: polygon(0 0, 72% 0, 72% 32%, 100% 32%, 100% 100%, 0 100%);
}
.map_pin {
	top: calc(51% - 32px);
	left: calc(58% - 22px);
	box-shadow: 0 0 0 10px rgba(213, 173, 61, 0.1), 0 16px 34px rgba(0, 0, 0, 0.38);
}
/* Team contact swiper */
.team_swiper_section {
	position: relative;
	padding-block: clamp(70px, 7vw, 112px);
	overflow: hidden;
	background: 		linear-gradient(180deg, rgba(213, 173, 61, 0.055), transparent 24%), 		linear-gradient(135deg, #0a0a0a, #171717 62%, #070707);
	border-top: 1px solid rgba(213, 173, 61, 0.2);
	border-bottom: 1px solid rgba(213, 173, 61, 0.22);
}
.team_swiper_header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.team_swiper_header h2 {
	max-width: 760px;
	font-size: clamp(2.2rem, 4vw, 4.7rem);
	line-height: 0.98;
}
.team_swiper_controls {
	display: flex;
	gap: 10px;
}
.team_swiper_button {
	position: relative;
	width: 46px;
	height: 46px;
	border: 1px solid rgba(213, 173, 61, 0.58);
	background: transparent;
	color: var(--kp-gold-light);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.team_swiper_button:hover,
.team_swiper_button:focus-visible {
	background: var(--kp-gold);
	color: #050505;
	transform: translateY(-2px);
}
.team_swiper_button::before {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 11px;
	height: 11px;
	content: '';
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
}
.team_swiper_button_prev::before {
	transform: translate(-38%, -50%) rotate(-135deg);
}
.team_swiper_button_next::before {
	transform: translate(-62%, -50%) rotate(45deg);
}
.team_swiper_shell {
	width: min(100% - 64px, var(--container-width));
	margin-inline: auto;
}
.team_swiper {
	overflow: visible;
}
.team_member_card {
	height: auto;
	border: 1px solid rgba(213, 173, 61, 0.24);
	background: #0d0d0d;
	transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.team_swiper:hover .team_member_card:not(:hover),
.team_swiper:focus-within .team_member_card:not(:focus-within) {
	opacity: 0.62;
}
.team_member_card:hover,
.team_member_card:focus-within {
	border-color: rgba(244, 207, 97, 0.72);
	transform: translateY(-4px);
}
.team_member_image {
	position: relative;
	aspect-ratio: 1280 / 1790;
	overflow: hidden;
	background: #171717;
}
.team_member_image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.38s ease, transform 0.5s ease, filter 0.38s ease;
}
.team_member_image_primary {
	opacity: 1;
	filter: grayscale(0.15) contrast(1.02);
}
.team_member_image_hover {
	opacity: 0;
	filter: grayscale(0) contrast(1.05);
	transform: scale(1.025);
}
.team_member_image:hover .team_member_image_primary,
.team_member_image:focus-visible .team_member_image_primary,
.team_member_card:hover .team_member_image_primary,
.team_member_card:focus-within .team_member_image_primary {
	opacity: 0;
	transform: scale(1.025);
}
.team_member_image:hover .team_member_image_hover,
.team_member_image:focus-visible .team_member_image_hover,
.team_member_card:hover .team_member_image_hover,
.team_member_card:focus-within .team_member_image_hover {
	opacity: 1;
	transform: scale(1);
}
.team_member_image_overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.52));
	pointer-events: none;
}
.team_member_content {
	padding: 22px 22px 24px;
}
.team_member_content h3 {
	position: relative;
	margin-bottom: 12px;
	padding-bottom: 14px;
	font-size: clamp(1.25rem, 1.5vw, 1.65rem);
	line-height: 1.05;
}
.team_member_content h3::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 74px;
	height: 2px;
	content: '';
	background: var(--kp-gold);
	transition: width 0.25s ease;
}
.team_member_card:hover h3::after,
.team_member_card:focus-within h3::after {
	width: 132px;
}
.team_member_role {
	margin: 0 0 10px;
	color: var(--kp-gold-light);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.team_member_content p:not(.team_member_role) {
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.92rem;
	line-height: 1.55;
}
.team_swiper_pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}
.team_swiper_pagination .swiper-pagination-bullet {
	width: 34px;
	height: 3px;
	margin: 0 !important;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.34);
	opacity: 1;
}
.team_swiper_pagination .swiper-pagination-bullet-active {
	background: var(--kp-gold);
}
@media (max-width: 767px) {
	.team_swiper_header {
		align-items: flex-start;
		flex-direction: column;
	}
	.team_swiper_shell {
		width: min(100% - 40px, var(--container-width));
	}
	.team_swiper_controls {
		align-self: flex-end;
	}
}
/* Cross-brand visual alignment to approved screenshot */
.cross_brand_section {
	padding-block: 0;
	background: 		linear-gradient(90deg, #090909 0%, #141414 38%, #070707 100%);
	border-top: 1px solid rgba(213, 173, 61, 0.28);
	border-bottom: 1px solid rgba(213, 173, 61, 0.28);
}
.cross_brand_section::before {
	display: none;
}
.cross_brand_layout {
	width: 100%;
	max-width: none;
	display: grid;
	grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
}
.cross_brand_identity {
	min-height: clamp(520px, 43vw, 720px);
	padding: clamp(3rem, 7vw, 7rem) max(40px, calc((100vw - var(--container-width)) / 2)) clamp(3rem, 6vw, 5rem) max(40px, calc((100vw - var(--container-width)) / 2));
	border: 0;
	border-right: 1px solid rgba(213, 173, 61, 0.34);
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.16) 52%, rgba(5, 5, 5, 0.62)), 		radial-gradient(ellipse at 52% 73%, rgba(213, 173, 61, 0.28), transparent 22%), 		linear-gradient(180deg, #111111, #191919 58%, #090909);
	box-shadow: none;
}
.cross_brand_identity::after {
	inset: auto 0 0 0;
	height: 38%;
	border: 0;
	background: 		linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42)), 		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), 		linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: auto, 96px 96px, 96px 96px;
}
.mobile_nav a:hover,
.mobile_nav a:focus-visible,
.mobile_nav a.is_active {
	color: var(--kp-gold-light);
}
.cross_brand_logo_link {
	align-self: center;
	justify-self: center;
	margin-top: clamp(1rem, 4vw, 4rem);
}
.cross_brand_logo {
	width: clamp(290px, 28vw, 500px);
	filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.62));
}
.cross_brand_logo_link::after {
	display: none;
	content: none;
}
.cross_brand_lion {
	display: none;
}
.cross_brand_copy {
	min-height: clamp(520px, 43vw, 720px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 7vw, 7rem) max(40px, calc((100vw - var(--container-width)) / 2)) clamp(3rem, 6vw, 5rem) clamp(3.5rem, 7vw, 7rem);
	background: 		linear-gradient(90deg, rgba(7, 7, 7, 0.18), rgba(7, 7, 7, 0.78)), 		linear-gradient(135deg, #111111 0%, #080808 74%);
}
.cross_brand_copy .eyebrow {
	margin-bottom: 22px;
}
.cross_brand_copy h2 {
	max-width: 780px;
	font-size: clamp(2.75rem, 3.75vw, 3.375rem);
	line-height: 0.93;
	letter-spacing: 0;
}
.cross_brand_copy h2::after {
	width: 84px;
	height: 3px;
	margin-top: 26px;
}
.cross_brand_copy p:not(.eyebrow) {
	max-width: 760px;
	margin-top: 26px;
	font-size: clamp(1rem, 1vw, 1.1rem);
	line-height: 1.76;
}
.cross_brand_copy p:not(.eyebrow):first-of-type {
	margin-top: 30px;
}
.cross_brand_actions {
	margin-top: 34px;
}
.cross_brand_services {
	grid-column: 1 / -1;
	width: min(100% - 64px, var(--container-width));
	margin: 0 auto;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 0;
	border-left: 1px solid rgba(213, 173, 61, 0.22);
	background: transparent;
}
.cross_brand_services a {
	min-height: 205px;
	padding: clamp(1.75rem, 3vw, 2.75rem);
	border-color: rgba(213, 173, 61, 0.22);
	background: transparent;
}
.cross_brand_services span {
	font-size: clamp(1.3rem, 1.5vw, 1.7rem);
}
.cross_brand_services span::after {
	display: inline-block;
	width: 28px;
	height: 2px;
	margin-left: 12px;
	vertical-align: middle;
	content: '';
	background: var(--kp-gold);
}
.cross_brand_services strong {
	font-size: clamp(1.25rem, 1.7vw, 1.85rem);
}
.cross_brand_services em {
	max-width: 360px;
	font-size: 0.98rem;
}
@media (max-width: 991px) {
	.cross_brand_layout {
		grid-template-columns: 1fr;
	}
	.cross_brand_identity,
	.cross_brand_copy {
		min-height: auto;
		padding: 64px 32px;
	}
	.cross_brand_identity {
		border-right: 0;
		border-bottom: 1px solid rgba(213, 173, 61, 0.28);
	}
	.cross_brand_services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 767px) {
	.cross_brand_identity,
	.cross_brand_copy {
		padding: 52px 20px;
	}
	.cross_brand_copy h2 {
		font-size: clamp(2.25rem, 9vw, 3.1rem);
	}
	.cross_brand_services {
		width: min(100% - 40px, var(--container-width));
		grid-template-columns: 1fr;
	}
	.cross_brand_services a {
		min-height: 0;
	}
}
/* Cross-brand service cards correction */
.cross_brand_logo_link::after {
	display: none;
	content: none;
}
.cross_brand_services {
	gap: 22px;
	padding-block: clamp(2rem, 4vw, 4rem);
	border-left: 0;
}
.cross_brand_services a {
	position: relative;
	isolation: isolate;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	padding: 30px;
	overflow: hidden;
	border: 1px solid var(--kp-border-soft);
	background: 		radial-gradient(circle at 78% 24%, rgba(213, 173, 61, 0.15), transparent 30%), 		linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 34%), 		linear-gradient(145deg, #101010, #050505 68%, #211a0b);
	box-shadow: none;
	transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.cross_brand_services a::after {
	position: absolute;
	inset: 0;
	z-index: -1;
	content: '';
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0.18));
}
.cross_brand_services a:hover,
.cross_brand_services a:focus-visible {
	border-color: rgba(213, 173, 61, 0.72);
	transform: translateY(-3px);
	background: 		radial-gradient(circle at 78% 24%, rgba(213, 173, 61, 0.22), transparent 30%), 		linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 34%), 		linear-gradient(145deg, #131313, #060606 64%, #2b220d);
}
.cross_brand_services span {
	position: absolute;
	top: 28px;
	left: 30px;
	color: var(--kp-gold);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.08em;
}
.cross_brand_services span::after {
	width: 34px;
	height: 2px;
	margin-left: 12px;
	background: var(--kp-gold);
}
.cross_brand_services strong {
	max-width: 360px;
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.35rem, 1.6vw, 2rem);
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}
.cross_brand_services em {
	max-width: 360px;
	margin-top: 14px;
	color: var(--kp-text);
	font-size: 0.95rem;
	font-style: normal;
	line-height: 1.55;
}
.cross_brand_copy p strong {
	display: block;
	margin-bottom: 0.85rem;
	color: var(--kp-white);
	font-family: 'Oswald', Arial, sans-serif;
	font-size: clamp(1.18rem, 1.35vw, 1.55rem);
	line-height: 1.18;
	text-transform: uppercase;
}
@media (max-width: 767px) {
	.cross_brand_services a {
		min-height: 225px;
		padding: 28px;
	}
	.cross_brand_services span {
		top: 26px;
		left: 28px;
	}
}
/* Plain Google Maps placeholder correction */
.location_map_surface {
	background: linear-gradient(135deg, #080808 0%, #141414 58%, #090909 100%);
}
.location_map_art {
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.26) 48%, rgba(5, 5, 5, 0.82)), 		linear-gradient(135deg, #0a0a0a 0%, #171717 58%, #0b0b0b 100%);
}
.location_map_art::before,
.location_map_art::after,
.map_road {
	display: none;
}
.map_pin {
	display: block;
}
/* Cross-brand panel border and logo shine correction */
.cross_brand_identity {
	border-bottom: 1px solid rgba(213, 173, 61, 0.28);
	background: 		linear-gradient(90deg, rgba(5, 5, 5, 0.76), rgba(5, 5, 5, 0.2) 52%, rgba(5, 5, 5, 0.64)), 		radial-gradient(ellipse at 50% 58%, rgba(213, 173, 61, 0.2), rgba(213, 173, 61, 0.07) 20%, transparent 42%), 		linear-gradient(180deg, #111111, #181818 58%, #090909);
}
.cross_brand_copy {
	border-bottom: 1px solid rgba(213, 173, 61, 0.28);
}
.cross_brand_identity::after {
	inset: 0;
	height: auto;
	background: 		radial-gradient(ellipse at 50% 54%, rgba(74, 74, 70, 0.32), rgba(34, 34, 32, 0.18) 20%, transparent 42%), 		linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.38) 100%);
	background-size: auto;
}
.mobile_nav a:hover,
.mobile_nav a:focus-visible,
.mobile_nav a.is_active {
	color: var(--kp-gold-light);
}
.cross_brand_logo_link {
	position: relative;
	z-index: 2;
}
.cross_brand_logo {
	filter: drop-shadow(0 20px 42px rgba(0, 0, 0, 0.66)) drop-shadow(0 0 22px rgba(213, 173, 61, 0.18));
}
/* Center decorative line below centered section headings */
.section_intro_center h2::after {
	margin-right: auto;
	margin-left: auto;
}
/* Decorative lines for remaining primary section headings */
.team_swiper_header h2::after,
.contact_cta h2::after {
	display: block;
	width: 74px;
	height: 3px;
	margin-top: 18px;
	content: '';
	background: var(--kp_gold_line, var(--kp-gold));
}
@media (max-width: 991px) {
	.contact_cta h2::after {
		margin-right: auto;
		margin-left: auto;
	}
}
/* Cookie action row correction */
.cookie_actions {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
}
.cookie_actions .button {
	flex: 0 1 auto;
	white-space: nowrap;
}
@media (max-width: 520px) {
	.cookie_actions {
		display: grid;
		grid-template-columns: 1fr;
	}
	.cookie_actions .button {
		width: 100%;
		white-space: normal;
	}
}
/* Cookie action row no-overflow correction */
.cookie_consent,
.cookie_consent_layout,
.cookie_consent_form,
.cookie_actions {
	min-width: 0;
}
.cookie_actions {
	width: 100%;
}
.cookie_actions .button {
	min-width: 0;
	max-width: 100%;
}
@media (max-width: 767px) {
	.cookie_actions {
		display: flex;
		grid-template-columns: none;
		flex-wrap: nowrap;
		gap: 8px;
	}
	.cookie_actions .button {
		flex: 1 1 0;
		width: auto;
		padding: 0 6px;
		font-size: clamp(0.58rem, 1.8vw, 0.72rem);
		line-height: 1.15;
		white-space: normal;
	}
}
.cookie_privacy_link {
	display: inline-flex;
	margin-top: 12px;
	color: var(--kp-gold-light);
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.cookie_privacy_link:hover,
.cookie_privacy_link:focus-visible {
	color: var(--kp-white);
}
/* Mobile production polish: header, accordions, references, fixed controls */
@media (max-width: 767px) {
	.container {
		width: min(100% - 60px, var(--container-width));
	}
	.site_header_content {
		grid-template-columns: minmax(0, 1fr) 72px;
		min-height: 112px;
		padding: 16px 30px 14px;
		gap: 18px;
	}
	.brand {
		min-width: 0;
	}
	.brand img {
		width: min(250px, 62vw);
		height: 82px;
		object-position: left center;
	}
	.mobile_menu_toggle {
		justify-self: end;
		width: 72px;
		height: 72px;
		color: var(--kp-white);
	}
	.mobile_menu_toggle span {
		width: 32px;
		height: 3px;
		margin: 7px auto;
	}
	.mobile_nav {
		inset: 112px 0 0 0;
	}
	.website_fixed_navigations_buttons_wrapper {
		right: 26px;
		bottom: max(144px, env(safe-area-inset-bottom));
		left: auto;
	}
	.website_fixed_navigations_buttons {
		gap: 12px;
		justify-items: end;
	}
	.privacy_settings_button,
	.totop_button {
		width: 58px;
		min-height: 58px;
		background: var(--kp-gold);
		color: #050505;
		border-color: rgba(244, 207, 97, 0.86);
		box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
	}
	.privacy_settings_icon,
	.totop_button_icon {
		width: 28px;
		height: 28px;
	}
	.references_section {
		padding-block: 64px;
	}
	.reference_gallery {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
		margin-top: 28px;
	}
	.reference_lightbox_trigger,
	.reference_gallery picture,
	.reference_image {
		display: block;
		width: 100%;
	}
	.reference_lightbox_trigger {
		min-height: 0;
		padding: 0;
		border: 0;
		background: transparent;
	}
	.reference_gallery picture {
		aspect-ratio: 1 / 0.76;
	}
	.reference_image {
		height: 100%;
		object-fit: cover;
		opacity: 1;
		visibility: visible;
	}
	.service_faq {
		margin-top: clamp(4rem, 14vw, 5.5rem) !important;
		padding-top: 0 !important;
	}
	.service_faq h2 {
		margin: 0 0 1.4rem;
		padding-top: 0.5rem;
		padding-bottom: 1.35rem;
		font-family: var(--font_display);
		font-size: clamp(2rem, 9vw, 2.8rem);
		line-height: 1;
		text-transform: uppercase;
	}
	.service_faq_accordion {
		border-top: 1px solid rgba(213, 173, 61, 0.32);
	}
	.service_faq_item h3 {
		margin: 0;
	}
	.service_faq_trigger {
		min-height: 96px;
		grid-template-columns: 74px minmax(0, 1fr) 48px;
		gap: 18px;
		padding: 24px 0;
	}
	.service_faq_trigger .partner_accordion_number {
		font-size: clamp(2rem, 8.4vw, 2.65rem);
	}
	.service_faq_trigger .partner_accordion_title {
		font-family: 'Inter', Arial, sans-serif;
		font-size: clamp(1.16rem, 4.35vw, 1.45rem);
		font-weight: 800;
		line-height: 1.28;
		text-transform: none;
	}
	.service_faq_trigger .partner_accordion_indicator {
		width: 48px;
		height: 48px;
	}
	.service_faq_trigger .partner_accordion_indicator::before {
		top: 23px;
		left: 12px;
		width: 22px;
	}
	.service_faq_trigger .partner_accordion_indicator::after {
		top: 13px;
		left: 22px;
		height: 22px;
	}
	.service_faq_panel {
		padding: 0 0 26px 74px;
	}
	.service_faq_panel p {
		font-size: 1rem;
		line-height: 1.7;
	}
}
@media (max-width: 430px) {
	.container {
		width: min(100% - 48px, var(--container-width));
	}
	.site_header_content {
		grid-template-columns: minmax(0, 1fr) 62px;
		padding-inline: 24px;
	}
	.brand img {
		width: min(238px, 60vw);
	}
	.mobile_menu_toggle {
		width: 62px;
		height: 62px;
	}
	.reference_gallery {
		grid-template-columns: 1fr;
	}
	.service_faq_trigger {
		grid-template-columns: 64px minmax(0, 1fr) 44px;
		gap: 14px;
	}
	.service_faq_panel {
		padding-left: 64px;
	}
}
/* Mobile follow-up: reference reveal visibility and FAQ grid reset */
@media (max-width: 767px) {
	.reference_gallery .reference_lightbox_trigger,
	.reference_gallery picture {
		width: 100% !important;
		height: auto !important;
		min-width: 0;
		transform: none !important;
	}
	.reference_gallery picture {
		min-height: 178px;
	}
	.reference_gallery .reference_image,
	.reference_gallery .reference_image.is_reveal,
	.reference_gallery .reference_image.is_reveal.is_visible {
		width: 100% !important;
		height: 100% !important;
		min-height: 178px;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
	}
	.service_faq_trigger .partner_accordion_number {
		grid-column: auto !important;
		width: auto;
	}
	.service_faq_trigger .partner_accordion_title {
		grid-column: auto !important;
		width: auto;
	}
	.service_faq_trigger .partner_accordion_indicator {
		grid-column: auto !important;
		justify-self: end;
	}
}
/* Mobile follow-up: reference section single-column reset */
@media (max-width: 767px) {
	.references_layout,
	.references_section .container.references_layout {
		display: grid;
		grid-template-columns: 1fr !important;
		gap: 30px;
		align-items: stretch;
	}
	.reference_gallery {
		width: 100%;
	}
}
/* Fixed controls premium polish */
.website_fixed_navigations_buttons_wrapper {
	z-index: 95;
	right: 30px;
	left: auto;
	bottom: 30px;
}
.website_fixed_navigations_buttons {
	gap: 12px;
	justify-items: end;
}
.privacy_settings_button,
.totop_button {
	width: 56px;
	min-height: 56px;
	padding: 0;
	background: linear-gradient(180deg, #f4cf61 0%, #d5a92e 100%);
	color: #050505;
	border: 1px solid rgba(244, 207, 97, 0.95);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.32);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.privacy_settings_button:hover,
.privacy_settings_button:focus-visible,
.privacy_settings_button[aria-expanded="true"],
.totop_button:hover,
.totop_button:focus-visible {
	background: linear-gradient(180deg, #ffe07a 0%, #e2b63c 100%);
	color: #050505;
	transform: translateY(-2px);
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.54), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}
.privacy_settings_icon,
.totop_button_icon {
	width: 30px;
	height: 30px;
}
.font_awesome_cookie_icon {
	width: 24px;
	height: 24px;
	fill: currentColor;
}
.totop_button_icon::before,
.totop_button_icon::after {
	top: auto;
	left: 50%;
	width: 16px;
	height: 16px;
	border-top: 3px solid currentColor;
	border-left: 3px solid currentColor;
	background: transparent;
	transform: translateX(-50%) rotate(45deg);
	animation: fixed_to_top_chevron 1.45s ease-in-out infinite;
}
.totop_button_icon::before {
	top: 5px;
}
.totop_button_icon::after {
	top: 15px;
	opacity: 0.58;
	animation-delay: 0.18s;
}
.privacy_settings_button_wording,
.totop_button_wording {
	padding: 9px 12px;
	font-size: 0.84rem;
	letter-spacing: 0.06em;
	background: rgba(8, 8, 8, 0.96);
	color: var(--kp-white);
	border-color: rgba(244, 207, 97, 0.46);
}
@keyframes fixed_to_top_chevron {
	0%,
	100% {
		transform: translate(-50%, 2px) rotate(45deg);
		opacity: 0.55;
	}
	45% {
		transform: translate(-50%, -3px) rotate(45deg);
		opacity: 1;
	}
}
@media (max-width: 767px) {
	.website_fixed_navigations_buttons_wrapper {
		right: 26px;
		bottom: max(144px, env(safe-area-inset-bottom));
	}
	.website_fixed_navigations_buttons {
		gap: 12px;
	}
	.privacy_settings_button,
	.totop_button {
		width: 66px;
		min-height: 66px;
	}
	.privacy_settings_icon,
	.totop_button_icon {
		width: 34px;
		height: 34px;
	}
	.font_awesome_cookie_icon {
		width: 28px;
		height: 28px;
	}
	.totop_button_icon::before,
	.totop_button_icon::after {
		width: 18px;
		height: 18px;
		border-top-width: 3px;
		border-left-width: 3px;
	}
	.totop_button_icon::before {
		top: 6px;
	}
	.totop_button_icon::after {
		top: 17px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.totop_button_icon::before,
	.totop_button_icon::after {
		animation: none;
	}
}
