/* ==========================================================================
   About page (/about/)
   Only the parts that are unique to this page. The hero, section rhythm,
   eyebrow, heading, figure, pill button and the closing brand band come from
   lean-page.css, which this file is loaded after.
   Values measured from the Lovable preview (/about-us): card radius 16px with
   28px body padding, card copy 14px/1.625 at 60% ink, number pill 10px with
   1.8px letter-spacing.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Why we exist: copy left, picture right, both vertically centred.
   -------------------------------------------------------------------------- */
.naa-about-why {
	border-bottom: 1px solid var(--naa-border);
	background: #fff;
}

.naa-about-why__grid {
	display: grid;
	gap: 40px;
}

@media (min-width: 768px) {
	.naa-about-why__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: center;
	}
}

.naa-about-why__lead {
	margin: 20px 0 0;
	max-width: 448px;
	color: color-mix(in srgb, var(--naa-fg) 65%, transparent);
	font-size: 16px;
	line-height: 1.625;
}

/* --------------------------------------------------------------------------
   How we teach: three principle cards.
   -------------------------------------------------------------------------- */
.naa-about-principles {
	background: color-mix(in srgb, var(--naa-brand-soft) 40%, #fff);
}

.naa-about-principles__head {
	text-align: center;
}

.naa-about-principles__head .naa-page-h2 {
	margin-top: 20px;
}

.naa-about-cards {
	display: grid;
	gap: 24px;
	margin-top: 48px;
}

@media (min-width: 768px) {
	.naa-about-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.naa-about-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--naa-border);
	border-radius: var(--naa-radius);
	background: #fff;
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.naa-about-card:hover {
	transform: translateY(-4px);
	border-color: color-mix(in srgb, var(--naa-brand) 40%, transparent);
	box-shadow: 0 12px 28px rgba(9, 20, 15, 0.08);
}

.naa-about-card__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--naa-brand-soft);
}

.naa-about-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s;
}

.naa-about-card:hover .naa-about-card__media img {
	transform: scale(1.05);
}

.naa-about-card__step {
	position: absolute;
	top: 16px;
	left: 16px;
	padding: 4px 12px;
	border-radius: 999px;
	background: var(--naa-brand);
	color: var(--naa-brand-fg);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.8px;
}

.naa-about-card__body {
	padding: 28px;
}

.naa-about-card__icon {
	color: var(--naa-brand);
}

.naa-lean-chrome .naa-about-card__title,
.naa-about-card .naa-about-card__title {
	margin: 16px 0 0;
	color: var(--naa-fg);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.naa-about-card__text {
	margin: 8px 0 0;
	color: color-mix(in srgb, var(--naa-fg) 60%, transparent);
	font-size: 14px;
	line-height: 1.625;
}

.naa-about-principles__cta {
	margin-top: 48px;
	text-align: center;
}
