/*
Theme Name: DK Film Premium
Theme URI: https://dkfilm.pl
Author: DK Film
Description: Mockup 1:1 — DK Foto Film
Version: 3.6.3
Text Domain: dkfilm-premium
*/

:root {
	--black: #0B0B0B;
	--bg: #0B0B0B;
	--gold: #C8A46A;
	--gold-light: #d4b06a;
	--white: #FAF8F4;
	--cream: #FAF8F4;
	--muted: #a8a8a8;
	--border: rgba(255, 255, 255, 0.18);
	--border-gold: rgba(197, 160, 89, 0.55);
	--serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
	--sans: 'Manrope', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--header-h: 80px;
	--container: 1400px;
	--gutter: clamp(20px, 4vw, 48px);
	--hero-h: clamp(440px, 53vh, 540px);
	--films-pull: 0px;
	--ease: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--sans);
	font-size: 14px;
	line-height: 1.65;
	color: var(--white);
	background: var(--black);
	-webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--black); }

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--header-h);
	background: transparent;
	transition: background var(--ease);
}

.header.is-scrolled {
	background: rgba(0, 0, 0, 0.88);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	height: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 var(--gutter);
}

.header__logo {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	justify-self: start;
}

.header__logo-img {
	display: block;
	max-height: 40px;
	width: auto;
	height: auto;
}

.header__logo-brand {
	font-family: var(--serif);
	font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
	font-weight: 400;
	letter-spacing: 0.36em;
	text-transform: uppercase;
	color: var(--cream, #faf8f4);
	white-space: nowrap;
	line-height: 1;
}

.header__logo-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-family: var(--serif);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	flex-shrink: 0;
}

.header__logo-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.header__logo-name {
	font-family: var(--serif);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	line-height: 1.1;
}

.header__logo-tag {
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
}

.header__nav {
	justify-self: center;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 36px;
}

.header__menu a {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--white);
	transition: color var(--ease);
}

.header__menu a:hover { color: var(--gold); }

.header__nav .header__panel {
	display: none;
}

.header__panel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
	border: 1px solid var(--gold);
	background: transparent;
	transition: background var(--ease), color var(--ease);
	white-space: nowrap;
}

.header__panel:hover {
	background: rgba(200, 164, 106, 0.12);
	color: var(--white);
}

.header__panel--desktop {
	margin-right: 0;
}

.header__actions {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	justify-self: end;
}

.header__cta {
	padding: 12px 24px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--black);
	background: var(--gold);
	border: 1px solid var(--gold);
	transition: background var(--ease), border-color var(--ease), color var(--ease);
	white-space: nowrap;
}

.header__cta:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
	color: var(--black);
}

.header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 32px;
	height: 32px;
	justify-self: end;
}

.header__toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--gold);
	transition: transform var(--ease), opacity var(--ease);
}

.header__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-active span:nth-child(2) { opacity: 0; }
.header__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero — pierwszy ekran: hero + początek historii + karty + statystyki
   ========================================================================== */

.hero {
	position: relative;
	min-height: min(100vh, 920px);
	height: auto;
	overflow: hidden;
	background: var(--bg);
}

.hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse at 30% 40%, rgba(200, 164, 106, 0.12) 0%, transparent 55%),
		linear-gradient(
			90deg,
			rgba(11, 11, 11, 0.82) 0%,
			rgba(11, 11, 11, 0.5) 42%,
			rgba(11, 11, 11, 0.25) 100%
		),
		linear-gradient(
			to bottom,
			rgba(11, 11, 11, 0.35) 0%,
			transparent 30%,
			transparent 70%,
			rgba(11, 11, 11, 0.55) 100%
		);
}

.hero__grain {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.07;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__vignette {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	box-shadow: inset 0 0 120px 40px rgba(0, 0, 0, 0.55);
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	padding-top: var(--header-h);
	padding-bottom: 80px;
	box-sizing: border-box;
}

.hero__content {
	max-width: 560px;
}

.hero__num {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 24px;
}

.hero__num span {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.3em;
	color: var(--gold);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
}

.hero__num-line {
	display: block;
	width: 28px;
	height: 1px;
	background: var(--gold);
}

.hero__title {
	margin-bottom: 32px;
}

.hero__title-main {
	display: block;
	font-family: var(--serif);
	font-size: clamp(3rem, 6.2vw, 5.75rem);
	font-weight: 600;
	line-height: 1;
	color: var(--white);
	margin-bottom: 14px;
	letter-spacing: -0.01em;
}

.hero__title-sub {
	display: block;
	font-family: var(--sans);
	font-size: clamp(0.6875rem, 1.1vw, 0.8125rem);
	font-weight: 500;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--white);
	line-height: 1.65;
}

