/* ==========================================================================
   SkyTrade Aviation — About Page
   Deliberate background variation per section (navy / navy-light / gold-tint
   gradient) so the page has rhythm instead of one flat slab of color.
   Every major section carries a real image slot.
   ========================================================================== */

.about-page {
	overflow-x: hidden;
}

.about-page .eyebrow-gold {
	font-family: var(--st-font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--st-gold);
	text-transform: uppercase;
	margin: 0 0 var(--st-space-sm);
}

/* ---- Hero: full-bleed image + dark scrim, deepest navy of the page ---- */

.about-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: flex-end;
	background-color: var(--st-navy);
	overflow: hidden;
}

.about-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-hero__media img,
.about-hero__media .skytrade-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}

.about-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(10, 22, 40, 0.2) 0%,
		rgba(10, 22, 40, 0.55) 55%,
		var(--st-navy) 100%
	);
	z-index: 1;
}

.about-hero__content {
	position: relative;
	z-index: 2;
	padding-bottom: var(--st-space-3xl);
	max-width: 760px;
}

.about-hero__headline {
	font-family: var(--st-font-display);
	font-size: 48px;
	line-height: 1.1;
	color: var(--st-white);
	font-weight: 700;
	margin: var(--st-space-sm) 0 var(--st-space-md);
}

.about-hero__headline span {
	color: var(--st-gold);
}

.about-hero__sub {
	color: var(--st-white-90);
	font-size: 17px;
	line-height: 1.6;
	max-width: 560px;
}

/* ---- Founder: navy-light band ---- */

.about-founder {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: var(--st-space-3xl);
	align-items: center;
	padding-top: var(--st-space-3xl);
	padding-bottom: var(--st-space-3xl);
}

.about-founder__media {
	position: relative;
	border-radius: var(--st-radius-card);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border: 1px solid rgba(201, 168, 76, 0.25);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

.about-founder__quote {
	font-family: var(--st-font-display);
	font-size: 28px;
	line-height: 1.45;
	color: var(--st-white);
	font-weight: 500;
	font-style: italic;
	margin-bottom: var(--st-space-lg);
	padding-left: var(--st-space-lg);
	border-left: 2px solid var(--st-gold);
}

.about-founder__name {
	color: var(--st-gold);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.about-founder__title {
	color: var(--st-white-60);
	font-size: 13px;
	margin-top: 2px;
	margin-bottom: var(--st-space-sm);
}

.about-founder__linkedin {
	display: inline-block;
	color: var(--st-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(201, 168, 76, 0.4);
	padding-bottom: 2px;
	transition: border-color 0.15s ease;
}

.about-founder__linkedin:hover,
.about-founder__linkedin:focus-visible {
	border-color: var(--st-gold);
	outline: none;
}

/* ---- Stats: background photo + warm gold-tinted gradient scrim over it ---- */

.about-stats {
	position: relative;
	border-top: 1px solid rgba(201, 168, 76, 0.15);
	border-bottom: 1px solid rgba(201, 168, 76, 0.15);
	padding: var(--st-space-3xl) 0;
	text-align: center;
	overflow: hidden;
}

.about-stats__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-stats__media img,
.about-stats__media .skytrade-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
}

.about-stats::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(135deg, var(--st-navy-light) 0%, var(--st-navy) 60%, #150e05 100%);
	opacity: 0.9;
}

.about-stats__content {
	position: relative;
	z-index: 2;
}

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

.about-stats__headline {
	font-family: var(--st-font-display);
	font-size: 32px;
	color: var(--st-white);
	margin: var(--st-space-sm) 0 var(--st-space-2xl);
}

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--st-space-lg);
	max-width: 900px;
	margin: 0 auto;
}

.about-stat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: var(--st-space-lg) var(--st-space-md);
	background-color: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(2px);
	border: 1px solid rgba(201, 168, 76, 0.2);
	border-radius: var(--st-radius-card);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.about-stat-card:hover,
.about-stat-card:focus-within {
	border-color: var(--st-gold);
	transform: translateY(-2px);
}

.about-stat-card__value {
	font-family: var(--st-font-display);
	font-size: 34px;
	font-weight: 700;
	color: var(--st-gold);
	line-height: 1.1;
}

.about-stat-card__label {
	color: var(--st-white-60);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-top: 6px;
}

.about-stats__note {
	color: var(--st-white-20);
	font-size: 11px;
	margin-top: var(--st-space-lg);
}

/* ---- Split sections: alternate navy / navy-light ---- */

.about-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-height: 480px;
	background-color: var(--st-navy);
}

.about-split--reverse {
	background-color: var(--st-navy-light);
	direction: rtl;
}

