/* ════════════════════════════════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════════════════════════════════ */

/* ── Intro: split-screen text + founder photo ────────────────────── */
.about-intro {
	overflow: hidden;
}

.about-intro__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 90vh;
}

.about-headline {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	margin-bottom: 1.5rem;
}

.about-intro__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
	font-family: var(--font-body);
	font-size: clamp(1.05rem, 1.2vw, 1.2rem);
	line-height: 1.75;
}

.about-intro__text p + p {
	margin-top: 1.25em;
}

.about-intro__cta {
	margin-top: 2rem;
}

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

.about-intro__photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.about-intro__photo-placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-surface);
	font-family: var(--font-heading);
	font-size: 0.75rem;
	opacity: 0.5;
	text-align: center;
	padding: 1rem;
}

@media (max-width: 768px) {
	.about-intro__inner {
		grid-template-columns: 1fr;
		min-height: auto;
		display: flex;
		flex-direction: column;
	}
	.about-intro__text {
		padding: 3rem var(--gutter);
		order: 1;
	}
	.about-intro__cta {
		order: 2;
	}
	.about-intro__photo {
		order: 3;
		aspect-ratio: 4/3;
		position: relative;
		height: 60vw;
		max-height: 420px;
	}
}

/* ── Brands / hover-preview ───────────────────────────────────────── */
.about-clients {
	padding: clamp(3rem, 6vw, 5rem) 0;
	background: var(--color-white);
}

.about-clients__heading {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.5rem, 2.5vw, 2.2rem);
	color: var(--color-text);
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.about-clients__layout {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 6rem);
	align-items: start;
}

/* Client name list */
.about-clients__list {
	list-style: none;
}

.about-clients__item {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.03em;
	line-height: 1.3;
	padding: 0.55em 0;
	border-bottom: 1px solid var(--color-surface);
	color: var(--color-text);
	transition: color 200ms ease;
}

.about-clients__item:first-child {
	border-top: 1px solid var(--color-surface);
}

.about-clients__item.has-image {
	cursor: default;
}

.about-clients__item.is-active {
	color: var(--color-footer); /* red accent on hover */
}

/* Preview images float freely at random positions */
.about-clients__preview {
	position: absolute;
	width: 0;
	height: 0;
	overflow: visible;
	pointer-events: none;
}

.about-clients__preview-img {
	position: fixed;
	width: clamp(180px, 22vw, 320px);
	opacity: 0;
	transition: opacity 300ms ease;
	pointer-events: none;
	z-index: 100;
}

.about-clients__preview-img.is-visible {
	opacity: 1;
}

.about-clients__preview-img img {
	width: 100%;
	height: auto;
	object-fit: contain;
	display: block;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.about-intro__inner {
		grid-template-columns: 1fr;
	}

	.about-intro__photo {
		position: static;
		order: -1; /* photo first on mobile */
	}

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

	/* Hide image preview on mobile — show names only */
	.about-clients__preview {
		display: none;
	}

	.about-clients__item {
		font-size: 0.9rem;
	}
}
