/* ==========================================================================
   FANG · About page
   ========================================================================== */

/* Hero already styled by .about-hero in fang.css. Add detail tweaks. */
.about-hero { padding: 0; }
.about-hero .container.about-hero-grid { padding-top: 80px; padding-bottom: 96px; }
.about-hero h1 { line-height: 1; }
.about-hero h1 .red { color: var(--red); }

/* About body — long-form text section */
.about-body { max-width: 820px; margin: 0 auto; padding: 24px 0; }
.about-body p { font-size: 17px; line-height: 1.7; color: var(--gun); margin-top: 18px; }
.about-body p:first-of-type { margin-top: 22px; }
.about-body strong { color: var(--gun); font-weight: 600; }

/* Stats strip */
.about-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}
.about-stats .stat {
	padding: 28px 24px;
	border-right: 1px solid #2a2a2a;
	text-align: center;
}
.about-stats .stat:last-child { border-right: 0; }
.about-stats .stat strong {
	display: block;
	font-family: var(--f-display);
	font-weight: 700;
	font-size: clamp(36px, 4vw, 56px);
	color: var(--bone);
	line-height: 1;
	letter-spacing: 0.02em;
}
.about-stats .stat span {
	display: block;
	margin-top: 8px;
	font-family: var(--f-mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #888070;
}

/* Team grid */
.about-team {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	margin-top: 24px;
}
.team-card {
	background: var(--paper);
	border: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	border-top: 4px solid var(--red);
}
.team-card:nth-child(2) { border-top-color: var(--amber); }

.team-photo {
	aspect-ratio: 4/5;
	background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px 14px), #d6d2c5;
	position: relative;
	overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-photo--placeholder { background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 14px), #ebe7dd; }
.team-photo .placeholder {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-family: var(--f-mono); font-size: 11px;
	letter-spacing: 0.18em; color: rgba(0, 0, 0, 0.35);
	text-transform: uppercase; text-align: center; padding: 20px;
}
.team-ribbon {
	position: absolute; top: 24px; left: -8px;
	background: var(--red); color: #fff;
	padding: 8px 16px;
	font-family: var(--f-stencil); font-weight: 700;
	letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px;
	box-shadow: 4px 4px 0 var(--gun);
	z-index: 2;
}

.team-body { padding: 32px; }
.team-body h3 { font-size: 28px; }
.team-body p { font-size: 15px; line-height: 1.7; color: var(--gun); margin-top: 14px; }
.team-body .signature {
	font-family: 'Caveat', cursive;
	font-size: 28px;
	color: var(--gun);
	margin-top: 16px;
}

@media (max-width: 1100px) {
	.about-team { grid-template-columns: 1fr; gap: 32px; }
	.about-stats { grid-template-columns: 1fr 1fr; }
	.about-stats .stat:nth-child(odd) { border-right: 1px solid #2a2a2a; }
	.about-stats .stat:nth-child(even) { border-right: 0; }
	.about-stats .stat:nth-child(1),
	.about-stats .stat:nth-child(2) { border-bottom: 1px solid #2a2a2a; }
}
@media (max-width: 768px) {
	.about-hero .container.about-hero-grid { padding-top: 56px; padding-bottom: 64px; }
	.team-body { padding: 24px; }
	.team-body h3 { font-size: 24px; }
	.about-stats .stat { padding: 22px 16px; }
}
@media (max-width: 480px) {
	.about-stats { grid-template-columns: 1fr; }
	.about-stats .stat { border-right: 0 !important; border-bottom: 1px solid #2a2a2a; }
	.about-stats .stat:last-child { border-bottom: 0; }
}
