/* Hero banner - full viewport, static */
.banner { width: 100%; height: 100vh; overflow: hidden; position: relative; }
.banner > div,
.banner > div a { display: block; width: 100%; height: 100%; }
.banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

/* Story Map Section */
.story_map { width: 100%; padding: 20px 0 40px; background: #f8f8f8; }
.story_map .map_wrap {
	position: relative;
	width: 100%;
	max-width: 1200px;
	max-height: 80vh;
	margin: 20px auto 0;
	line-height: 0;
	text-align: center;
}
.story_map .map_bg {
	display: inline-block;
	max-width: 100%;
	max-height: 80vh;
	width: auto;
	height: auto;
	object-fit: contain;
}
.map_dot {
	position: absolute;
	width: 18px;
	height: 18px;
	margin: -9px 0 0 -9px;
	border-radius: 50%;
	background: #81a849;
	box-shadow: 0 0 0 0 rgba(129, 168, 73, 0.7);
	cursor: pointer;
	z-index: 3;
	animation: mapDotPulse 1.8s infinite;
}
.map_dot:hover { background: #4f8320; }
@keyframes mapDotPulse {
	0%   { box-shadow: 0 0 0 0    rgba(129, 168, 73, 0.75); }
	70%  { box-shadow: 0 0 0 16px rgba(129, 168, 73, 0); }
	100% { box-shadow: 0 0 0 0    rgba(129, 168, 73, 0); }
}

/* Popup */
.map_popup {
	display: none;
	position: fixed;
	left: 0; top: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 9999;
}
.map_popup.show { display: block; }
.map_popup_box {
	position: absolute;
	left: 50%; top: 50%;
	transform: translate(-50%, -50%);
	width: 86%;
	max-width: 420px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid #81a849;
	border-radius: 8px;
	padding: 24px 24px 20px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}
.map_popup_box h3 { margin: 0 0 10px; color: #4f8320; font-size: 20px; }
.map_popup_box p { margin: 0; color: #4c4c4c; font-size: 14px; line-height: 1.7; }
.map_popup_cta {
	display: inline-block;
	margin-top: 18px;
	color: #3B5E5B;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: all .2s ease;
}
.map_popup_cta:hover { font-weight: bold; text-decoration: underline; color: #3B5E5B; }
.map_popup_close {
	position: absolute;
	top: 6px; right: 12px;
	font-size: 26px;
	line-height: 1;
	color: #999;
	cursor: pointer;
}
.map_popup_close:hover { color: #81a849; }
