.jat-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
}

.jat-hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.jat-hero-bg video,
.jat-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jat-hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(15,39,24,0.35) 0%, rgba(15,39,24,0.55) 55%, rgba(15,39,24,0.88) 100%),
		linear-gradient(90deg, rgba(15,39,24,0.55) 0%, rgba(15,39,24,0.15) 45%, rgba(15,39,24,0.05) 100%);
}

.jat-hero-content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding-top: 80px;
}

.jat-hero-content .jat-eyebrow { color: var(--jat-accent, #B58A3C); }
.jat-hero-content .jat-eyebrow::before { background: var(--jat-accent, #B58A3C); }

.jat-hero-content h1 {
	color: #fff;
	margin-bottom: 0.45em;
	text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.jat-hero-content p {
	color: rgba(255,255,255,0.88);
	font-size: 1.1rem;
	max-width: 480px;
}

.jat-hero-cta {
	display: flex;
	gap: 16px;
	margin-top: 1.8rem;
	flex-wrap: wrap;
}

.jat-hero-scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	width: 26px; height: 42px;
	border: 2px solid rgba(255,255,255,0.65);
	border-radius: 20px;
	z-index: 1;
	transition: border-color var(--jat-duration) var(--jat-ease);
}
.jat-hero-scroll:hover { border-color: var(--jat-accent, #B58A3C); }
.jat-hero-scroll-dot {
	position: absolute;
	top: 6px; left: 50%;
	width: 4px; height: 8px;
	background: var(--jat-accent, #B58A3C);
	border-radius: 2px;
	transform: translateX(-50%);
	animation: jatScrollDot 1.8s ease-in-out infinite;
}
@keyframes jatScrollDot {
	0% { top: 6px; opacity: 1; }
	60% { top: 22px; opacity: 0.3; }
	100% { top: 6px; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.jat-hero-scroll-dot { animation: none; }
}
