.stages {
	position: relative;
	background: var(--color-surface-light);
	padding: 90px 0 120px;
}

.stages__heading {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 0 0 48px;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: var(--font-weight-h2);
	color: var(--color-bg-alt);
}

.stages__list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.stages__list--triple {
	grid-template-columns: repeat(3, 1fr);
}

.stage-card {
	padding: 40px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.5);
}

.stage-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.stage-card__title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--color-bg-alt);
}

.stage-card__index {
	flex-shrink: 0;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	color: var(--color-muted-warm);
}

.stage-card__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.7;
	color: var(--color-muted-warm);
}

.stages__row {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.stages__photo {
	border-radius: 20px;
	overflow: hidden;
}

.stages__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.stages__photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--color-card);
}

.stages__photo--placeholder span {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	color: var(--color-muted-warm);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.stages__row-col {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.stages__row-col .stage-card,
.stage-quote {
	flex: 1;
}

.stage-quote {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	border-radius: 20px;
	background: var(--color-bg-alt);
}

.stage-quote__text {
	margin: 0;
	max-width: 420px;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	color: var(--color-text);
}

/* Decorative extras */

.stages__watermark {
	position: absolute;
	top: 8px;
	right: 22%;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(65, 23, 20, 0.12);
	pointer-events: none;
}

.stages__ring {
	position: absolute;
	top: -60px;
	right: 14%;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	border: 1px dashed rgba(65, 23, 20, 0.15);
	pointer-events: none;
}

.stages__grid-dots {
	position: absolute;
	top: 40px;
	left: var(--container-padding);
	width: 120px;
	height: 60px;
	background-image: radial-gradient(rgba(65, 23, 20, 0.2) 1px, transparent 1px);
	background-size: 18px 18px;
	pointer-events: none;
}

/* Breakpoints: 1440 / 1280 / 1024 / 768 / 380 */

@media (max-width: 1024px) {
	.stages {
		padding: 64px 0 80px;
	}

	.stages__ring,
	.stages__watermark,
	.stages__grid-dots {
		display: none;
	}

	.stages__row {
		grid-template-columns: 1fr;
	}

	.stages__photo {
		min-height: 320px;
	}
}

@media (max-width: 768px) {
	.stages__heading {
		font-size: 22px;
	}

	.stages__list {
		grid-template-columns: 1fr;
	}

	.stage-card {
		padding: 28px;
	}

	.stage-quote {
		padding: 28px;
	}

	.stage-quote__text {
		font-size: 16px;
	}
}