/* =========================================================
   ALSTON CTA SECTION
========================================================= */

.alston-cta {
	position: relative;
	width: 100%;
	min-height: 600px;
	padding: 150px 24px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #000000;
	isolation: isolate;
}

.alston-cta * {
	box-sizing: border-box;
}

/* =========================================================
   BACKGROUND
========================================================= */

.alston-cta__bg,
.alston-cta__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.alston-cta__bg {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	transform: scale(1);
	transition: transform 6s ease;
}

.alston-cta__video {
	object-fit: cover;
}

.alston-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0, 0, 0, 0.72);
}

/* =========================================================
   INNER
========================================================= */

.alston-cta__inner {
	position: relative;
	z-index: 5;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}

.alston-cta__content {
	width: 100%;
	max-width: 960px;
}

/* =========================================================
   EYEBROW
========================================================= */

.alston-cta__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #ffffff;
	font-size: 11px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.alston-cta__eyebrow::before{
	content: "";
	width: 28px;
	height: 1px;
	background: #C9A961;
}

.alston-cta__eyebrow-icon {
	display: none;
}

/* =========================================================
   HEADING
========================================================= */

.alston-cta__heading {
	margin: 0;
	color: #ffffff;
	font-family: "Cormorant Garamond", serif;
	font-size: 78px;
	line-height: 78px;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.alston-cta__heading span {
	font-style: italic;
	color: #C9A961;
}

/* =========================================================
   DESCRIPTION
========================================================= */

.alston-cta__description {
	max-width: 720px;
	margin-top: 26px;
}

.alston-cta__description p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}

/* =========================================================
   BUTTON
========================================================= */

.alston-cta__button {
	margin-top: 42px;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.45);
	padding: 13px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	font-size: 11px;
	font-weight: 600;
	line-height: 21px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: transparent;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease;
}

.alston-cta__button:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #0A0A0A;
}

/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

.alston-cta-reveal {
	opacity: 0;
	transform: translate3d(0, 50px, 0);
	will-change: transform, opacity;
	backface-visibility: hidden;
	transition:
		opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
		transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-cta-reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.alston-cta.is-visible .alston-cta__bg {
	transform: scale(1.06);
}

/* =========================================================
   1025px - 1280px
========================================================= */

@media (min-width: 1025px) and (max-width: 1280px) {

	.alston-cta {
		padding: 120px 32px;
		min-height: 560px;
	}

	.alston-cta__heading {
		font-size: 64px;
		line-height: 66px;
	}
}

/* =========================================================
   768px - 1024px
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

	.alston-cta {
		padding: 110px 24px;
		min-height: 520px;
	}

	.alston-cta__content {
		max-width: 100%;
	}

	.alston-cta__heading {
		font-size: 54px;
		line-height: 58px;
	}

	.alston-cta__description p {
		font-size: 16px;
		line-height: 28px;
	}
}

/* =========================================================
   481px - 767px
========================================================= */

@media (min-width: 481px) and (max-width: 767px) {

	.alston-cta {
		padding: 90px 20px;
		min-height: 480px;
	}

	.alston-cta__heading {
		font-size: 44px;
		line-height: 48px;
	}

	.alston-cta__description {
		margin-top: 22px;
	}

	.alston-cta__description p {
		font-size: 15px;
		line-height: 26px;
	}

	.alston-cta__button {
		margin-top: 34px;
	}
}

/* =========================================================
   0px - 480px
========================================================= */

@media (min-width: 0px) and (max-width: 480px) {

	.alston-cta {
		padding: 80px 16px;
		min-height: 420px;
	}

	.alston-cta__eyebrow {
		margin-bottom: 20px;
		letter-spacing: 0.22em;
	}

	.alston-cta__heading {
		font-size: 38px;
		line-height: 42px;
	}

	.alston-cta__description {
		margin-top: 20px;
	}

	.alston-cta__description p {
		font-size: 14px;
		line-height: 25px;
	}

	.alston-cta__button {
		width: 100%;
		min-height: 54px;
		margin-top: 30px;
		padding: 16px 24px;
	}
}