/* ==========================================================================
   OG Hemp - About Us Page Stylesheet
   Path: app/public/wp-content/themes/shoptimizer-child-theme/assets/css/oghemp-about-us.css
   ========================================================================== */

:root {
	--og-green-primary: #2E5B38;
	--og-green-dark: #1E3A24;
	--og-green-light: #EBF2EC;
	--og-cream-bg: #F9F8F3;
	--og-gold-accent: #C5A059;
	--og-text-dark: #1C241E;
	--og-text-muted: #5A655D;
	--og-card-shadow: 0 12px 32px rgba(28, 36, 30, 0.08);
	--og-card-radius: 16px;
	--og-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.oghemp-about-wrapper {
	background-color: var(--og-cream-bg);
	color: var(--og-text-dark);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	padding-bottom: 60px;
}

/* 1. Hero Section */
.oghemp-about-hero {
	position: relative;
	padding: 70px 24px 50px;
	background: linear-gradient(180deg, #FFFFFF 0%, var(--og-cream-bg) 100%);
	text-align: center;
}

.oghemp-about-hero .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: var(--og-green-light);
	color: var(--og-green-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	border-radius: 50px;
	margin-bottom: 24px;
	border: 1px solid rgba(46, 91, 56, 0.15);
}

.oghemp-about-hero h1 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 52px;
	font-weight: 700;
	color: var(--og-text-dark);
	margin-bottom: 20px;
	line-height: 1.15;
}

.oghemp-about-hero h1 span {
	color: var(--og-green-primary);
	position: relative;
	display: inline-block;
}

.oghemp-about-hero h1 span::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 6px;
	background: rgba(197, 160, 89, 0.3);
	border-radius: 3px;
	z-index: -1;
}

.oghemp-about-hero .hero-subtitle {
	max-width: 800px;
	margin: 0 auto 36px;
	font-size: 19px;
	color: var(--og-text-muted);
	line-height: 1.7;
	font-weight: 400;
}

.oghemp-about-hero-img-container {
	max-width: 1140px;
	margin: 20px auto 0;
	border-radius: var(--og-card-radius);
	overflow: hidden;
	box-shadow: var(--og-card-shadow);
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.oghemp-about-hero-img-container img {
	width: 100%;
	height: 440px;
	object-fit: cover;
	display: block;
}

/* 2. Mission, Vision, Values Section */
.oghemp-mvv-section {
	max-width: 1140px;
	margin: 70px auto;
	padding: 0 24px;
}

.oghemp-mvv-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.oghemp-mvv-card {
	background: linear-gradient(145deg, #ffffff 0%, #f4f8f5 100%);
	padding: 42px 32px 38px 32px;
	border-radius: 18px;
	border: 1px solid rgba(46, 204, 113, 0.22);
	box-shadow: 0 10px 30px rgba(13, 35, 25, 0.05);
	transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	position: relative;
	overflow: hidden;
}

.oghemp-mvv-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #2ecc71 0%, #1b3d2f 100%);
	opacity: 0.8;
	transition: all 0.35s ease;
}

.oghemp-mvv-card:hover {
	transform: translateY(-8px);
	border-color: rgba(46, 204, 113, 0.5);
	box-shadow: 0 20px 40px rgba(13, 35, 25, 0.12), 0 0 0 1px rgba(46, 204, 113, 0.3);
}

.oghemp-mvv-card:hover::before {
	opacity: 1;
	height: 5px;
}

.oghemp-mvv-card .card-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(27, 61, 47, 0.08) 100%);
	border: 1px solid rgba(46, 204, 113, 0.35);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	color: #1b3d2f;
	box-shadow: 0 6px 18px rgba(46, 204, 113, 0.12);
	transition: all 0.3s ease;
}

