.ahan-about-route {
	margin: 0;
	background: #f5f7fa;
	color: var(--ahan-color-text);
	font-family: var(--ahan-font-family);
	overflow-x: hidden;
}

.ahan-about-route * {
	box-sizing: border-box;
}

.ahan-about-route .ahan-mobile-header,
.ahan-about-route .ahan-mobile-bottom-nav {
	display: none;
}

.ahan-about-main {
	background: #f5f7fa;
}

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

.ahan-about-intro {
	padding: 56px 0 42px;
	background: #ffffff;
}

.ahan-about-founder {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.8fr);
	gap: 52px;
	align-items: center;
}

.ahan-about-kicker,
.ahan-about-section-heading p {
	margin: 0 0 12px;
	color: var(--ahan-color-brand-blue);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ahan-about-founder h1,
.ahan-about-section-heading h2 {
	margin: 0;
	color: #17212f;
	font-size: 2.45rem;
	font-weight: 900;
	line-height: 1.12;
}

.ahan-about-founder blockquote {
	margin: 28px 0 0;
	padding: 0;
	border: 0;
}

.ahan-about-founder blockquote p {
	margin: 0;
	max-width: 720px;
	color: #263443;
	font-size: 1.25rem;
	font-weight: 650;
	line-height: 1.65;
}

.ahan-about-founder cite {
	display: block;
	margin-top: 20px;
	color: #17212f;
	font-size: 1.08rem;
	font-style: normal;
	font-weight: 900;
}

.ahan-about-founder__photo {
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #e8edf3;
	box-shadow: 0 18px 42px rgba(20, 35, 52, 0.12);
}

.ahan-about-founder__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 1.2;
	object-fit: cover;
	object-position: 46% 14%;
}

.ahan-about-section {
	padding: 72px 0;
}

.ahan-about-section + .ahan-about-section {
	border-top: 1px solid rgba(15, 31, 48, 0.08);
}

.ahan-about-section-heading {
	max-width: 880px;
	margin-bottom: 30px;
}

.ahan-about-history__lead {
	margin: 0 0 24px;
	max-width: 1030px;
	color: #17212f;
	font-size: 1.42rem;
	font-weight: 760;
	line-height: 1.52;
}

.ahan-about-history__text {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 42px;
	max-width: 1100px;
}

.ahan-about-history__text p,
.ahan-about-principles p {
	margin: 0;
	color: var(--ahan-color-text-muted);
	font-size: 1rem;
	line-height: 1.72;
}

.ahan-about-history__text p {
	max-width: 58ch;
}

.ahan-about-principles {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ahan-about-principles article {
	min-height: 210px;
	padding: 26px 22px;
	border: 1px solid #dde5ee;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(15, 35, 56, 0.06);
}

.ahan-about-principles h3 {
	margin: 0 0 14px;
	color: #17212f;
	font-size: 1.18rem;
	font-weight: 900;
	line-height: 1.25;
}

.ahan-about-production {
	padding-bottom: 88px;
	background: #ffffff;
}

.ahan-about-gallery {
	display: grid;
	grid-template-columns: 1.15fr repeat(2, minmax(0, 0.65fr));
	grid-auto-rows: 230px;
	gap: 16px;
}

.ahan-about-gallery figure {
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
	background: #e8edf3;
}

.ahan-about-gallery__wide {
	grid-row: span 2;
}

.ahan-about-gallery img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1180px) {
	.ahan-about-founder {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 36px;
	}

	.ahan-about-principles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.ahan-about-route .ahan-desktop-header,
	.ahan-about-route .ahan-desktop-footer {
		display: none;
	}

	.ahan-about-route .ahan-mobile-header,
	.ahan-about-route .ahan-mobile-bottom-nav {
		display: grid;
	}

	.ahan-about-main {
		padding-bottom: 76px;
	}

	.ahan-about-container {
		width: min(100% - 32px, 720px);
	}

	.ahan-about-intro {
		padding: 34px 0 32px;
	}

	.ahan-about-founder {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.ahan-about-founder h1,
	.ahan-about-section-heading h2 {
		font-size: 2rem;
	}

	.ahan-about-founder blockquote p {
		font-size: 1.08rem;
		line-height: 1.6;
	}

	.ahan-about-founder__photo img {
		aspect-ratio: 16 / 11;
	}

	.ahan-about-section {
		padding: 48px 0;
	}

	.ahan-about-history__lead {
		font-size: 1.16rem;
	}

	.ahan-about-history__text {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.ahan-about-history__text p {
		max-width: none;
	}

	.ahan-about-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		grid-auto-rows: 190px;
	}

	.ahan-about-gallery__wide {
		grid-column: span 2;
		grid-row: auto;
	}
}

@media (max-width: 560px) {
	.ahan-about-container {
		width: calc(100% - 24px);
	}

	.ahan-about-founder h1,
	.ahan-about-section-heading h2 {
		font-size: 1.72rem;
	}

	.ahan-about-founder blockquote p,
	.ahan-about-history__lead {
		font-size: 1.02rem;
	}

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

	.ahan-about-principles article {
		min-height: 0;
		padding: 22px 18px;
	}

	.ahan-about-gallery {
		grid-template-columns: 1fr;
		grid-auto-rows: auto;
	}

	.ahan-about-gallery__wide {
		grid-column: auto;
	}

	.ahan-about-gallery figure {
		aspect-ratio: 16 / 10;
	}
}
