.epoksera-hero {
	position: relative;
	font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
	background: #faf6f0;
	overflow: hidden;
	isolation: isolate;
}

.epoksera-hero__inner {
	position: relative;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.epoksera-hero__grid {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 60px;
	flex-wrap: wrap;
}

.epoksera-hero__content {
	flex: 1 1 480px;
	min-width: 0;
}

.epoksera-hero__media {
	flex: 1 1 480px;
	min-width: 0;
	height: 500px;
	position: relative;
	overflow: hidden;
}

.epoksera-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Shapes */
.epoksera-hero-shape-asymmetric .epoksera-hero__media {
	border-radius: 200px 24px 24px 200px;
}

.epoksera-hero-shape-asymmetric .epoksera-hero__grid[style*="row-reverse"] .epoksera-hero__media,
.epoksera-hero-shape-asymmetric .epoksera-hero__grid:has(.epoksera-hero__media:first-child) .epoksera-hero__media {
	border-radius: 24px 200px 200px 24px;
}

.epoksera-hero-shape-rounded .epoksera-hero__media {
	border-radius: 28px;
}

.epoksera-hero-shape-square .epoksera-hero__media {
	border-radius: 0;
}

.epoksera-hero-shape-circle .epoksera-hero__media {
	border-radius: 50%;
	aspect-ratio: 1;
	height: auto;
}

/* Eyebrow */
.epoksera-hero__eyebrow {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #d4894a;
	margin-bottom: 22px;
}

/* Headline */
.epoksera-hero__headline {
	font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.01em;
	color: #1a3548;
	margin: 0 0 22px;
}

.epoksera-hero__headline em {
	font-style: normal;
	color: #d4894a;
}

/* Description */
.epoksera-hero__desc {
	font-size: 1.05rem;
	line-height: 1.6;
	color: #3d5668;
	margin: 0 0 32px;
	max-width: 540px;
}

/* Buttons */
.epoksera-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 56px;
}

.epoksera-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: 4px;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid transparent;
	white-space: nowrap;
}

.epoksera-hero__btn--primary {
	background: #1a3548;
	color: #ffffff;
	border-color: #1a3548;
}

.epoksera-hero__btn--primary:hover {
	background: #d4894a;
	border-color: #d4894a;
	transform: translateY(-2px);
	box-shadow: 0 10px 24px -10px rgba(212, 137, 74, 0.6);
}

.epoksera-hero__btn--secondary {
	background: transparent;
	color: #1a3548;
	border-color: #1a3548;
}

.epoksera-hero__btn--secondary:hover {
	background: #1a3548;
	color: #fff;
	transform: translateY(-2px);
}

/* Stats */
.epoksera-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.epoksera-hero__stat {
	min-width: 0;
}

.epoksera-hero__stat-value {
	font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
	font-size: clamp(2.2rem, 4vw, 3rem);
	font-weight: 600;
	line-height: 1;
	color: #1a3548;
	margin-bottom: 12px;
	letter-spacing: -0.01em;
}

.epoksera-hero__stat-label {
	font-size: 0.92rem;
	color: #3d5668;
	font-weight: 400;
}

/* Responsive */
@media (max-width: 960px) {
	.epoksera-hero__grid {
		flex-direction: column !important;
		gap: 40px;
	}
	.epoksera-hero__content {
		order: 1;
		flex-basis: 100%;
	}
	.epoksera-hero__media {
		order: 2;
		flex-basis: 100%;
		height: 380px;
	}
	.epoksera-hero-shape-asymmetric .epoksera-hero__media {
		border-radius: 24px;
	}
	.epoksera-hero__buttons {
		margin-bottom: 44px;
	}
}

@media (max-width: 640px) {
	.epoksera-hero__media {
		height: 280px;
	}
	.epoksera-hero__buttons {
		flex-direction: column;
		align-items: stretch;
	}
	.epoksera-hero__btn {
		width: 100%;
	}
	.epoksera-hero__stats {
		gap: 28px;
	}
	.epoksera-hero__stat-value {
		margin-bottom: 6px;
	}
}
