/* ==========================================================================
   Home About Section
   ========================================================================== */

.home-about {
	padding: 0px 0 80px;
	background: #fff;
	overflow: hidden;
}

.about-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	align-items: center;
}

/* Image Side
   ========================================================================== */
.about-image-wrap {
	position: relative;
}

.about-image {
	position: relative;
	width: 100%;
	height: auto;
	border-radius: 8px;
	z-index: 2;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Red accent block behind image */
.about-image-accent {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 120px;
	height: 120px;
	background: var(--morrell-red, #900);
	border-radius: 8px;
	z-index: 1;
}

/* Border frame offset */
.about-image-border {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: calc(100% - 40px);
	height: calc(100% - 40px);
	border: 3px solid var(--morrell-red, #900);
	border-radius: 8px;
	z-index: 0;
}

/* Content Side
   ========================================================================== */
.about-content {
	max-width: 560px;
}

.about-badge {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(153, 0, 0, 0.08);
	color: var(--morrell-red, #900);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: 4px;
	margin-bottom: 20px;
}

.about-headline {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 24px;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.about-text {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 32px;
}

.about-text p {
	margin: 0 0 16px;
}

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

/* Stats Row
   ========================================================================== */
.about-stats {
	display: flex;
	gap: 40px;
	margin-bottom: 36px;
	padding-top: 32px;
	border-top: 1px solid #eee;
}

.about-stat {
	display: flex;
	flex-direction: column;
}

.stat-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--morrell-red, #900);
	letter-spacing: -0.02em;
	line-height: 1;
	margin-bottom: 6px;
	font-variant-numeric: tabular-nums;
}

.stat-label {
	font-size: 13px;
	color: #777;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

/* Button
   ========================================================================== */
.about-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: var(--morrell-red, #900);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
	background: var(--morrell-red-dark, #700);
	transform: translateX(4px);
	color: #fff;
}

.about-btn i {
	font-size: 13px;
	transition: transform 0.3s ease;
}

.about-btn:hover i {
	transform: translateX(4px);
}

/* Scroll Animations - Only apply when JS is active
   ========================================================================== */
.js-animations .about-image-wrap {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-animations .about-badge {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-animations .about-headline {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.js-animations .about-text {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.js-animations .about-stats {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.js-animations .about-btn {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s, background 0.3s ease;
}

/* Animated state */
.js-animations .home-about.in-view .about-image-wrap {
	opacity: 1;
	transform: translateX(0);
}

.js-animations .home-about.in-view .about-badge,
.js-animations .home-about.in-view .about-headline,
.js-animations .home-about.in-view .about-text,
.js-animations .home-about.in-view .about-stats,
.js-animations .home-about.in-view .about-btn {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.about-container {
		gap: 60px;
	}
	
	.about-stats {
		gap: 30px;
	}
	
	.stat-number {
		font-size: 28px;
	}
}

@media (max-width: 900px) {
	.home-about {
		padding: 60px 0;
	}
	
	.about-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.about-image-wrap {
		max-width: 500px;
		margin: 0 auto;
	}
	
	.about-content {
		max-width: 100%;
	}
	
	.about-image-accent {
		top: -15px;
		left: -15px;
		width: 80px;
		height: 80px;
	}
	
	.about-image-border {
		bottom: -15px;
		right: -15px;
	}
}

@media (max-width: 600px) {
	.home-about {
		padding: 50px 0;
	}
	
	.about-container {
		padding: 0 24px;
		gap: 40px;
	}
	
	.about-image-wrap {
		margin: 0 15px;
	}
	
	.about-stats {
		flex-wrap: wrap;
		gap: 24px;
	}
	
	.about-stat {
		min-width: calc(50% - 12px);
	}
	
	.stat-number {
		font-size: 26px;
	}
	
	.about-headline {
		font-size: 26px;
	}
	
	.about-btn {
		width: 100%;
		justify-content: center;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.js-animations .about-image-wrap,
	.js-animations .about-badge,
	.js-animations .about-headline,
	.js-animations .about-text,
	.js-animations .about-stats,
	.js-animations .about-btn {
		opacity: 1;
		transform: none;
		transition: background 0.3s ease;
	}
}