/* ==========================================================
 * Homepage hero slider ONLY (.zz-hero / .zz-hero-slide / etc).
 * Distinct from .zz-page-hero, which is the internal page-title
 * banner (About/Operations/Projects/etc) and is NOT touched here.
 *
 * Fixed explicit height per breakpoint (not aspect-ratio): the slide
 * image fills that height completely via width/height:100% +
 * object-fit:cover, so there is no way for a gap to appear between
 * the image and the container edge regardless of the image's own
 * natural proportions.
 * ========================================================== */

.zz-hero {
	position: relative;
	width: 100%;
	height: 520px;
	color: var(--zz-white);
	background: var(--zz-black);
	overflow: hidden;
}
.zz-hero-slides { position: relative; width: 100%; height: 100%; }
.zz-hero-slide {
	position: absolute;
	inset: 0;
	display: none;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 900ms ease;
}
.zz-hero-slide.is-active {
	display: block;
	opacity: 1;
	visibility: visible;
	position: relative;
}
.zz-hero-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.zz-hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.4);
	background: rgba(17,17,17,0.35);
	color: var(--zz-white);
	font-size: 1.1rem;
	transition: background var(--zz-transition), border-color var(--zz-transition);
}
.zz-hero-nav:hover { background: var(--zz-gold); border-color: var(--zz-gold); color: var(--zz-black); }
.zz-hero-prev { left: 30px; }
.zz-hero-next { right: 30px; }

.zz-hero-dots {
	position: absolute;
	bottom: var(--zz-space-lg);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	gap: 8px;
}
.zz-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255,255,255,0.4);
	border: 0;
	padding: 0;
	transition: background var(--zz-transition), transform var(--zz-transition);
}
.zz-hero-dot.is-active { background: var(--zz-gold); transform: scale(1.3); }

/* Tablet */
@media (max-width: 1024px) {
	.zz-hero { height: 400px; }
	.zz-hero-nav { width: 40px; height: 40px; font-size: 1rem; }
	.zz-hero-prev { left: 18px; }
	.zz-hero-next { right: 18px; }
	.zz-hero-dots { bottom: var(--zz-space-md); }
}

/* Mobile */
@media (max-width: 767px) {
	.zz-hero { height: 300px; }
	.zz-hero-nav { width: 34px; height: 34px; font-size: 0.9rem; }
	.zz-hero-prev { left: 12px; }
	.zz-hero-next { right: 12px; }
	.zz-hero-dots { bottom: var(--zz-space-sm); gap: 6px; }
	.zz-hero-dot { width: 8px; height: 8px; }
}

/* Small mobile */
@media (max-width: 480px) {
	.zz-hero { height: 260px; }
}
