/* ==========================================================================
   1. DESIGN TOKENS (Scoped to wrapper)
   ========================================================================== */
.ve-eda-page-wrapper {
	--ve-text-light: #ffffff;
	--ve-text-dark: #2c3e35;
	--ve-text-muted: #5a6e63;
	--ve-accent: #c78c35;
	--ve-accent-dark: #b37a2d;
	--ve-cream: #f4e7c7;
	--ve-green: #135833;
	--ve-green-dark: #0c3820;
	--ve-green-light: #e8f0eb;
	--ve-white: #ffffff;
	--ve-gray-light: #f9fbf9;
	--ve-line-light: rgba(255, 255, 255, 0.15);
	--ve-line-dark: rgba(19, 88, 51, 0.15);
	--ve-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	--ve-radius: 12px;
	--ve-max-width: 1600px;
	font-family: inherit;
}

/* ==========================================================================
   2. GLOBAL RESETS & CONTAINERS
   ========================================================================== */
.ve-eda-page-wrapper * {
	box-sizing: border-box;
}

.ve-eda-page-wrapper {
	color: var(--ve-text-dark);
	background-color: var(--ve-white);
}

.ve-eda-page-wrapper .entry-content p {
	margin-bottom: 1.5em;
	line-height: 1.65;
	color: var(--ve-text-muted);
}

/* Heading lines */
.ve-eda-mv__heading-line,
.ve-eda-journey__heading-line {
	width: 80px;
	height: 3px;
	background: var(--ve-accent);
	margin: 15px auto 0;
	border-radius: 2px;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */
.ve-eda-hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: 
		linear-gradient(90deg, rgba(19, 88, 51, 0.75) 0%, rgba(19, 88, 51, 0.40) 30%, rgba(19, 88, 51, 0.1) 60%, rgba(19, 88, 51, 0) 80%),
		var(--ve-eda-hero-bg, linear-gradient(135deg, #135833 0%, #246d42 100%));
	background-size: cover;
	background-position: center center;
	color: var(--ve-text-light);
}

.ve-eda-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 75% 30%, rgba(255, 232, 152, 0.25) 0%, rgba(255, 232, 152, 0.08) 18%, transparent 40%),
		radial-gradient(circle at 68% 55%, rgba(255, 180, 62, 0.08) 0%, transparent 32%);
	pointer-events: none;
}

.ve-eda-hero__inner {
	position: relative;
	z-index: 2;
	max-width: var(--ve-max-width);
	width: 100%;
	margin: 0 auto;
	padding: 80px 86px 60px;
}

.ve-eda-hero__content {
	max-width: 800px;
}

.ve-eda-hero__eyebrow {
	margin: 0 0 10px;
	font-family: 'Birthstone', cursive;
	font-size: clamp(4.8rem, 7.05vw, 8.1rem);
	font-style: normal;
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: #c3c982;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.ve-eda-hero__title {
	margin: 0 0 20px;
	font-size: clamp(2.2rem, 3.5vw, 3.8rem);
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	color: #ffffff;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.ve-eda-hero__description {
	margin: 0;
	font-size: clamp(1.1rem, 1.5vw, 1.25rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	max-width: 680px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   4. INTRO SECTION
   ========================================================================== */
.ve-eda-intro {
	padding: 100px 80px;
	background-color: var(--ve-white);
}

.ve-eda-intro__container {
	max-width: var(--ve-max-width);
	margin: 0 auto;
}

.ve-eda-intro__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 60px;
	align-items: center;
}

.ve-eda-intro__title {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--ve-green);
	margin: 0 0 25px;
	position: relative;
}

.ve-eda-intro__stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.ve-eda-intro__stat-card {
	padding: 24px 20px;
	background: var(--ve-gray-light);
	border: 1px solid var(--ve-line-dark);
	border-radius: var(--ve-radius);
	text-align: center;
	transition: all 0.3s ease;
}

.ve-eda-intro__stat-card:hover {
	transform: translateY(-5px);
	border-color: var(--ve-accent);
	box-shadow: var(--ve-shadow);
}

.ve-eda-intro__stat-value {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--ve-accent);
	margin: 0 0 8px;
}

.ve-eda-intro__stat-label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--ve-text-dark);
	margin: 0;
}

.ve-eda-intro__image-wrapper {
	border-radius: var(--ve-radius);
	overflow: hidden;
	box-shadow: var(--ve-shadow);
	position: relative;
}

.ve-eda-intro__image-wrapper::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 2px solid var(--ve-accent);
	border-radius: var(--ve-radius);
	margin: 15px;
	pointer-events: none;
}

.ve-eda-intro__img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 520px;
}

/* ==========================================================================
   5. MISSION & VISION SECTION
   ========================================================================== */
.ve-eda-mv {
	padding: 100px 80px;
	background-color: var(--ve-green-light);
}

.ve-eda-mv__container {
	max-width: var(--ve-max-width);
	margin: 0 auto;
}

.ve-eda-mv__heading-group {
	text-align: center;
	margin-bottom: 60px;
}

.ve-eda-mv__heading {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--ve-green);
	margin: 0;
}

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

