.about-page {
	margin: 0;
	color: var(--tn-ink);
	background: var(--tn-surface);
}

.about-page .site,
.about-page .site-content {
	background: transparent;
}

.about-main {
	overflow: hidden;
}

.about-container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.about-section {
	padding: 96px 0;
}

.about-hero {
	position: relative;
	display: grid;
	min-height: 500px;
	place-items: center;
	background-image: var(--about-hero);
	background-position: center;
	background-size: cover;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(20, 24, 39, .26);
}

.about-hero__content {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 20px;
	text-align: center;
}

.about-breadcrumb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #9EA2FC;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: 1px;
}

.about-breadcrumb a {
	color: inherit;
}

.about-breadcrumb a:hover {
	color: var(--tn-white);
}

.about-hero h1 {
	margin: 0;
	color: var(--tn-white);
	font-family: var(--tn-serif);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 2px;
	text-shadow: 0 3px 16px rgba(0, 0, 0, .25);
}

.about-story {
	background: var(--tn-surface-soft);
}

.about-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
	gap: 60px;
	align-items: center;
}

.about-kicker {
	margin: 0 0 12px;
	color: var(--tn-primary);
	font-family: var(--tn-english);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 1px;
}

.about-story h2,
.about-heading h2 {
	margin: 0;
	color: var(--tn-ink);
	font-family: var(--tn-serif);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 1px;
	white-space: pre-line;
}

.about-story__copy>div {
	margin-top: 28px;
}

.about-story__copy>div,
.about-story__copy>div p {
	color: var(--tn-muted);
	font-size: 16px;
	line-height: 1.9;
}

.about-story__copy>div p:last-child {
	margin-bottom: 0;
}

.about-story figure {
	margin: 0;
	overflow: hidden;
	border-top: 7px solid var(--tn-light);
	border-radius: 14px;
	background: var(--tn-surface-muted);
	aspect-ratio: 4/3;
}

.about-story figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-stats {
	padding: 54px 0;
	color: var(--tn-white);
	background: #1A1A2E;
}

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-stats article {
	position: relative;
	padding: 0 42px;
	text-align: center;
}

.about-stats article+article::before {
	position: absolute;
	top: 18px;
	bottom: 18px;
	left: 0;
	width: 1px;
	background: rgba(255, 255, 255, .35);
	content: "";
}

.about-stats strong {
	display: block;
	margin-bottom: 7px;
	color: #9EA2FC;
	font-family: var(--tn-english);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
}

.about-stats h3 {
	margin: 0 0 5px;
	color: var(--tn-white);
	font-size: 14px;
	line-height: 1.4;
}

.about-stats p {
	margin: 0;
	color: #9999B5;
	font-size: 11px;
	line-height: 1.5;
}

.about-timeline-section {
	background: var(--tn-white);
}

.about-heading {
	margin-bottom: 58px;
}

.about-heading>p {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 0 16px;
	color: var(--tn-primary);
	font-family: var(--tn-display);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 1px;
	white-space: pre-line;
}

.about-heading>p::before {
	width: 30px;
	height: 2px;
	flex: 0 0 30px;
	margin-top: 10px;
	background: var(--tn-primary);
	content: "";
}

.about-heading--center {
	text-align: center;
}

.about-heading--center>p {
	justify-content: center;
}

.about-heading--center>p::after {
	width: 30px;
	height: 2px;
	flex: 0 0 30px;
	margin-top: 10px;
	background: var(--tn-primary);
	content: "";
}

.about-timeline {
	position: relative;
	display: grid;
	gap: 46px;
}

.about-timeline::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 33px;
	width: 2px;
	background: var(--tn-line-light);
	content: "";
}

.about-timeline article {
	position: relative;
	display: grid;
	grid-template-columns: 90px 360px minmax(0, 1fr);
	gap: 36px;
	align-items: center;
}

.about-timeline__year {
	position: relative;
	z-index: 1;
	display: grid;
	width: 68px;
	height: 68px;
	place-items: center;
	border: 2px solid var(--tn-primary);
	border-radius: 50%;
	color: var(--tn-primary);
	background: var(--tn-white);
	font-family: var(--tn-english);
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 5px 16px rgba(117, 122, 250, .12);
}

