/**
 * about.css — About page only. Loaded after global.css.
 */

.about-hero {
	padding: 5rem 0 4rem;
	max-width: 800px;
}

.about-hero h1 {
	font-size: clamp(2.8rem, 6.4vw, 5rem);
	margin: 1.3rem 0 1.2rem;
}

.about-hero p {
	color: var(--muted);
	font-size: 1.05rem;
	max-width: 60ch;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 1.3rem;
}

.stat {
	padding: 2rem 1.7rem;
}

.stat b {
	display: block;
	font-family: var(--font-heading);
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
}

.stat span {
	font-size: .72rem;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted);
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.4rem;
	align-items: center;
}

@media (max-width: 900px) {
	.split {
		grid-template-columns: 1fr;
		gap: 2.2rem;
	}
}

.split img {
	border-radius: 24px;
	border: 1px solid var(--line);
}

.vals {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.4rem;
}

.val {
	padding: 2.1rem 1.8rem;
}

.val h3 {
	font-size: 1.3rem;
	margin: 1rem 0 .5rem;
}

.val p {
	color: var(--muted);
	font-size: .9rem;
}

.timeline {
	position: relative;
	padding-left: 2.2rem;
	display: grid;
	gap: 2rem;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: linear-gradient(180deg, var(--gold), transparent);
}

.timeline-point {
	position: relative;
}

.timeline-point::before {
	content: "";
	position: absolute;
	left: -2.2rem;
	top: .55rem;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	border: 1px solid var(--gold);
	background: #0a0a0a;
}

.timeline-point b {
	display: block;
	font-size: .72rem;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold);
}

.timeline-point h3 {
	font-size: 1.35rem;
	margin: .35rem 0 .4rem;
}

.timeline-point p {
	color: var(--muted);
	font-size: .92rem;
	max-width: 62ch;
}

.table-wrap {
	overflow-x: auto;
	border-radius: 20px;
}

.table-wrap table {
	width: 100%;
	border-collapse: collapse;
	font-size: .9rem;
	min-width: 520px;
}

.table-wrap th,
.table-wrap td {
	text-align: left;
	padding: 1rem 1.3rem;
	border-bottom: 1px solid var(--line);
}

.table-wrap th {
	font-size: .68rem;
	letter-spacing: .24em;
	text-transform: uppercase;
	color: var(--gold);
	font-weight: 500;
}

.table-wrap td {
	color: var(--muted);
}

.table-wrap tbody tr:last-child td {
	border-bottom: 0;
}

.about-cta {
	padding: 3.4rem 2.4rem;
	text-align: center;
	margin-bottom: 5rem;
}

.about-cta h2 {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	margin-bottom: 1rem;
}

.about-cta p {
	color: var(--muted);
	max-width: 52ch;
	margin: 0 auto 2rem;
}

.about-cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