.hero__play-row {
	display: flex;
	align-items: center;
	gap: 18px;
}

.hero__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border: 1px solid var(--white);
	border-radius: 50%;
	color: var(--white);
	flex-shrink: 0;
	transition: background var(--ease), border-color var(--ease);
}

.hero__play:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--gold);
	color: var(--gold);
}

.hero__play-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hero__play-text strong {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--white);
}

.hero__play-text span {
	font-size: 11px;
	color: var(--muted);
	letter-spacing: 0.04em;
}

.hero__social {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding-right: 8px;
	position: relative;
}

.hero__social::after {
	content: '';
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 80px;
	background: rgba(255, 255, 255, 0.25);
}

.hero__social a {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	color: var(--white);
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	transition: color var(--ease);
}

.hero__social a:hover { color: var(--gold); }

/* ==========================================================================
   Section shared
   ========================================================================== */

.section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 32px;
}

.section-head__left { flex: 1; }

.section-label {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--gold);
	margin-bottom: 12px;
}

.section-title {
	font-family: var(--serif);
	font-size: clamp(1.625rem, 2.8vw, 2.375rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	line-height: 1.15;
}

.section-title--left { text-align: left; }

.section-link {
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--white);
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	transition: color var(--ease), border-color var(--ease);
	white-space: nowrap;
}

.section-link:hover {
	color: var(--gold);
	border-color: var(--gold);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	border: 1px solid transparent;
	transition: all var(--ease);
}

.btn--outline {
	color: var(--white);
	border-color: var(--white);
	background: transparent;
}

.btn--outline:hover {
	background: rgba(255, 255, 255, 0.06);
}

.btn--solid {
	color: var(--black);
	background: var(--gold);
	border-color: var(--gold);
	padding: 16px 32px;
}

.btn--solid:hover {
	background: var(--gold-light);
	border-color: var(--gold-light);
}

/* ==========================================================================
   Films
   ========================================================================== */

.films {
	position: relative;
	z-index: 2;
	margin-top: calc(-1 * var(--films-pull));
	padding: 96px 0 88px;
	background: var(--black);
}

.films--stories {
	margin-top: -1px;
	padding-top: clamp(56px, 7vh, 96px);
	padding-bottom: clamp(80px, 9vh, 120px);
}

.films__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-bottom: clamp(40px, 5.5vh, 72px);
	text-align: center;
}

.films__title {
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(1.75rem, 3.4vw, 2.75rem);
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
	line-height: 1.2;
}

.films__rule {
	display: block;
	width: 64px;
	height: 1px;
	background: var(--gold);
	opacity: 0.8;
}

.films__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.film-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.film-card__link {
	display: block;
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	isolation: isolate;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow:
		0 36px 70px rgba(0, 0, 0, 0.55),
		0 0 48px rgba(200, 164, 106, 0.07);
}

.film-card__link::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(to top, rgba(11, 11, 11, 0.45) 0%, transparent 38%),
		radial-gradient(ellipse at center, transparent 42%, rgba(0, 0, 0, 0.35) 100%);
	opacity: 0.88;
}

.film-card__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	transform: scale(1.12);
	transform-origin: center center;
	filter: contrast(1.08) saturate(0.86) brightness(0.88);
	transition: transform 0.7s ease;
}

.film-card:hover img { transform: scale(1.18); }

.film-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 1px solid rgba(250, 248, 244, 0.5);
	border-radius: 50%;
	color: var(--white);
	background: rgba(250, 248, 244, 0.08);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
	transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.film-card:hover .film-card__play {
	background: rgba(200, 164, 106, 0.2);
	border-color: var(--gold);
	transform: translate(-50%, -50%) scale(1.06);
}

.film-card__caption {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	text-align: center;
	padding: 0 4px;
}

.film-card__names {
	font-family: var(--serif);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--cream, #faf8f4);
}

.film-card__year {
	font-size: 10px;
	letter-spacing: 0.22em;
	color: var(--gold);
}

.film-card__caption-rule {
	display: block;
	width: 28px;
	height: 1px;
	margin: 2px 0;
	background: rgba(200, 164, 106, 0.55);
}

.film-card__desc {
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(168, 168, 168, 0.75);
}

.film-card__meta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 14px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.film-card__meta strong {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 4px;
}

