/* ============================================================
   Hero Video — pełnoekranowe tło video + gradient z lewej.
   ============================================================ */

.hero-video {
	position: relative;
	width: 100%;
	min-height: 100svh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #ffffff;
	margin-top: calc(-1 * var(--floating-nav-height, 84px));
}

/* ─── Video w tle ─────────────────────────────────────────── */
.hero-video__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
}

.hero-video__bg-fallback {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(135deg, var(--c-bg-rose) 0%, var(--c-bg-dark) 100%);
}

/* ─── Brązowa nakładka po lewej, transparentna po prawej ──── */
.hero-video__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(to right,
			rgba(12, 8, 4, 0.97) 0%,
			rgba(12, 8, 4, 0.88) 30%,
			rgba(12, 8, 4, 0.45) 58%,
			transparent 85%
		);
}

/* ─── Wrapper (pełna szerokość kontenera) ─────────────────── */
.hero-video__wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: center;
	padding-top: calc(120px + var(--floating-nav-height, 84px));
	padding-bottom: 80px;
}

/* ─── Content — lewa strona, max 52% szerokości ───────────── */
.hero-video__content {
	width: 100%;
	max-width: min(580px, 52%);
}

/* H1 — focus keyword (widoczny, stylizowany jako mały uppercase label) */
h1.hero-video__label {
	font-size: 11px;
	font-weight: 500;
	margin: 0 0 20px;
}

.hero-video__label {
	display: block;
	font-family: var(--font-sans);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 20px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.30);
}

/* Główny statement */
.hero-video__statement {
	font-family: var(--font-serif);
	font-size: clamp(52px, 6.5vw, 96px);
	font-weight: 600;
	font-style: italic;
	line-height: 1.05;
	color: #ffffff;
	margin: 0 0 28px;
	letter-spacing: -0.02em;
}

/* Opis (secondary keywords) */
.hero-video__sub {
	font-family: var(--font-sans);
	font-size: clamp(14px, 1.1vw, 17px);
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 20px;
	max-width: 480px;
}

/* Meta — cena / lokalizacja */
.hero-video__meta {
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 32px;
}

/* CTA */
.hero-video__cta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.hero-video__cta .btn--primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 16px 32px;
	background: linear-gradient(135deg, #7A5C1E 0%, #C9A96E 60%, #E8C98A 100%);
	color: #ffffff;
	font-family: var(--font-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	box-shadow:
		0 8px 28px -6px rgba(122, 92, 30, 0.55),
		0 3px 10px -2px rgba(122, 92, 30, 0.35);
	transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-video__cta .btn--primary:hover,
.hero-video__cta .btn--primary:focus-visible {
	background: linear-gradient(135deg, #5E3A0C 0%, #A07830 60%, #C9A96E 100%);
	box-shadow:
		0 12px 40px -8px rgba(122, 92, 30, 0.65),
		0 4px 12px -2px rgba(122, 92, 30, 0.40);
	transform: translateY(-1px);
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 767px) {
	.hero-video {
		position: relative;
		align-items: flex-end;
	}

	.hero-video__overlay {
		background: linear-gradient(to bottom,
			rgba(12, 8, 4, 0.55) 0%,
			rgba(12, 8, 4, 0.88) 60%,
			rgba(12, 8, 4, 0.97) 100%
		);
	}

	.hero-video__wrap {
		padding-top: 60px;
		padding-bottom: 56px;
	}

	.hero-video__content {
		max-width: 100%;
	}

	.hero-video__statement {
		font-size: clamp(42px, 11vw, 62px);
	}
}