.ve-eda-mv__card {
	background: var(--ve-white);
	border-radius: var(--ve-radius);
	overflow: hidden;
	box-shadow: var(--ve-shadow);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
	flex-direction: column;
}

.ve-eda-mv__card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(19, 88, 51, 0.12);
}

.ve-eda-mv__card-media {
	height: 240px;
	overflow: hidden;
	position: relative;
}

.ve-eda-mv__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.ve-eda-mv__card:hover .ve-eda-mv__card-img {
	transform: scale(1.06);
}

.ve-eda-mv__card-content {
	padding: 30px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.ve-eda-mv__card-title {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--ve-green);
	margin: 0 0 15px;
	border-bottom: 2px solid var(--ve-cream);
	padding-bottom: 10px;
}

.ve-eda-mv__card-text {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--ve-text-muted);
	margin: 0;
}

/* ==========================================================================
   6. JOURNEY TIMELINE SECTION
   ========================================================================== */
.ve-eda-journey {
	padding: 100px 80px;
	background-color: var(--ve-green-dark);
	color: var(--ve-text-light);
}

.ve-eda-journey__container {
	max-width: var(--ve-max-width);
	margin: 0 auto;
}

.ve-eda-journey__heading-group {
	text-align: center;
	margin-bottom: 80px;
}

.ve-eda-journey__heading {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--ve-white);
	margin: 0;
}

.ve-eda-journey__timeline {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 0;
}

/* Vertical line */
.ve-eda-journey__timeline-line {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--ve-line-light);
	transform: translateX(-50%);
}

.ve-eda-journey__item {
	position: relative;
	width: 50%;
	padding: 0 40px;
	margin-bottom: 60px;
}

.ve-eda-journey__item--left {
	left: 0;
	text-align: right;
}

.ve-eda-journey__item--right {
	left: 50%;
	text-align: left;
}

/* Timeline dot */
.ve-eda-journey__point {
	position: absolute;
	top: 30px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--ve-accent);
	border: 4px solid var(--ve-green-dark);
	box-shadow: 0 0 0 4px var(--ve-line-light);
	z-index: 10;
}

.ve-eda-journey__item--left .ve-eda-journey__point {
	right: -8px;
}

.ve-eda-journey__item--right .ve-eda-journey__point {
	left: -8px;
}

/* Card layout */
.ve-eda-journey__card {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--ve-line-light);
	border-radius: var(--ve-radius);
	padding: 24px;
	transition: all 0.3s ease;
}

.ve-eda-journey__card:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-3px);
	border-color: var(--ve-accent);
}

.ve-eda-journey__year {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--ve-accent);
	margin-bottom: 12px;
	display: inline-block;
}

.ve-eda-journey__card-inner {
	display: flex;
	gap: 20px;
}

.ve-eda-journey__item--left .ve-eda-journey__card-inner {
	flex-direction: row-reverse;
}

.ve-eda-journey__card-content {
	flex: 1;
}

.ve-eda-journey__card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--ve-white);
	margin: 0 0 10px;
}

.ve-eda-journey__card-desc {
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.ve-eda-journey__card-media {
	flex: 0 0 100px;
	height: 100px;
	border-radius: 8px;
	overflow: hidden;
}

.ve-eda-journey__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ==========================================================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
	.ve-eda-hero__inner {
		padding: 60px 40px;
	}
	.ve-eda-intro {
		padding: 80px 40px;
	}
	.ve-eda-intro__grid {
		gap: 40px;
	}
	.ve-eda-mv {
		padding: 80px 40px;
	}
	.ve-eda-mv__grid {
		grid-template-columns: 1fr;
		gap: 30px;
		max-width: 600px;
		margin: 0 auto;
	}
	.ve-eda-mv__card-media {
		height: 280px;
	}
	.ve-eda-journey {
		padding: 80px 40px;
	}
}

@media (max-width: 768px) {
	.ve-eda-hero {
		min-height: 400px;
	}
	.ve-eda-hero__inner {
		padding: 60px 20px;
	}
	.ve-eda-intro {
		padding: 60px 20px;
	}
	.ve-eda-intro__grid {
		grid-template-columns: 1fr;
	}
	.ve-eda-intro__stats-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	.ve-eda-intro__stat-card {
		padding: 16px;
	}
	.ve-eda-mv {
		padding: 60px 20px;
	}
	.ve-eda-journey {
		padding: 60px 20px;
	}
	
	/* Mobile Timeline: transform to single list */
	.ve-eda-journey__timeline-line {
		left: 20px;
	}
	.ve-eda-journey__item {
		width: 100%;
		padding: 0 0 0 45px;
		text-align: left;
	}
	.ve-eda-journey__item--left {
		left: 0;
	}
	.ve-eda-journey__item--right {
		left: 0;
	}
	.ve-eda-journey__item--left .ve-eda-journey__card-inner {
		flex-direction: row;
	}
	.ve-eda-journey__item--left .ve-eda-journey__point,
	.ve-eda-journey__item--right .ve-eda-journey__point {
		left: 12px;
	}
	.ve-eda-journey__card-inner {
		flex-direction: column-reverse !important;
	}
	.ve-eda-journey__card-media {
		flex: 0 0 auto;
		width: 100%;
		height: 140px;
		margin-bottom: 15px;
	}
}