.film-card__meta span {
	font-size: 10px;
	color: var(--muted);
	letter-spacing: 0.08em;
}

/* ==========================================================================
   Stats bar
   ========================================================================== */

.stats-bar {
	padding: clamp(56px, 7vh, 88px) 0;
	border-top: 1px solid rgba(200, 164, 106, 0.14);
	border-bottom: 1px solid rgba(200, 164, 106, 0.14);
	background: transparent;
}

.stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	max-width: 1180px;
	margin: 0 auto;
}

.stats-bar__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: clamp(16px, 2.4vh, 28px) 28px;
	border-right: 1px solid rgba(200, 164, 106, 0.1);
}

.stats-bar__item:last-child { border-right: none; }

.stats-bar__icon {
	/* Ikony zostają w DOM; wizualnie ukryte — mniej „dashboard”, liczby dominują */
	display: none;
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	color: var(--gold);
	opacity: 0.4;
	filter: none;
}

.stats-bar__icon svg { width: 100%; height: 100%; }

.stats-bar__text {
	text-align: center;
}

.stats-bar__text strong {
	display: block;
	font-family: var(--serif);
	font-size: clamp(2.1rem, 3.4vw, 3rem);
	font-weight: 300;
	color: var(--gold);
	line-height: 1;
	margin-bottom: 12px;
	letter-spacing: 0.02em;
	text-shadow: 0 0 36px rgba(200, 164, 106, 0.18);
}

.stats-bar__text span {
	display: block;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(250, 248, 244, 0.72);
}

/* ==========================================================================
   About
   ========================================================================== */

.about {
	padding: clamp(88px, 10vh, 140px) 0;
}

.about__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(40px, 5vw, 80px);
	align-items: center;
}

.about__media {
	overflow: hidden;
	background: #111;
	min-height: 0;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
}

.about__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	filter: contrast(1.04) saturate(0.92);
}

.about__content p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.8;
	margin: 24px 0 32px;
	max-width: 480px;
}

.about__content .section-label {
	margin-bottom: 18px;
	color: var(--gold);
}

.about__title {
	font-size: clamp(2rem, 3.6vw, 3.1rem);
	line-height: 1.15;
	letter-spacing: 0.02em;
}

.about__content .section-title { margin-bottom: 0; }