.oghemp-mvv-card:hover .card-icon {
	transform: scale(1.1) rotate(3deg);
	background: linear-gradient(135deg, #2ecc71 0%, #1b3d2f 100%);
	color: #ffffff;
	border-color: #2ecc71;
	box-shadow: 0 8px 24px rgba(46, 204, 113, 0.3);
}

.oghemp-mvv-card h3 {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 25px;
	font-weight: 700;
	color: #0d2319;
	margin-bottom: 14px;
	letter-spacing: -0.3px;
}

.oghemp-mvv-card p {
	font-size: 15px;
	color: #475569;
	line-height: 1.7;
	margin: 0;
	font-weight: 400;
}

/* 3. Our Story Section */
.oghemp-story-section {
	background: #FFFFFF;
	padding: 90px 24px;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.oghemp-story-container {
	max-width: 1140px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.oghemp-story-header h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 42px;
	font-weight: 700;
	color: var(--og-text-dark);
	margin-bottom: 24px;
}

.oghemp-story-header h2 span {
	color: var(--og-green-primary);
}

.oghemp-story-header p {
	font-size: 16px;
	color: var(--og-text-muted);
	line-height: 1.8;
	margin-bottom: 20px;
}

.oghemp-story-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 36px;
}

.stat-box {
	background: linear-gradient(135deg, #ffffff 0%, #f4f8f5 100%);
	padding: 24px 22px;
	border-radius: 14px;
	border: 1px solid rgba(46, 204, 113, 0.22);
	border-left: 4px solid #2ecc71;
	box-shadow: 0 8px 24px rgba(13, 35, 25, 0.04);
	transition: all 0.3s ease;
}

.stat-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(13, 35, 25, 0.08);
	border-color: rgba(46, 204, 113, 0.4);
}

.stat-box .number {
	font-family: 'Outfit', sans-serif;
	font-size: 34px;
	font-weight: 800;
	background: linear-gradient(135deg, #0d2319 0%, #2ecc71 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: block;
	line-height: 1;
	margin-bottom: 6px;
}

.stat-box .label {
	font-size: 12px;
	color: #475569;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
}

.story-image-wrap {
	position: relative;
}

.story-image-wrap img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(13, 35, 25, 0.12);
	border: 1px solid rgba(46, 204, 113, 0.2);
	display: block;
}

/* 4. Team OG Section */
.oghemp-team-section {
	max-width: 1140px;
	margin: 90px auto 40px;
	padding: 0 24px;
	text-align: center;
}

.oghemp-team-section h2 {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 42px;
	font-weight: 800;
	color: #0d2319;
	margin-bottom: 14px;
	letter-spacing: -0.5px;
}

.oghemp-team-section h2 span {
	color: #2ecc71;
}

.oghemp-team-section p.section-sub {
	font-size: 17px;
	color: #64748b;
	max-width: 660px;
	margin: 0 auto 54px;
}

.oghemp-team-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 36px;
}

.oghemp-team-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8faf8 100%);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(13, 35, 25, 0.06);
	border: 1px solid rgba(46, 204, 113, 0.2);
	transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	display: flex;
	flex-direction: column;
	text-align: center;
}

.oghemp-team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 24px 48px rgba(13, 35, 25, 0.14), 0 0 0 1px rgba(46, 204, 113, 0.35);
	border-color: rgba(46, 204, 113, 0.4);
}

.team-img-wrapper {
	position: relative;
	width: 100%;
	height: 320px;
	overflow: hidden;
	background: #0d2319;
}

.team-img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.5s ease;
}

.oghemp-team-card:hover .team-img-wrapper img {
	transform: scale(1.08);
}

.team-info {
	padding: 26px 20px 22px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.team-info h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #0d2319;
	margin-bottom: 6px;
}

.team-info .role {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #1b3d2f;
	background: rgba(46, 204, 113, 0.15);
	border: 1px solid rgba(46, 204, 113, 0.25);
	padding: 4px 12px;
	border-radius: 20px;
	display: inline-block;
	margin: 0 auto 16px auto;
	text-transform: uppercase;
}
}

.team-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 10px;
}

.team-socials a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--og-green-light);
	color: var(--og-green-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--og-transition);
	text-decoration: none;
}

.team-socials a:hover {
	background: var(--og-green-primary);
	color: #FFFFFF;
	transform: translateY(-2px);
}

/* 5. CTA Section */
.oghemp-cta-section {
	max-width: 1140px;
	margin: 60px auto 20px;
	padding: 0 24px;
}

.oghemp-cta-card {
	background: linear-gradient(135deg, var(--og-green-primary) 0%, var(--og-green-dark) 100%);
	color: #FFFFFF;
	border-radius: var(--og-card-radius);
	padding: 60px 40px;
	text-align: center;
	box-shadow: var(--og-card-shadow);
	position: relative;
	overflow: hidden;
}

.oghemp-cta-card h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 38px;
	color: #FFFFFF;
	margin-bottom: 16px;
}

.oghemp-cta-card p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.88);
	max-width: 640px;
	margin: 0 auto 32px;
}

.oghemp-cta-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
}

.oghemp-btn-primary {
	background: var(--og-gold-accent);
	color: #FFFFFF;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	transition: var(--og-transition);
	display: inline-block;
}

.oghemp-btn-primary:hover {
	background: #D4B06A;
	color: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.oghemp-btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: #FFFFFF;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: var(--og-transition);
	display: inline-block;
}

