/*
Theme: Dotyk Piękna
File: assets/css/dp2-contact.css
Description: Dedykowane style strony Kontakt.
*/

/* =========================================================
   01. BLOCKSY I WRAPPER STRONY
   ========================================================= */

body.page-id-53 .entry-header {
	display: none;
}

body.page-id-53 .site-main,
body.page-id-53 .entry-content {
	margin: 0;
	padding: 0;
}

body.page-id-53 .site-main > .ct-container,
body.page-id-53 .site-main > .ct-container-full {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

.entry-content > .dp2-contact-page {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.dp2-contact-page,
.dp2-contact-page *,
.dp2-contact-page *::before,
.dp2-contact-page *::after {
	box-sizing: border-box;
}

.dp2-contact-page {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	overflow-x: clip;
	background: var(--dp2-paper);
	color: var(--dp2-text);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@supports not (overflow: clip) {
	.dp2-contact-page {
		overflow-x: hidden;
	}
}

.dp2-contact-page > section {
	width: 100%;
	max-width: none;
}

.dp2-contact-page h1,
.dp2-contact-page h2,
.dp2-contact-page h3,
.dp2-contact-page p,
.dp2-contact-page figure {
	margin-top: 0;
}

.dp2-contact-page h1,
.dp2-contact-page h2,
.dp2-contact-page h3 {
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 400;
	letter-spacing: -0.04em;
}

.dp2-contact-page h2 {
	font-size: clamp(48px, 4.4vw, 72px);
	line-height: 1.01;
}

.dp2-contact-page h2 em {
	display: inline-block;
	color: var(--dp2-rose);
	font-style: normal;
}

.dp2-contact-page svg {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}


/* =========================================================
   02. HERO
   ========================================================= */

.dp2-contact-hero {
	position: relative;
	display: flex;
	min-height: 650px;
	align-items: center;
	overflow: hidden;
	background: #171513;
	color: #fff;
	isolation: isolate;
}

.dp2-contact-hero__media {
	position: absolute;
	z-index: -3;
	inset: 0 0 0 48%;
	overflow: hidden;
}

.dp2-contact-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	animation: dp2ContactHeroImage 1.4s var(--dp2-ease) both;
}

.dp2-contact-hero__overlay {
	position: absolute;
	z-index: -2;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(16, 14, 13, 1) 0%,
			rgba(16, 14, 13, 0.98) 36%,
			rgba(16, 14, 13, 0.86) 52%,
			rgba(16, 14, 13, 0.27) 74%,
			rgba(16, 14, 13, 0.13) 100%
		);
}

.dp2-contact-hero::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		radial-gradient(
			circle at 18% 78%,
			rgba(231, 160, 163, 0.13),
			transparent 27%
		);
	content: "";
	pointer-events: none;
}

.dp2-contact-hero__content {
	position: relative;
	z-index: 2;
	padding-block: 110px;
}

.dp2-contact-hero__content > * {
	max-width: 650px;
}

.dp2-contact-hero .dp2-kicker {
	color: var(--dp2-gold-light);
	animation: dp2ContactHeroReveal 0.75s var(--dp2-ease) 0.12s both;
}

.dp2-contact-hero h1 {
	max-width: 650px;
	margin: 0;
	color: #fff;
	font-size: clamp(60px, 5vw, 82px);
	line-height: 0.97;
	animation: dp2ContactHeroReveal 0.85s var(--dp2-ease) 0.24s both;
}

.dp2-contact-hero h1 em {
	color: var(--dp2-rose);
	font-style: normal;
}

.dp2-contact-hero .dp2-rule {
	animation: dp2ContactHeroRule 0.7s var(--dp2-ease) 0.42s both;
}

.dp2-contact-hero__lead {
	max-width: 560px;
	margin: 0 0 35px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.82;
	animation: dp2ContactHeroReveal 0.75s var(--dp2-ease) 0.5s both;
}

.dp2-contact-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	animation: dp2ContactHeroReveal 0.75s var(--dp2-ease) 0.62s both;
}

.dp2-contact-hero__outline {
	border-color: rgba(255, 255, 255, 0.65) !important;
	background: transparent !important;
	color: #fff !important;
}

.dp2-contact-hero__outline:hover {
	border-color: #fff !important;
	background: #fff !important;
	color: var(--dp2-black) !important;
}

