/* ============================================================
   NORTHWEST WEB DEVELOPMENT - styles_about.css
   About page section styles
   ============================================================ */


/* ────────────────────────────────────────────
   SECTION 1 - THE PERSON
──────────────────────────────────────────── */
.aboutPerson {
	background: var(--black);
	padding: 160px 0 100px;
	position: relative;
	overflow: hidden;
}

/* Subtle grid texture - consistent with other dark heroes */
.aboutPerson::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(180,210,45,0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(180,210,45,0.05) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.aboutPerson::after {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(0,135,60,0.22) 0%, transparent 70%);
	pointer-events: none;
    animation: heroPulse 4s ease-in-out infinite;
}

.aboutPersonInner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.aboutPersonText .sectionEyebrow {
	color: var(--yellow-green);
	border-color: rgba(180,210,45,0.3);
}

.aboutPersonText h1 {
	font-size: clamp(42px, 5vw, 68px);
	color: var(--white);
	margin: 24px 0 32px;
	letter-spacing: -0.01em;
}

.aboutPersonText p {
	color: rgba(255,255,255,0.55);
	font-size: 17px;
	line-height: 1.75;
	margin-bottom: 20px;
}

.aboutPersonText p:last-child {
	margin-bottom: 0;
}

/* Photos */
.aboutPersonPhotos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	align-items: start;
}

.aboutPhotoMain img,
.aboutPhotoAction img {
	width: 100%;
	border-radius: 4px;
	object-fit: cover;
	display: block;
}

.aboutPhotoMain img {
	aspect-ratio: 3/4;
}

.aboutPhotoAction {
	margin-top: 40px; /* offset for visual interest */
}

.aboutPhotoAction img {
	aspect-ratio: 3/4;
}


/* ────────────────────────────────────────────
   SECTION 2 - WHAT I DO
──────────────────────────────────────────── */
.aboutWhat {
	background: var(--off-white);
	padding: 100px 0;
	border-bottom: 1px solid var(--border);
}

.aboutWhatInner {
	max-width: 840px;
}

.aboutWhatInner h2 {
	font-size: clamp(28px, 3.5vw, 44px);
	color: var(--black);
	margin: 20px 0 36px;
	line-height: 1.2;
}

.aboutWhatBody p {
	font-size: 17px;
	line-height: 1.75;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.aboutWhatBody p:last-child {
	margin-bottom: 0;
}


/* ────────────────────────────────────────────
   SECTION 3 - HOW I GOT HERE
──────────────────────────────────────────── */
.aboutHistory {
	background: var(--white);
	padding: 100px 0;
	border-bottom: 1px solid var(--border);
}

.aboutHistoryInner {
	max-width: 840px;
}

.aboutHistoryInner h2 {
	font-size: clamp(28px, 3.5vw, 44px);
	color: var(--black);
	margin: 20px 0 36px;
	line-height: 1.2;
}

.aboutHistoryBody p {
	font-size: 17px;
	line-height: 1.75;
	color: var(--text-muted);
	margin-bottom: 20px;
}

.aboutHistoryBody p:last-child {
	margin-bottom: 0;
}


/* ────────────────────────────────────────────
   SECTION 4 - WHY DEPTH MATTERS
──────────────────────────────────────────── */
.aboutDepth {
	background: var(--black);
	padding: 100px 0;
}

.aboutDepthInner {
	max-width: 840px;
}

.aboutDepthInner .sectionEyebrow {
	color: var(--yellow-green);
	border-color: rgba(180,210,45,0.3);
}

.aboutDepthInner h2 {
	font-size: clamp(28px, 3.5vw, 44px);
	color: var(--white);
	margin: 20px 0 36px;
	line-height: 1.2;
}

.aboutDepthBody p {
	font-size: 17px;
	line-height: 1.75;
	color: rgba(255,255,255,0.55);
	margin-bottom: 20px;
}

.aboutDepthBody p:last-child {
	margin-bottom: 0;
}


/* ────────────────────────────────────────────
   RESPONSIVE - 900px
──────────────────────────────────────────── */
@media only screen and (max-width: 900px) {

	.aboutPerson {
		padding: 140px 0 80px;
	}

	.aboutPersonInner {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.aboutPersonPhotos {
		max-width: 520px;
	}

	.aboutWhat,
	.aboutHistory,
	.aboutDepth {
		padding: 80px 0;
	}

}


/* ────────────────────────────────────────────
   RESPONSIVE - 680px
──────────────────────────────────────────── */
@media only screen and (max-width: 680px) {

	.aboutPerson {
		padding: 120px 0 64px;
	}

	.aboutPersonPhotos {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.aboutPhotoAction {
		margin-top: 0;
	}

	.aboutWhat,
	.aboutHistory,
	.aboutDepth {
		padding: 64px 0;
	}

}


/* ────────────────────────────────────────────
   RESPONSIVE - 420px
──────────────────────────────────────────── */
@media only screen and (max-width: 420px) {

	.aboutPersonText h1 {
		font-size: 36px;
	}

}