.btn.btn--gold-outline {
	border-color: var(--gold);
	color: var(--cream, #faf8f4);
}

.btn.btn--gold-outline:hover {
	background: rgba(200, 164, 106, 0.12);
	border-color: var(--gold);
	color: var(--cream, #faf8f4);
}

/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews {
	padding: clamp(96px, 11vh, 140px) 0;
	background: #090909;
}

.reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(40px, 5vw, 80px);
	max-width: 1080px;
	margin: 0 auto;
}

.review-item {
	display: flex;
	flex-direction: column;
	padding-top: 4px;
	max-width: 300px;
	margin: 0 auto;
	width: 100%;
}

.review-item__quote {
	font-family: var(--serif);
	font-size: 3.25rem;
	line-height: 0.85;
	color: var(--gold);
	margin-bottom: 16px;
	opacity: 0.85;
}

.review-item p {
	font-size: 12.5px;
	color: rgba(168, 168, 168, 0.92);
	line-height: 1.95;
	flex: 1;
	margin-bottom: 28px;
	max-width: 28ch;
}

.review-item cite {
	font-style: normal;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(200, 164, 106, 0.85);
}

/* ==========================================================================
   Contact
   ========================================================================== */

.contact {
	padding: clamp(80px, 9vh, 120px) 0 clamp(72px, 8vh, 110px);
}

.contact__grid {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	gap: clamp(32px, 4vw, 64px);
	align-items: stretch;
}

.contact__visual {
	overflow: hidden;
	background: #111;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
	min-height: 100%;
}

.contact__visual img {
	width: 100%;
	height: 100%;
	min-height: 560px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center;
	filter: contrast(1.05) saturate(0.9) brightness(0.9);
}

.contact__form-wrap .section-label {
	margin-bottom: 16px;
	color: var(--gold);
}

.contact__form-wrap .section-title {
	margin-bottom: 28px;
	font-size: clamp(1.85rem, 3vw, 2.55rem);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-form__hp {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.contact-form__row {
	display: grid;
	gap: 12px;
}

.contact-form__row--3 { grid-template-columns: repeat(3, 1fr); }
.contact-form__row--2 { grid-template-columns: repeat(2, 1fr); }

.field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.field label {
	font-size: 8px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(168, 168, 168, 0.78);
}

.field input,
.field textarea,
.field select {
	width: 100%;
	min-height: 44px;
	padding: 12px 14px;
	font-family: var(--sans);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--white);
	background-color: rgba(255, 255, 255, 0.035);
	background-image: none;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0;
	box-sizing: border-box;
	transition: border-color var(--ease), background-color var(--ease);
	-webkit-appearance: none;
	appearance: none;
}

.field select {
	cursor: pointer;
	line-height: 1.2;
	background-color: rgba(255, 255, 255, 0.04);
	background-image:
		linear-gradient(45deg, transparent 50%, var(--muted) 50%),
		linear-gradient(135deg, var(--muted) 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% + 2px), calc(100% - 12px) calc(50% + 2px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 40px;
	color: var(--white);
}

.field select option {
	background-color: #0b0b0b;
	color: var(--cream, #faf8f4);
}

.field input::placeholder,
.field textarea::placeholder {
	color: rgba(168, 168, 168, 0.7);
	text-transform: uppercase;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
	outline: none;
	border-color: var(--border-gold);
}

.field textarea {
	resize: vertical;
	min-height: 100px;
	text-transform: none;
}

.field--full textarea { text-transform: none; }

.contact-form__actions {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 8px;
}

.contact-form__note {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

.contact-form__note-icon {
	font-size: 14px;
	font-weight: 300;
	line-height: 1;
}

.contact-form__message {
	font-size: 13px;
	min-height: 1.25em;
	margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	padding: 44px 0 18px;
	border-top: 1px solid rgba(200, 164, 106, 0.14);
	background: #080808;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
	gap: clamp(20px, 2.5vw, 36px);
	margin-bottom: 28px;
}

.site-footer__brand {
	font-family: var(--serif);
	font-size: 0.9rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--cream, #faf8f4);
	margin-bottom: 12px;
}

.site-footer__desc {
	font-size: 12px;
	line-height: 1.65;
	color: var(--muted);
	max-width: 260px;
	margin: 0;
}

.site-footer__col-title {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--gold);
	margin: 0 0 14px;
}

.site-footer__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.site-footer__list a {
	font-size: 11px;
	letter-spacing: 0.05em;
	color: var(--muted);
	transition: color var(--ease);
}

.site-footer__list a:hover { color: var(--cream, #faf8f4); }

.site-footer__social {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}

.site-footer__social a {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	color: var(--gold);
}

.site-footer__contact p {
	margin: 0 0 8px;
	font-size: 13px;
	color: var(--muted);
}

.site-footer__contact a {
	color: var(--cream, #faf8f4);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px 20px;
	margin-top: 8px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.035);
}

.site-footer__bottom p {
	font-size: 10px;
	color: var(--muted);
	margin: 0;
	opacity: 0.7;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 4px 8px;
	max-width: 520px;
	margin: 0;
	opacity: 0.18;
}

.site-footer__links a {
	color: rgba(140, 140, 140, 0.9);
	font-size: 8px;
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: none;
	transition: color 0.25s ease, opacity 0.25s ease;
}

.site-footer__links a:hover {
	color: rgba(200, 164, 106, 0.65);
	opacity: 1;
}

/* ==========================================================================
   Hero actions / scroll / stories / oferta / RODO
   ========================================================================== */

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 8px;
}

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 28px;
	z-index: 2;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero__scroll-line {
	display: block;
	width: 1px;
	height: 48px;
	background: linear-gradient(to bottom, transparent, var(--gold));
	animation: dkfilmScrollPulse 1.8s ease-in-out infinite;
}

@keyframes dkfilmScrollPulse {
	0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
	50% { opacity: 1; transform: scaleY(1); }
}

.films__grid--stories {
	grid-template-columns: 1fr 1.22fr 1fr;
	align-items: end;
	gap: clamp(22px, 2.6vw, 42px);
	max-width: 1280px;
	margin: 0 auto;
}

.film-card--featured {
	transform: none;
	z-index: 2;
}

.film-card--featured .film-card__link {
	/* Środek ~100%; przy 1.22fr i bokach 3/4 daje ~85% wysokości boków */
	aspect-ratio: 3 / 3.85;
	box-shadow:
		0 48px 96px rgba(0, 0, 0, 0.62),
		0 0 70px rgba(200, 164, 106, 0.12);
}

.film-card--featured .film-card__link img {
	object-position: center 24%;
	transform: scale(1.16);
}

.film-card--featured:hover .film-card__link img {
	transform: scale(1.22);
}

.film-card--featured .film-card__play {
	width: 66px;
	height: 66px;
}

.film-card:not(.film-card--featured) .film-card__link {
	aspect-ratio: 3 / 4;
}

.films__grid--stories .film-card:not(.film-card--featured) .film-card__names {
	font-size: 0.9rem;
}

.film-card__placeholder {
	display: block;
	aspect-ratio: 3 / 4;
	background: linear-gradient(160deg, #1a1a1a, #0d0d0d);
}

.offer {
	padding: clamp(88px, 10vh, 130px) 0;
	background: var(--bg);
}

.offer__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.offer-card {
	position: relative;
	display: block;
	min-height: 520px;
	height: 100%;
	background-size: cover;
	background-position: center 30%;
	background-color: #101010;
	overflow: hidden;
	transition: transform 0.45s ease, filter 0.45s ease;
	filter: contrast(1.08) saturate(0.84) brightness(0.86);
}

.offer-card:nth-child(1) { background-position: center 40%; }
.offer-card:nth-child(2) { background-position: center 35%; }
.offer-card:nth-child(3) { background-position: center 42%; }
.offer-card:nth-child(4) { background-position: center 38%; }

.offer-card:hover {
	transform: translateY(-4px);
	filter: contrast(1.1) saturate(0.9) brightness(0.94);
}

.offer-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 36px 24px 32px;
	background: linear-gradient(
		to top,
		rgba(11, 11, 11, 0.92) 0%,
		rgba(11, 11, 11, 0.45) 38%,
		rgba(11, 11, 11, 0.1) 68%,
		transparent 100%
	);
}

.offer-card__title {
	font-family: var(--serif);
	font-size: clamp(1.15rem, 1.5vw, 1.4rem);
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--cream, #faf8f4);
	margin-bottom: 8px;
}

.offer-card__desc {
	font-size: 12px;
	color: rgba(168, 168, 168, 0.88);
	line-height: 1.55;
	max-width: 90%;
}

.reviews__demo-note {
	margin: 0 0 20px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
}

.field--rodo {
	margin-top: 8px;
}

.field__check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 12px;
	line-height: 1.5;
	color: var(--muted);
	cursor: pointer;
}

.field__check input {
	margin-top: 3px;
	accent-color: var(--gold);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1100px) {
	.films__grid { grid-template-columns: repeat(2, 1fr); }
	.films__grid--stories { grid-template-columns: 1fr 1fr; }
	.film-card--featured { transform: none; grid-column: 1 / -1; }
	.offer__grid { grid-template-columns: repeat(2, 1fr); }
	.about__grid,
	.contact__grid { grid-template-columns: 1fr; }
	.reviews__grid { grid-template-columns: 1fr; gap: 32px; }
	.stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
	.stats-bar__item:nth-child(2) { border-right: none; }
	.stats-bar__item { border-bottom: 1px solid var(--border-gold); }
	.stats-bar__item:nth-last-child(-n+2) { border-bottom: none; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.hero__inner { flex-direction: column; align-items: flex-start; gap: 40px; }
	.hero__social { flex-direction: row; padding-right: 0; }
	.hero__social::after { display: none; }
	.hero__social a { writing-mode: horizontal-tb; transform: none; }
	.contact__visual img { min-height: 420px; }
}

@media (max-width: 768px) {
	.container,
	.header__inner { padding: 0 20px; }

	.header__inner {
		grid-template-columns: 1fr auto;
	}

	.header__toggle { display: flex; }

	.header__nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(11, 11, 11, 0.97);
		padding: 32px 24px;
		transform: translateX(100%);
		transition: transform var(--ease);
		justify-self: auto;
		display: flex;
		flex-direction: column;
		gap: 28px;
	}

	.header__nav.is-open { transform: translateX(0); }

	.header__menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.header__nav .header__panel { display: inline-flex; width: fit-content; }
	.header__actions { display: none; }

	.section-head {
		flex-direction: column;
		align-items: flex-start;
	}

	.films__grid,
	.films__grid--stories,
	.offer__grid { grid-template-columns: 1fr; }

	.stats-bar__grid { grid-template-columns: 1fr; }

	.stats-bar__item {
		border-right: none;
		border-bottom: 1px solid var(--border-gold);
	}

	.stats-bar__item:last-child { border-bottom: none; }

	.site-footer__grid { grid-template-columns: 1fr; gap: 36px; }

	.site-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact-form__row--3,
	.contact-form__row--2 { grid-template-columns: 1fr; }

	.contact-form__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.contact__visual img { min-height: 320px; }
}