.about-timeline figure {
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
	background: var(--tn-surface-muted);
	aspect-ratio: 16/10;
}

.about-timeline figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-timeline__card {
	padding: 30px;
	border-radius: 12px;
	background: var(--tn-white);
	box-shadow: 0 8px 28px rgba(26, 26, 46, .09);
}

.about-timeline__card h3 {
	margin: 0 0 14px;
	color: var(--tn-ink);
	font-size: 18px;
	line-height: 1.4;
}

.about-timeline__card div,
.about-timeline__card p {
	margin-top: 0;
	color: var(--tn-muted);
	font-size: 14px;
	line-height: 1.8;
}

.about-timeline__card p:last-child {
	margin-bottom: 0;
}

.about-reviews {
	background: var(--tn-surface-muted);
}

.about-reviews__grid {
	columns: 3;
	column-gap: 22px;
}

.about-review {
	display: inline-block;
	width: 100%;
	margin: 0 0 22px;
	padding: 22px;
	break-inside: avoid;
	border-radius: 12px;
	background: var(--tn-white);
	box-shadow: 0 5px 18px rgba(26, 26, 46, .04);
}

.about-review>header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.about-review>header>img,
.about-review>header>span {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 50%;
	color: var(--tn-primary);
	background: var(--tn-primary-pale);
	font-weight: 700;
	object-fit: cover;
}

.about-review h3 {
	margin: 0 0 2px;
	font-size: 14px;
	line-height: 1.4;
}

.about-review header p {
	margin: 0;
	color: var(--tn-subtle);
	font-size: 10px;
	line-height: 1.5;
}

.about-review__stars {
	margin: 14px 0 10px;
	color: var(--tn-primary);
	font-size: 12px;
	letter-spacing: 2px;
}

.about-review__body,
.about-review__body p {
	color: var(--tn-muted);
	font-size: 12px;
	line-height: 1.8;
}

.about-review__body p:last-child {
	margin-bottom: 0;
}

@media (max-width: 1000px) {
	.about-story__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.about-timeline article {
		grid-template-columns: 80px 300px minmax(0, 1fr);
		gap: 24px;
	}

	.about-timeline::before {
		left: 39px;
	}

	.about-timeline__year {
		width: 60px;
		height: 60px;
	}

	.about-reviews__grid {
		columns: 2;
	}
}

@media (max-width: 720px) {
	.about-container {
		width: min(100% - 32px, 1180px);
	}

	.about-section {
		padding: 64px 0;
	}

	.about-hero {
		min-height: 380px;
	}

	.about-hero h1 {
		font-size: 40px;
	}

	.about-story__grid {
		grid-template-columns: 1fr;
	}

	.about-story h2,
	.about-heading h2 {
		font-size: 32px;
	}

	.about-story figure {
		order: -1;
	}

	.about-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 36px 0;
	}

	.about-stats article {
		padding: 0 20px;
	}

	.about-stats article:nth-child(3)::before {
		display: none;
	}

	.about-stats strong {
		font-size: 32px;
	}

	.about-heading {
		margin-bottom: 40px;
	}

	.about-timeline {
		gap: 38px;
	}

	.about-timeline::before {
		left: 29px;
	}

	.about-timeline article {
		grid-template-columns: 60px minmax(0, 1fr);
		gap: 18px;
		align-items: start;
	}

	.about-timeline__year {
		width: 58px;
		height: 58px;
		font-size: 12px;
	}

	.about-timeline figure,
	.about-timeline__card {
		grid-column: 2;
	}

	.about-timeline__card {
		padding: 22px;
	}

	.about-reviews__grid {
		columns: 1;
	}
}

@media (max-width: 430px) {
	.about-stats__grid {
		grid-template-columns: 1fr;
	}

	.about-stats article+article::before {
		top: -18px;
		right: 40px;
		bottom: auto;
		left: 40px;
		width: auto;
		height: 1px;
	}

	.about-timeline article {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 12px;
	}

	.about-timeline::before {
		left: 24px;
	}

	.about-timeline__year {
		width: 50px;
		height: 50px;
		font-size: 10px;
	}
}