.plc-widget {
	--plc-accent: #b63b16;
	--plc-map-x: 50%;
	--plc-map-y: 50%;
	direction: rtl;
	display: flex;
	width: 100%;
	min-width: 0;
	overflow: hidden;
	background: #fff;
	border-radius: 18px;
	box-sizing: border-box;
}

.plc-widget *,
.plc-widget *::before,
.plc-widget *::after {
	box-sizing: border-box;
}

.plc-map-side-left {
	flex-direction: row-reverse;
}

.plc-map-column {
	display: flex;
	flex: 0 1 58%;
	flex-direction: column;
	min-width: 0;
	background: #fff;
}

.plc-form-column {
	flex: 1 1 0;
	min-width: 0;
	padding: 34px 34px 28px;
	background: #f1f1f1;
}

.plc-map-media {
	position: relative;
	height: 320px;
	overflow: hidden;
}

.plc-map-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--plc-map-x) var(--plc-map-y);
	opacity: 1 !important;
	filter: none !important;
	transform: none !important;
}

.plc-map-fade::after {
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 92%);
	content: '';
	pointer-events: none;
}

.plc-callout-area {
	padding: 28px 42px 32px;
}

.plc-heading {
	margin: 0;
	color: #111;
	font-weight: 800;
	letter-spacing: -.035em;
}

.plc-heading span {
	display: block;
}

.plc-highlight {
	color: #b63b16;
}

.plc-callout {
	font-size: clamp(2rem, 4vw, 4.3rem);
	line-height: 1.05;
}

.plc-form-heading {
	font-size: clamp(1.85rem, 3.15vw, 3.45rem);
	line-height: 1.06;
}

.plc-socials {
	direction: ltr;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
	margin-top: 34px;
}

.plc-social-link {
	display: inline-grid;
	place-items: center;
	color: #111;
	font-size: 30px;
	line-height: 1;
	text-decoration: none;
	transition: color .2s ease, transform .2s ease;
}

.plc-social-link:hover {
	color: var(--plc-accent);
	transform: translateY(-2px);
}

.plc-social-link:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.plc-social-link svg,
.plc-social-link i {
	display: block;
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.plc-form {
	margin-top: 24px;
}

.plc-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.plc-option {
	position: relative;
}

.plc-option-input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.plc-option-label {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 7px 14px;
	border: 1px solid #292929;
	border-radius: 13px;
	background: transparent;
	color: #171717;
	cursor: pointer;
	font-size: .86rem;
	font-weight: 600;
	line-height: 1.25;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .12s ease;
	user-select: none;
}

.plc-option-label:active {
	transform: scale(.97);
}

.plc-option-input:checked + .plc-option-label {
	border-color: var(--plc-accent);
	background: var(--plc-accent);
	color: #fff;
}

.plc-option-input:focus-visible + .plc-option-label {
	outline: 3px solid rgba(182, 59, 22, .3);
	outline-offset: 2px;
}

.plc-fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 25px;
}

.plc-field-wrap {
	display: block;
}

.plc-field {
	display: block;
	width: 100%;
	min-height: 42px;
	padding: 8px 12px;
	border: 0;
	border-bottom: 1.5px solid #333;
	border-radius: 0;
	outline: 0;
	background: transparent;
	box-shadow: none;
	color: #151515;
	font: inherit;
	line-height: 1.45;
	text-align: right;
	transition: border-color .2s ease, background-color .2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.plc-field::placeholder {
	color: currentColor;
	opacity: .78;
}

.plc-field:focus {
	border-bottom-color: var(--plc-accent);
	background: rgba(255, 255, 255, .46);
}

.plc-message {
	min-height: 84px;
	resize: vertical;
}

.plc-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.plc-submit {
	display: block;
	width: 100%;
	min-height: 48px;
	margin-top: 24px;
	padding: 10px 22px;
	border: 0;
	border-radius: 16px;
	background: var(--plc-accent);
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	transition: filter .18s ease, transform .12s ease, opacity .18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.plc-submit:hover {
	color: #fff;
	filter: brightness(.94);
}

.plc-submit:active {
	transform: scale(.99);
}

.plc-submit:focus-visible {
	outline: 3px solid rgba(182, 59, 22, .32);
	outline-offset: 3px;
}

.plc-submit:disabled {
	cursor: wait;
	opacity: .65;
}

.plc-status {
	min-height: 1.5em;
	margin-top: 10px;
	font-size: .86rem;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
}

.plc-status.is-success {
	color: #167044;
}

.plc-status.is-error {
	color: #a51f1f;
}

.plc-widget .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

@media (max-width: 767px) {
	.plc-widget,
	.plc-map-side-left {
		flex-direction: column;
	}

	.plc-mobile-map-bottom,
	.plc-map-side-left.plc-mobile-map-bottom {
		flex-direction: column-reverse;
	}

	.plc-map-column,
	.plc-form-column {
		flex-basis: auto !important;
		width: 100%;
	}

	.plc-map-media {
		height: 210px;
	}

	.plc-callout-area {
		padding: 24px 20px 26px;
	}

	.plc-callout {
		font-size: clamp(1.9rem, 10vw, 3rem);
	}

	.plc-socials {
		justify-content: flex-start;
		margin-top: 24px;
	}

	.plc-form-column {
		padding: 24px 20px 22px;
	}

	.plc-form-heading {
		font-size: clamp(1.75rem, 8vw, 2.65rem);
	}

	.plc-option-label {
		min-height: 36px;
		padding: 6px 11px;
		font-size: .8rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.plc-widget *,
	.plc-widget *::before,
	.plc-widget *::after {
		transition-duration: .01ms !important;
	}
}