@keyframes dp2ContactHeroImage {
	from {
		opacity: 0.82;
		transform: scale(1.05);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes dp2ContactHeroReveal {
	from {
		opacity: 0;
		transform: translate3d(0, 25px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes dp2ContactHeroRule {
	from {
		opacity: 0;
		transform: scaleX(0);
	}

	to {
		opacity: 1;
		transform: scaleX(1);
	}
}


/* =========================================================
   03. SZYBKI KONTAKT
   ========================================================= */

.dp2-contact-quick {
	position: relative;
	z-index: 4;
	background: var(--dp2-paper);
}

.dp2-contact-quick__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-left: 1px solid var(--dp2-line);
}

.dp2-contact-quick__item {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	min-height: 155px;
	padding: 28px 25px;
	border-right: 1px solid var(--dp2-line);
	border-bottom: 1px solid var(--dp2-line);
	color: var(--dp2-text) !important;
	text-decoration: none !important;
	transition:
		background-color 350ms ease,
		transform 350ms var(--dp2-ease),
		box-shadow 350ms ease;
}

a.dp2-contact-quick__item:hover {
	z-index: 2;
	background: #fff;
	box-shadow: var(--dp2-shadow-sm);
	transform: translate3d(0, -4px, 0);
}

.dp2-contact-quick__icon {
	display: flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(185, 133, 67, 0.38);
	border-radius: 50%;
	color: var(--dp2-gold);
	transition:
		background-color 350ms ease,
		color 350ms ease,
		transform 350ms var(--dp2-ease);
}

.dp2-contact-quick__item:hover .dp2-contact-quick__icon {
	background: var(--dp2-gold);
	color: #fff;
	transform: scale(1.04);
}

.dp2-contact-quick__icon svg {
	width: 25px;
	height: 25px;
}

.dp2-contact-quick__item > span:last-child {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.dp2-contact-quick__item small {
	margin-bottom: 4px;
	color: var(--dp2-gold);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.dp2-contact-quick__item strong {
	color: var(--dp2-ink);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.25;
}

.dp2-contact-quick__item em {
	margin-top: 3px;
	color: var(--dp2-muted);
	font-size: 11px;
	font-style: normal;
	line-height: 1.5;
}


/* =========================================================
   04. KONTAKT I REZERWACJA
   ========================================================= */

.dp2-contact-main {
	position: relative;
	overflow: hidden;
	padding-block: clamp(105px, 9vw, 155px);
	background:
		radial-gradient(
			circle at 7% 22%,
			rgba(231, 160, 163, 0.09),
			transparent 28%
		),
		var(--dp2-paper);
}

.dp2-contact-main::after {
	position: absolute;
	top: 8%;
	right: -140px;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(185, 133, 67, 0.11);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.dp2-contact-main__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
	align-items: center;
	gap: clamp(75px, 8vw, 130px);
}

.dp2-contact-main__content {
	max-width: 650px;
}

.dp2-contact-main__content h2 {
	margin: 0;
}

.dp2-contact-main__lead {
	max-width: 590px;
	margin: 0;
	color: var(--dp2-muted);
	font-size: 15px;
	line-height: 1.85;
}

.dp2-contact-main__options {
	margin-top: 40px;
	border-bottom: 1px solid var(--dp2-line);
}

.dp2-contact-main__options article {
	position: relative;
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 22px;
	padding: 24px 18px 24px 0;
	border-top: 1px solid var(--dp2-line);
	transition: padding-left 350ms var(--dp2-ease), background-color 350ms ease;
}

.dp2-contact-main__options article::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--dp2-gold);
	content: "";
	transition: width 500ms var(--dp2-ease);
}

.dp2-contact-main__options article:hover {
	padding-left: 16px;
	background: rgba(247, 236, 230, 0.38);
}

.dp2-contact-main__options article:hover::before {
	width: 100%;
}

.dp2-contact-main__options article > span {
	padding-top: 5px;
	color: var(--dp2-gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.dp2-contact-main__options h3 {
	margin: 0 0 7px;
	color: var(--dp2-ink);
	font-size: 22px;
}

.dp2-contact-main__options p {
	max-width: 500px;
	margin: 0 0 13px;
	color: var(--dp2-muted);
	font-size: 13px;
	line-height: 1.72;
}

.dp2-contact-main__options .dp2-text-link {
	font-size: 10px;
}

.dp2-contact-main__media {
	position: relative;
	min-height: 740px;
}

.dp2-contact-main__image {
	position: absolute;
	top: 0;
	right: 0;
	width: 88%;
	height: 82%;
	margin: 0;
	overflow: hidden;
	background: var(--dp2-cream-deep);
	box-shadow: var(--dp2-shadow-md);
}

.dp2-contact-main__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--dp2-ease);
}

.dp2-contact-main__media:hover {
	--dp2-image-scale: 1.065;
}

.dp2-contact-main__card {
	position: absolute;
	z-index: 3;
	bottom: 0;
	left: 0;
	width: min(430px, 68%);
	padding: 38px;
	background: rgba(17, 16, 15, 0.97);
	color: #fff;
	box-shadow: var(--dp2-shadow-lg);
}

.dp2-contact-main__card-kicker {
	margin: 0 0 13px;
	color: var(--dp2-gold-light);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.dp2-contact-main__card h3 {
	margin: 0 0 15px;
	color: #fff;
	font-size: 31px;
	line-height: 1.07;
}

.dp2-contact-main__card > p:not(.dp2-contact-main__card-kicker) {
	margin: 0 0 25px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
	line-height: 1.75;
}


/* =========================================================
   05. MAPA
   ========================================================= */

.dp2-contact-location {
	position: relative;
	padding-block: clamp(95px, 8vw, 135px) 0;
	overflow: hidden;
	background: #f7eee9;
}

.dp2-contact-location__header {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 58px;
}

.dp2-contact-location__header h2 {
	margin: 0;
}

.dp2-contact-location__copy {
	max-width: 520px;
}

.dp2-contact-location__copy p {
	margin: 0 0 24px;
	color: var(--dp2-muted);
	font-size: 15px;
	line-height: 1.82;
}

.dp2-contact-location__map {
	position: relative;
	overflow: hidden;
	background: #e9dfd9;
}

.dp2-contact-location__map iframe {
	display: block;
	width: 100%;
	min-height: 560px;
	filter: saturate(0.78) sepia(0.08);
}

.dp2-contact-location__badge {
	position: absolute;
	z-index: 3;
	bottom: 35px;
	left: max(24px, calc((100vw - var(--dp2-shell)) / 2));
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: center;
	gap: 15px;
	max-width: calc(100% - 48px);
	padding: 20px 24px;
	background: rgba(17, 16, 15, 0.96);
	color: #fff;
	box-shadow: var(--dp2-shadow-md);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.dp2-contact-location__badge > span {
	display: flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(185, 133, 67, 0.5);
	border-radius: 50%;
	color: var(--dp2-gold-light);
	font-family: Georgia, serif;
	font-size: 28px;
}

.dp2-contact-location__badge strong {
	display: block;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 18px;
	font-weight: 400;
}

.dp2-contact-location__badge small {
	display: block;
	margin-top: 3px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 11px;
}


/* =========================================================
   06. PRZED WIZYTĄ
   ========================================================= */

.dp2-contact-before {
	position: relative;
	overflow: hidden;
	padding-block: clamp(105px, 8vw, 145px);
	background: var(--dp2-paper);
}

.dp2-contact-before__header {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
	align-items: end;
	gap: 80px;
	margin-bottom: 65px;
}

.dp2-contact-before__header h2 {
	margin: 0;
}

.dp2-contact-before__header > p {
	max-width: 510px;
	margin: 0;
	color: var(--dp2-muted);
	font-size: 15px;
	line-height: 1.82;
}

.dp2-contact-before__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--dp2-line);
	border-left: 1px solid var(--dp2-line);
}

.dp2-contact-before__grid article {
	position: relative;
	min-height: 320px;
	padding: 38px;
	border-right: 1px solid var(--dp2-line);
	border-bottom: 1px solid var(--dp2-line);
	transition:
		background-color 350ms ease,
		box-shadow 350ms ease,
		transform 350ms var(--dp2-ease);
}

.dp2-contact-before__grid article::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 2px;
	background: var(--dp2-gold);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 450ms var(--dp2-ease);
}

.dp2-contact-before__grid article:hover {
	z-index: 2;
	background: #fff;
	box-shadow: var(--dp2-shadow-md);
	transform: translate3d(0, -5px, 0);
}

.dp2-contact-before__grid article:hover::before {
	transform: scaleX(1);
}

.dp2-contact-before__number {
	display: block;
	margin-bottom: 58px;
	color: var(--dp2-gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.18em;
}

.dp2-contact-before__grid h3 {
	margin: 0 0 15px;
	color: var(--dp2-ink);
	font-size: 27px;
	line-height: 1.12;
}

.dp2-contact-before__grid p {
	margin: 0;
	color: var(--dp2-muted);
	font-size: 13px;
	line-height: 1.76;
}


/* =========================================================
   07. FAQ
   ========================================================= */

.dp2-contact-faq {
	position: relative;
	overflow: hidden;
	padding-block: clamp(105px, 9vw, 155px);
	background: var(--dp2-black-soft);
	color: #fff;
}

.dp2-contact-faq::after {
	position: absolute;
	right: -150px;
	bottom: -170px;
	width: 430px;
	height: 430px;
	border: 1px solid rgba(185, 133, 67, 0.11);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.dp2-contact-faq__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: clamp(75px, 9vw, 135px);
}

.dp2-contact-faq__heading {
	position: sticky;
	top: 125px;
}

.dp2-contact-faq__heading h2 {
	margin: 0 0 27px;
	color: #fff;
}

.dp2-contact-faq__heading > p:not(.dp2-kicker) {
	max-width: 420px;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 1.78;
}

.dp2-contact-faq__heading a {
	color: var(--dp2-gold-light);
	text-decoration: none;
}

.dp2-contact-faq__list {
	border-bottom: 1px solid var(--dp2-line-light);
}

.dp2-contact-faq details {
	border-top: 1px solid var(--dp2-line-light);
}

.dp2-contact-faq summary {
	position: relative;
	display: flex;
	min-height: 92px;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	padding: 25px 5px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
}

.dp2-contact-faq summary::-webkit-details-marker {
	display: none;
}

.dp2-contact-faq summary > span {
	position: relative;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(185, 133, 67, 0.48);
	border-radius: 50%;
}

.dp2-contact-faq summary > span::before,
.dp2-contact-faq summary > span::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 1px;
	background: var(--dp2-gold-light);
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 300ms var(--dp2-ease);
}

.dp2-contact-faq summary > span::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.dp2-contact-faq details[open] summary > span::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.dp2-contact-faq details > p {
	max-width: 720px;
	margin: -5px 55px 28px 0;
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	line-height: 1.8;
}


/* =========================================================
   08. KOŃCOWE CTA
   ========================================================= */

.dp2-contact-cta {
	position: relative;
	display: flex;
	min-height: 700px;
	align-items: center;
	overflow: hidden;
	background: #171513;
	color: #fff;
	isolation: isolate;
}

.dp2-contact-cta__media {
	position: absolute;
	z-index: -3;
	inset: 0;
	overflow: hidden;
}

.dp2-contact-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.82);
}

.dp2-contact-cta__overlay {
	position: absolute;
	z-index: -2;
	inset: 0;
	background:
		linear-gradient(
			90deg,
			rgba(16, 14, 13, 0.97) 0%,
			rgba(16, 14, 13, 0.9) 39%,
			rgba(16, 14, 13, 0.54) 67%,
			rgba(16, 14, 13, 0.28) 100%
		);
}

.dp2-contact-cta::after {
	position: absolute;
	z-index: -1;
	inset: 0;
	background: linear-gradient(0deg, rgba(16, 14, 13, 0.34), transparent 42%);
	content: "";
}

.dp2-contact-cta__content {
	position: relative;
	z-index: 2;
	padding-block: 110px;
}

.dp2-contact-cta__content > * {
	max-width: 690px;
}

.dp2-contact-cta h2 {
	margin: 0;
	color: #fff;
}

.dp2-contact-cta__content > p:not(.dp2-kicker) {
	max-width: 560px;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
	line-height: 1.82;
}

.dp2-contact-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;
	margin-top: 35px;
}

