.contact-cta {
	padding: 84px clamp(22px, 1.45vw, 28px) 96px;
	background: #f1eee7;
	color: #fff;
}

.contact-cta__panel {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	min-height: clamp(650px, 44.5vw, 760px);
	overflow: hidden;
	border-radius: 24px;
	background: #111;
}

.contact-cta__image,
.contact-cta__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.contact-cta__image {
	z-index: -2;
	object-fit: cover;
	object-position: center;
}

.contact-cta__shade {
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(4, 5, 5, .62) 0%, rgba(4, 5, 5, .44) 29%, rgba(4, 5, 5, .08) 60%, rgba(4, 5, 5, .02) 100%),
		linear-gradient(0deg, rgba(3, 4, 4, .25), transparent 45%);
}

.contact-cta__content {
	width: min(610px, 45vw);
	margin-left: clamp(48px, 4.5vw, 76px);
	padding: 54px 0 42px;
	text-shadow: 0 2px 18px rgba(0, 0, 0, .36);
}

.contact-cta h2 {
	margin: 0;
	font: 400 clamp(48px, 3.8vw, 66px)/1.04 Arial, "Helvetica Neue", Helvetica, sans-serif;
	letter-spacing: -.035em;
}

.contact-cta__text {
	margin: 30px 0 0;
	color: rgba(255, 255, 255, .76);
	font-size: clamp(18px, 1.25vw, 22px);
	line-height: 1.42;
}

.contact-cta__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 66px;
}

.contact-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 61px;
	padding: 0 28px;
	border: 1px solid transparent;
	border-radius: 11px;
	color: #fff;
	font-size: 18px;
	line-height: 1;
	text-decoration: none;
	text-shadow: none;
	transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
}

.contact-cta__button--primary {
	min-width: 248px;
	background: #1260ff;
	box-shadow: 0 10px 28px rgba(18, 96, 255, .24);
}

.contact-cta__button--primary:hover {
	background: #2a70ff;
	transform: translateY(-2px);
}

.contact-cta__button--secondary {
	min-width: 228px;
	gap: 9px;
	border-color: rgba(255, 255, 255, .84);
	background: rgba(8, 8, 8, .28);
	backdrop-filter: blur(4px);
}

.contact-cta__button--secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .12);
	transform: translateY(-2px);
}

.contact-cta__button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.contact-cta__arrow {
	display: inline-block;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 20px;
	transform: rotate(-45deg);
	transition: transform .22s ease;
}

.contact-cta__button--secondary:hover .contact-cta__arrow {
	transform: translate3d(3px, -3px, 0) rotate(-45deg);
}

.contact-cta__note {
	margin: 20px 0 0;
	color: rgba(255, 255, 255, .58);
	font-size: 16px;
	line-height: 1.4;
}

@media (max-width: 980px) {
	.contact-cta__panel { min-height: 680px; }
	.contact-cta__content { width: min(570px, 58vw); margin-left: 44px; }
	.contact-cta__actions { margin-top: 52px; }
	.contact-cta__button { padding-inline: 22px; }
	.contact-cta__button--primary { min-width: 220px; }
	.contact-cta__button--secondary { min-width: 205px; }
}

@media (max-width: 760px) {
	.contact-cta { padding: 18px; }
	.contact-cta__panel { align-items: flex-end; min-height: 720px; border-radius: 14px; }
	.contact-cta__image { object-position: 64% center; }
	.contact-cta__shade {
		background:
			linear-gradient(0deg, rgba(3, 4, 4, .95) 0%, rgba(3, 4, 4, .82) 47%, rgba(3, 4, 4, .18) 79%, rgba(3, 4, 4, .08) 100%),
			linear-gradient(90deg, rgba(3, 4, 4, .45), rgba(3, 4, 4, .04));
	}
	.contact-cta__content { width: auto; margin: 0; padding: 42px 24px 34px; }
	.contact-cta h2 { font-size: clamp(38px, 11vw, 49px); }
	.contact-cta__text { margin-top: 24px; font-size: 16px; }
	.contact-cta__text br { display: none; }
	.contact-cta__actions { align-items: stretch; flex-direction: column; gap: 12px; margin-top: 34px; }
	.contact-cta__button { width: 100%; min-width: 0; height: 56px; font-size: 16px; }
	.contact-cta__note { margin-top: 17px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
	.contact-cta__button,
	.contact-cta__arrow { transition: none; }
}
