/* ================================================================
   Hero section — full-viewport static image with gradient + text
   ================================================================ */

.section-hero {
	position: relative;
	height: 100vh;
	height: 100svh;
	min-height: 600px;
	background: #000;
	overflow: hidden;
	padding-top: 64px; /* clear fixed header */
}

/* ── Background image container ── */

.section-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.section-hero__img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 45% center;
	transform: translateY(-96px); /* -translate-y-24 on mobile */
	display: block;
}

@media (min-width: 768px) {
	.section-hero__img {
		object-position: center center;
		transform: translateY(0);
	}
}

/* ── Gradient overlay ── */

.section-hero__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.30) 50%,
		rgba(0, 0, 0, 0.70) 100%
	);
}

/* ── Text content ── */

.section-hero__content {
	position: absolute;
	bottom: 128px;
	left: 0;
	right: 0;
	z-index: 10;
}

.section-hero__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
	text-align: center;
}

@media (min-width: 640px) {
	.section-hero__inner {
		padding: 0 24px;
	}
}

@media (min-width: 1024px) {
	.section-hero__inner {
		padding: 0 32px;
	}
}

.section-hero__name {
	font-family: var(--font-body);
	font-weight: var(--fw-medium);
	font-size: clamp(36px, 7vw, 72px);
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 16px;
}

.section-hero__tagline {
	font-family: var(--font-body);
	font-weight: var(--fw-light);
	font-size: clamp(16px, 2.5vw, 20px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.90);
	margin: 0 auto 24px;
	max-width: 640px;
}

.section-hero__accent {
	display: block;
	margin: 0 auto;
	width: clamp(200px, 20vw, 320px);
	height: auto;
}

/* ── Mobile adjustments ── */

@media (max-width: 767px) {
	.section-hero__content {
		bottom: 64px;
	}
}