.dp2-contact-cta__outline {
	border-color: rgba(255, 255, 255, 0.68) !important;
	background: transparent !important;
	color: #fff !important;
}

.dp2-contact-cta__outline:hover {
	border-color: #fff !important;
	background: #fff !important;
	color: var(--dp2-black) !important;
}


/* =========================================================
   09. TABLET
   ========================================================= */

@media (max-width: 1100px) {
	.dp2-contact-quick__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.dp2-contact-main__grid {
		gap: 65px;
	}

	.dp2-contact-main__media {
		min-height: 650px;
	}

	.dp2-contact-before__grid article {
		padding: 32px;
	}
}

@media (max-width: 900px) {
	.dp2-contact-hero__media {
		inset: 0 0 0 42%;
	}

	.dp2-contact-main__grid,
	.dp2-contact-location__header,
	.dp2-contact-before__header,
	.dp2-contact-faq__grid {
		grid-template-columns: 1fr;
	}

	.dp2-contact-main__grid {
		gap: 80px;
	}

	.dp2-contact-main__content,
	.dp2-contact-location__copy,
	.dp2-contact-before__header > p {
		max-width: 720px;
	}

	.dp2-contact-main__media {
		width: min(760px, 100%);
		min-height: 720px;
		margin-inline: auto;
	}

	.dp2-contact-location__header,
	.dp2-contact-before__header {
		gap: 27px;
	}

	.dp2-contact-before__grid {
		grid-template-columns: 1fr;
	}

	.dp2-contact-before__grid article {
		min-height: 245px;
	}

	.dp2-contact-before__number {
		margin-bottom: 38px;
	}

	.dp2-contact-faq__grid {
		gap: 55px;
	}

	.dp2-contact-faq__heading {
		position: static;
		max-width: 700px;
	}
}