.about-split--reverse .about-split__content,
.about-split--reverse .about-split__media {
	direction: ltr;
}

.about-split__media {
	position: relative;
	overflow: hidden;
}

.about-split__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 320px;
}

.about-split__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--st-space-3xl) var(--st-space-2xl);
}

.about-split__content h3 {
	font-family: var(--st-font-display);
	font-size: 30px;
	color: var(--st-white);
	margin-bottom: var(--st-space-md);
}

.about-split__content p {
	color: var(--st-white-60);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: var(--st-space-lg);
	max-width: 440px;
}

/* ---- Ways to fly: image-topped cards ---- */

.about-ways {
	text-align: center;
	padding-top: var(--st-space-3xl);
	padding-bottom: var(--st-space-3xl);
}

.about-ways__headline {
	font-family: var(--st-font-display);
	font-size: 30px;
	color: var(--st-white);
}

.about-ways__sub {
	color: var(--st-white-60);
	font-size: 14px;
	margin-top: 6px;
	margin-bottom: var(--st-space-2xl);
}

.about-ways__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--st-space-lg);
	text-align: left;
}

@media (max-width: 900px) {
	.about-ways__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

.about-ways-card {
	display: block;
	background-color: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: var(--st-radius-card);
	text-decoration: none;
	overflow: hidden;
	transition: border-color 0.15s ease, transform 0.15s ease;
}

.about-ways-card:hover,
.about-ways-card:focus-visible {
	border-color: var(--st-gold);
	transform: translateY(-3px);
	outline: none;
}

.about-ways-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.about-ways-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.about-ways-card:hover .about-ways-card__media img,
.about-ways-card:focus-visible .about-ways-card__media img {
	transform: scale(1.05);
}

.about-ways-card__body {
	padding: var(--st-space-md) var(--st-space-lg) var(--st-space-lg);
}

.about-ways-card h4 {
	color: var(--st-gold);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 6px;
}

.about-ways-card p {
	color: var(--st-white-60);
	font-size: 13px;
	line-height: 1.5;
}

/* ---- CTA: background image + gold-to-navy diagonal scrim ---- */

.about-cta {
	position: relative;
	border-top: 1px solid rgba(201, 168, 76, 0.25);
	padding: var(--st-space-3xl) 0;
	text-align: center;
	overflow: hidden;
}

.about-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.about-cta__media img,
.about-cta__media .skytrade-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.3;
}

.about-cta::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(120deg, #1a1002 0%, var(--st-navy) 45%, var(--st-navy-light) 100%);
	opacity: 0.92;
}

.about-cta__content {
	position: relative;
	z-index: 2;
}

.about-cta__content h3 {
	font-family: var(--st-font-display);
	font-size: 32px;
	color: var(--st-white);
	margin-bottom: var(--st-space-sm);
}

.about-cta__content p {
	color: var(--st-white-60);
	font-size: 15px;
	margin-bottom: var(--st-space-lg);
}

/* ---- Responsive ---- */

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

	.about-founder__media {
		aspect-ratio: 16 / 10;
	}

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

	.about-split,
	.about-split--reverse {
		grid-template-columns: 1fr;
		direction: ltr;
	}

	.about-split__media img {
		min-height: 260px;
	}

	.about-hero__headline {
		font-size: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-stat-card:hover,
	.about-stat-card:focus-within,
	.about-ways-card:hover,
	.about-ways-card:focus-visible {
		transform: none;
	}

	.about-ways-card:hover .about-ways-card__media img,
	.about-ways-card:focus-visible .about-ways-card__media img,
	.about-ways-card:hover .about-ways-card__media .skytrade-img,
	.about-ways-card:focus-visible .about-ways-card__media .skytrade-img {
		transform: none;
	}
}

/* skytrade_img_box() — placeholders and imgs fill media slots */

.about-hero__media .skytrade-img,
.about-founder__media .skytrade-img,
.about-stats__media .skytrade-img,
.about-split__media .skytrade-img,
.about-ways-card__media .skytrade-img,
.about-cta__media .skytrade-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-hero__media .skytrade-img-placeholder {
	min-height: 640px;
	border-radius: 0;
}

.about-founder__media .skytrade-img-placeholder,
.about-split__media .skytrade-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-radius: 0;
}

.about-stats__media .skytrade-img-placeholder,
.about-cta__media .skytrade-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-radius: 0;
}

.about-ways-card__media .skytrade-img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-radius: 0;
}

.about-ways-card__media .skytrade-img {
	transition: transform 0.3s ease;
}

.about-ways-card:hover .about-ways-card__media .skytrade-img,
.about-ways-card:focus-visible .about-ways-card__media .skytrade-img {
	transform: scale(1.05);
}