.oghemp-btn-secondary:hover {
	background: #FFFFFF;
	color: var(--og-green-dark);
	transform: translateY(-2px);
}

/* ==============================================================================
   1.5 Media Mentions Auto-Scrolling Infinite Marquee Carousel
   ============================================================================== */
@keyframes oghemp-marquee-slide {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.oghemp-about-press-section {
	width: 100%;
	background: #FAF8F5;
	padding: 36px 0 32px 0;
	margin: 0 auto;
	border-top: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	overflow: hidden;
	text-align: center;
}

.oghemp-about-press-section .press-eyebrow {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #64748b;
	margin-bottom: 16px;
	display: inline-block;
}

.oghemp-about-press-section .oghemp-media-marquee-container,
.oghemp-media-marquee-container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	box-sizing: border-box;
	padding: 12px 0;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.oghemp-about-press-section .oghemp-media-marquee-track,
.oghemp-media-marquee-track {
	display: flex;
	width: max-content;
	animation: oghemp-marquee-slide 55s linear infinite;
	will-change: transform;
	user-select: none;
	-webkit-user-select: none;
}

.oghemp-about-press-section .oghemp-media-marquee-container:hover .oghemp-media-marquee-track,
.oghemp-media-marquee-container:hover .oghemp-media-marquee-track {
	animation-play-state: paused;
}

.oghemp-about-press-section .oghemp-media-marquee-group,
.oghemp-media-marquee-group {
	display: flex;
	align-items: center;
	gap: 48px;
	padding-right: 48px;
	flex-shrink: 0;
}

.oghemp-about-press-section .oghemp-media-logo-item,
.oghemp-media-logo-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	text-decoration: none;
	border-radius: 12px;
	transition: transform 0.3s ease, opacity 0.25s ease;
	flex-shrink: 0;
}

.oghemp-about-press-section .oghemp-media-logo-img,
.oghemp-media-logo-img {
	height: 38px !important;
	max-height: 38px !important;
	width: auto !important;
	max-width: 170px !important;
	object-fit: contain !important;
	display: inline-block !important;
	vertical-align: middle !important;
	filter: none !important;
	opacity: 1 !important;
	visibility: visible !important;
	transition: transform 0.3s ease;
}

.oghemp-about-press-section .oghemp-media-logo-item:hover .oghemp-media-logo-img,
.oghemp-media-logo-item:hover .oghemp-media-logo-img {
	transform: scale(1.08);
}

/* 3.5 Enterprise Clients & Partners Wall */
.oghemp-about-clients-section {
	max-width: 1140px;
	margin: 80px auto;
	padding: 0 24px;
	text-align: center;
}

.oghemp-about-clients-section h2 {
	font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #0d2319;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.oghemp-about-clients-section h2 span {
	color: #2ecc71;
}

.oghemp-about-clients-section .clients-sub {
	font-size: 16px;
	color: #64748b;
	max-width: 680px;
	margin: 0 auto 40px;
	line-height: 1.6;
}

.oghemp-clients-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.oghemp-client-card {
	background: #FFFFFF;
	border-radius: 14px;
	border: 1px solid rgba(46, 204, 113, 0.18);
	box-shadow: 0 6px 18px rgba(13, 35, 25, 0.03);
	padding: 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 110px;
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.oghemp-client-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(13, 35, 25, 0.08);
	border-color: rgba(46, 204, 113, 0.4);
}

.oghemp-client-card img {
	max-height: 46px;
	max-width: 140px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.75;
	transition: all 0.3s ease;
}

.oghemp-client-card:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

.oghemp-client-card .client-badge-label {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #1b3d2f;
	letter-spacing: -0.2px;
}

.oghemp-client-card .client-badge-sub {
	font-size: 11px;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-top: 4px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
	.oghemp-mvv-grid,
	.oghemp-team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.oghemp-clients-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.oghemp-story-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.story-image-wrap img {
		height: 360px;
	}
	.oghemp-about-hero h1 {
		font-size: 40px;
	}
}

@media (max-width: 640px) {
	.oghemp-mvv-grid,
	.oghemp-team-grid {
		grid-template-columns: 1fr;
	}
	.oghemp-clients-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.oghemp-about-press-grid {
		gap: 20px 28px;
		padding: 18px 16px;
	}
	.oghemp-about-clients-section h2 {
		font-size: 28px;
	}
	.oghemp-about-hero h1 {
		font-size: 32px;
	}
	.oghemp-about-hero .hero-subtitle {
		font-size: 16px;
	}
	.oghemp-cta-card {
		padding: 40px 20px;
	}
	.oghemp-cta-card h2 {
		font-size: 28px;
	}
}
