.pk-kontakt {
	display: grid;
	grid-template-columns: minmax( 0, 1.08fr ) minmax( 320px, 0.92fr );
	gap: 28px;
	align-items: start;
}

.pk-kontakt__content,
.pk-kontakt__photo,
.pk-kontakt__map-card {
	background: linear-gradient( 180deg, rgba( 255, 255, 255, 0.98 ), rgba( 240, 245, 250, 0.94 ) );
	border: 1px solid rgba( 22, 42, 64, 0.09 );
	border-radius: 24px;
	box-shadow: 0 14px 34px rgba( 15, 37, 64, 0.08 );
}

.pk-kontakt__content {
	padding: 30px;
}

.pk-kontakt__eyebrow {
	margin: 0 0 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-size: 0.72rem;
	font-weight: 700;
	color: var( --primary );
}

.pk-kontakt__title {
	margin: 0;
	font-family: var( --font-display, 'Fraunces', serif );
	font-size: clamp( 1.8rem, 3vw, 2.6rem );
	line-height: 1.06;
	letter-spacing: -0.03em;
	color: var( --text );
}

.pk-kontakt__panels {
	display: grid;
	gap: 16px;
	margin-top: 24px;
}

.pk-kontakt__panel {
	padding: 18px 18px 16px;
	background: rgba( 255, 255, 255, 0.74 );
	border: 1px solid rgba( 22, 42, 64, 0.08 );
	border-radius: 18px;
}

.pk-kontakt__panel--invoice {
	background: linear-gradient( 180deg, rgba( 52, 152, 219, 0.08 ), rgba( 255, 255, 255, 0.8 ) );
}

.pk-kontakt__panel-label {
	margin: 0 0 8px;
	font-size: 0.78rem;
	line-height: 1.2;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var( --primary-dark );
}

.pk-kontakt__panel-text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: var( --text-soft );
}

.pk-kontakt__media {
	display: grid;
	gap: 18px;
}

.pk-kontakt__photo {
	overflow: hidden;
	min-height: 240px;
}

.pk-kontakt__photo img {
	width: 100%;
	height: 100%;
	min-height: 240px;
	object-fit: cover;
}

.pk-kontakt__map-card {
	padding: 14px;
}

.pk-kontakt__map {
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid rgba( 22, 42, 64, 0.08 );
	background: var( --surface-muted );
}

.pk-kontakt__map iframe {
	display: block;
	width: 100%;
	height: 320px;
	border: 0;
}

.pk-kontakt__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	padding: 12px 18px;
	border-radius: 999px;
	background: var( --primary );
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 14px 28px rgba( 52, 152, 219, 0.24 );
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pk-kontakt__button::after {
	content: '';
	display: inline-block;
	flex: 0 0 16px;
	width: 16px;
	height: 16px;
	background: currentColor;
	mask: url( '../assets/lucide-arrow-right.svg' ) no-repeat center / contain;
	-webkit-mask: url( '../assets/lucide-arrow-right.svg' ) no-repeat center / contain;
}

.pk-kontakt__button:hover,
.pk-kontakt__button:focus-visible {
	background: var( --primary-dark );
	color: #ffffff;
	transform: translateY( -2px );
	box-shadow: 0 18px 34px rgba( 26, 111, 160, 0.28 );
}

@media ( max-width: 960px ) {
	.pk-kontakt {
		grid-template-columns: 1fr;
	}
}

@media ( max-width: 640px ) {
	.pk-kontakt__content {
		padding: 24px;
	}

	.pk-kontakt__map iframe {
		height: 280px;
	}
}
