/**
 * Shared homepage CTA — used on every page.
 *
 * @package Skavend
 */

.cta-banner-section {
	background: #f9f7f2;
	padding: 0 max(24px, 4vw) clamp(32px, 4vw, 48px);
}

.cta-banner-section__wrapper {
	max-width: 1320px;
	margin: 0 auto;
	padding: clamp(52px, 6vw, 80px) clamp(28px, 4vw, 56px);
	display: flex;
	justify-content: center;
	text-align: center;
	background: linear-gradient(135deg, #0a3d2d 0%, #062a1f 55%, #07301f 100%);
	border-radius: 28px;
	box-shadow: 0 28px 60px rgba(10, 48, 36, 0.28);
	overflow: hidden;
	position: relative;
}

.cta-banner-section__wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 25%, rgba(201, 164, 107, 0.14), transparent 45%),
		radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.06), transparent 40%);
	pointer-events: none;
}

.cta-banner-section__content {
	max-width: 760px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 1;
}

.cta-banner-section__eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #c9a46b;
}

.cta-banner-section__title {
	margin: 0 0 14px;
	font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
	font-size: clamp(28px, 3.5vw, 44px);
	font-weight: 700;
	line-height: 1.12;
	color: #ffffff;
}

.cta-banner-section__text {
	max-width: 520px;
	margin: 0 auto 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.65;
}

.cta-banner-section__buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.cta-banner-section__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 54px;
	padding: 0 30px;
	border-radius: 999px;
	font-family: var(--font-sans, 'DM Sans', sans-serif);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cta-banner-section__btn-icon {
	width: 18px;
	height: 18px;
}

.cta-banner-section__btn--primary {
	background: linear-gradient(135deg, #d4a95a 0%, #c9a46b 100%);
	color: #0a3d2d;
	border: none;
	box-shadow: 0 8px 24px rgba(201, 164, 107, 0.35);
}

.cta-banner-section__btn--primary:hover {
	transform: translateY(-3px);
	background: linear-gradient(135deg, #e0bd82 0%, #d4a95a 100%);
}

.cta-banner-section__btn--secondary {
	background: transparent;
	color: #ffffff;
	border: 1.5px solid rgba(255, 255, 255, 0.42);
}

.cta-banner-section__btn--secondary:hover {
	color: #ffffff;
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.75);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
	.cta-banner-section__btn {
		width: 100%;
	}
}
