/* =========================================================
   WHY CHOOSE ALSTON + ABOUT
========================================================= */

.alston-why-about {
	width: 100%;
	background: #FAFAFA;
	padding: 120px 0;
	overflow: hidden;
	border-top: 1px solid #F0F0F0;
	border-bottom: 1px solid #F0F0F0;
}

.alston-why-about__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 64px;
}

.alston-why-about__header {
	max-width: 980px;
	margin: 0 auto 72px;
	text-align: center;
}

.alston-why-about__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 24px;
	color: #555555;
	font-size: 11px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.alston-why-about__eyebrow::before,
.alston-why-about__eyebrow::after {
	content: "";
	width: 28px;
	height: 1px;
	background: #C9A961;
}

.alston-why-about__title {
	margin: 0;
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(42px, 5vw, 78px);
	line-height: 1;
	font-weight: 400;
	letter-spacing: -0.02em;
}

.alston-why-about__title em {
	font-style: italic;
	color: #C9A961;
}

.alston-why-about__description {
	max-width: 980px;
	margin: 26px auto 0;
	color: #555555;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
}

.alston-why-about__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #E8E8E8;
	border: 1px solid #E8E8E8;
}

.alston-why-about-card {
	background: #FAFAFA;
	padding: 48px 36px;
	transition:
		background 0.35s ease,
		transform 0.35s ease;
}

.alston-why-about-card:hover {
	background: #FFFFFF;
}

.alston-why-about-card__icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 28px;
}

.alston-why-about-card__icon img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	display: block;
	filter: brightness(0);
	opacity: 0.88;
	transition:
		opacity 0.35s ease,
		transform 0.35s ease;
}

.alston-why-about-card:hover .alston-why-about-card__icon img {
	opacity: 1;
	transform: scale(1.08);
}

.alston-why-about-card h3 {
	margin: 0 0 12px;
	color: #1A1A1A;
	font-family: "Cormorant Garamond", serif;
	font-size: 26px;
	line-height: 32px;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.alston-why-about-card p {
	margin: 0;
	color: #555555;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
}

.alston-why-about__about {
	margin-top: 64px;
	padding: 46px 52px;
	background: #0A0A0A;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 48px;
	position: relative;
	overflow: hidden;
}

.alston-why-about__about::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 88% 18%, rgba(201, 169, 97, 0.16), transparent 32%),
		linear-gradient(135deg, rgba(255,255,255,0.04), transparent 45%);
	pointer-events: none;
}

.alston-why-about__about-content,
.alston-why-about__about-action {
	position: relative;
	z-index: 2;
}

.alston-why-about__about-label {
	display: inline-block;
	margin-bottom: 16px;
	color: #C9A961;
	font-size: 11px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.26em;
	text-transform: uppercase;
}

.alston-why-about__about h3 {
	max-width: 720px;
	margin: 0 0 18px;
	color: #FFFFFF;
	font-family: "Cormorant Garamond", serif;
	font-size: 42px;
	line-height: 52px;
	font-weight: 400;
	letter-spacing: -0.015em;
}

.alston-why-about__about p {
	max-width: 820px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 15px;
	line-height: 27px;
	font-weight: 400;
}

.alston-why-about__button {
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.45);
	padding: 11px 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-why-about__button:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #0A0A0A;
}

.alston-why-about__button-icon {
	display: none;
}

/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

.alston-why-about-reveal {
	opacity: 0;
	transform: translateY(42px);
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-why-about-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.alston-why-about__grid .alston-why-about-reveal:nth-child(1) {
	transition-delay: 0.05s;
}

.alston-why-about__grid .alston-why-about-reveal:nth-child(2) {
	transition-delay: 0.1s;
}

.alston-why-about__grid .alston-why-about-reveal:nth-child(3) {
	transition-delay: 0.15s;
}

.alston-why-about__grid .alston-why-about-reveal:nth-child(4) {
	transition-delay: 0.2s;
}

.alston-why-about__grid .alston-why-about-reveal:nth-child(5) {
	transition-delay: 0.25s;
}

.alston-why-about__grid .alston-why-about-reveal:nth-child(6) {
	transition-delay: 0.3s;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (min-width: 1025px) and (max-width: 1366px) {
	.alston-why-about {
		padding: 100px 0;
	}

	.alston-why-about__inner {
		max-width: 100%;
		padding-left: 40px;
		padding-right: 40px;
	}

	.alston-why-about-card {
		padding: 42px 30px;
	}

	.alston-why-about__about {
		padding: 42px 44px;
	}
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {
	.alston-why-about {
		padding: 90px 0;
	}

	.alston-why-about__inner {
		max-width: 100%;
		padding-left: 28px;
		padding-right: 28px;
	}

	.alston-why-about__header {
		margin-bottom: 56px;
	}

	.alston-why-about__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.alston-why-about-card {
		padding: 40px 30px;
	}

	.alston-why-about__about {
		margin-top: 52px;
		padding: 42px 36px;
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.alston-why-about__about-action {
		justify-self: start;
	}
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
	.alston-why-about {
		padding: 72px 0;
	}

	.alston-why-about__inner {
		max-width: 100%;
		padding-left: 20px;
		padding-right: 20px;
	}

	.alston-why-about__header {
		margin-bottom: 42px;
		text-align: left;
	}

	.alston-why-about__eyebrow {
		justify-content: flex-start;
		margin-bottom: 20px;
		letter-spacing: 0.22em;
	}

	.alston-why-about__eyebrow::after {
		display: none;
	}

	.alston-why-about__title {
		font-size: 42px;
		line-height: 46px;
	}

	.alston-why-about__description {
		margin-top: 20px;
		font-size: 15px;
		line-height: 26px;
	}

	.alston-why-about__grid {
		grid-template-columns: 1fr;
	}

	.alston-why-about-card {
		padding: 34px 26px;
	}

	.alston-why-about-card__icon {
		width: 52px;
		height: 52px;
		margin-bottom: 22px;
	}

	.alston-why-about-card__icon img {
		width: 40px;
		height: 40px;
	}

	.alston-why-about-card h3 {
		font-size: 25px;
		line-height: 30px;
	}

	.alston-why-about__about {
		margin-top: 42px;
		padding: 34px 26px;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.alston-why-about__about h3 {
		font-size: 34px;
		line-height: 38px;
	}

	.alston-why-about__about p {
		font-size: 14px;
		line-height: 25px;
	}

	.alston-why-about__button {
		width: 100%;
		padding: 12px 20px;
	}
}