/* =========================================================
   10. MOBILE
   ========================================================= */

@media (max-width: 760px) {
	.dp2-contact-page h2 {
		font-size: clamp(39px, 10.8vw, 50px);
	}

	.dp2-contact-hero {
		min-height: 720px;
		align-items: flex-end;
	}

	.dp2-contact-hero__media {
		inset: 0;
	}

	.dp2-contact-hero__media img {
		object-position: 67% center;
	}

	.dp2-contact-hero__overlay {
		background:
			linear-gradient(
				0deg,
				rgba(16, 14, 13, 0.98) 0%,
				rgba(16, 14, 13, 0.88) 52%,
				rgba(16, 14, 13, 0.23) 100%
			);
	}

	.dp2-contact-hero__content {
		padding-block: 95px 68px;
	}

	.dp2-contact-hero h1 {
		max-width: 590px;
		font-size: clamp(46px, 13vw, 60px);
	}

	.dp2-contact-hero__lead {
		max-width: 520px;
		font-size: 14px;
	}

	.dp2-contact-hero__actions,
	.dp2-contact-cta__actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.dp2-contact-quick__grid {
		grid-template-columns: 1fr;
	}

	.dp2-contact-quick__item {
		min-height: 125px;
		padding: 23px 20px;
	}

	.dp2-contact-main,
	.dp2-contact-before,
	.dp2-contact-faq {
		padding-block: 82px;
	}

	.dp2-contact-main::after {
		display: none;
	}

	.dp2-contact-main__grid {
		gap: 62px;
	}

	.dp2-contact-main__options article {
		grid-template-columns: 40px minmax(0, 1fr);
		gap: 13px;
		padding-block: 20px;
	}

	.dp2-contact-main__options article:hover {
		padding-left: 8px;
	}

	.dp2-contact-main__media {
		min-height: 535px;
	}

	.dp2-contact-main__image {
		width: 91%;
		height: 77%;
	}

	.dp2-contact-main__card {
		width: min(360px, 82%);
		padding: 27px;
	}

	.dp2-contact-main__card h3 {
		font-size: 26px;
	}

	.dp2-contact-location {
		padding-top: 82px;
	}

	.dp2-contact-location__header {
		margin-bottom: 42px;
	}

	.dp2-contact-location__map iframe {
		min-height: 460px;
	}

	.dp2-contact-location__badge {
		right: 15px;
		bottom: 18px;
		left: 15px;
		max-width: none;
		padding: 16px;
	}

	.dp2-contact-before__header {
		margin-bottom: 45px;
	}

	.dp2-contact-before__grid article {
		min-height: 225px;
		padding: 29px;
	}

	.dp2-contact-faq__grid {
		gap: 45px;
	}

	.dp2-contact-faq summary {
		min-height: 82px;
		padding-block: 21px;
		font-size: 19px;
	}

	.dp2-contact-faq details > p {
		margin-right: 0;
		font-size: 13px;
	}

	.dp2-contact-cta {
		min-height: 680px;
		align-items: flex-end;
	}

	.dp2-contact-cta__media img {
		object-position: 62% center;
	}

	.dp2-contact-cta__overlay {
		background:
			linear-gradient(
				0deg,
				rgba(16, 14, 13, 0.98) 0%,
				rgba(16, 14, 13, 0.88) 52%,
				rgba(16, 14, 13, 0.23) 100%
			);
	}

	.dp2-contact-cta__content {
		padding-block: 90px 70px;
	}
}

@media (max-width: 430px) {
	.dp2-contact-main__media {
		min-height: 485px;
	}

	.dp2-contact-main__card {
		width: min(330px, 88%);
		padding: 23px;
	}

	.dp2-contact-location__badge {
		grid-template-columns: 38px minmax(0, 1fr);
	}

	.dp2-contact-location__badge > span {
		width: 38px;
		height: 38px;
	}
}


/* =========================================================
   11. OGRANICZENIE RUCHU
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
	.dp2-contact-page *,
	.dp2-contact-page *::before,
	.dp2-contact-page *::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}

	.dp2-contact-page [data-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}

	.dp2-contact-page [data-parallax="image"] img {
		transform: none !important;
	}
}
