/* ================================
   RESET / BASE
================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	background: #0b0b0b;
	color: #fff;
	font-family: Arial, sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.season-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: #0b0b0b;
	isolation: isolate;
}

.season-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--bg-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(30px);
	transform: scale(1.08);
	opacity: 0.45;
}

.season-bg-overlay {
	display: none;
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.82) 0%,
		rgba(0, 0, 0, 0.72) 32%,
		rgba(0, 0, 0, 0.58) 62%,
		rgba(0, 0, 0, 0.68) 100%
	);
}

.season-content {
	position: relative;
	z-index: 2;
	min-height: 100vh;
	padding-top: 48px;
	padding-bottom: 48px;
}

.season-copy h1 {
	margin: 0 0 18px;
	font-size: clamp(2.8rem, 5vw, 5rem);
	line-height: 0.95;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
}

.season-copy p {
	margin: 0 0 28px;
	//max-width: 34ch;
	font-size: 1.05rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
}

.contact-card {
	padding: 24px 22px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow:
		0 18px 40px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.season-slider-wrap {
	min-height: 100%;
}

.season-swiper {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border-radius: 28px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.05);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.season-swiper .swiper-wrapper,
.season-swiper .swiper-slide {
	height: 100%;
}

.season-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #050505;
}

.slide-frame {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #050505;
}

.slide-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	background: #050505;
}

.season-slider-nav {
	/*right: 18px;*/
	bottom: 0;
	width: 100%;
	padding: 15px;
	z-index: 5;
	display: flex;
	gap: 10px;
	justify-content: space-between;
}

.season-slider-nav button,
.season-slider-nav a {
	width: 48px;
	height: 48px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.season-slider-nav a#download-pdf,
.season-slider-nav button#download-pdf {
	width: auto;
	font-size: 14px;
	padding: 0 15px;
	display: inline-block;
	line-height: 48px;
	text-decoration: none;
}

.season-slider-nav button:hover {
	background: rgba(255, 255, 255, 0.2);
}



@media (max-width: 991.98px) {
	.season-content {
		min-height: auto;
		padding-top: 24px;
		padding-bottom: 32px;
	}

	.season-slider-wrap {
		min-height: 420px;
	}

	.season-swiper,
	.season-swiper .swiper-wrapper,
	.season-swiper .swiper-slide {
		min-height: 420px;
	}
}

@media (max-width: 767.98px) {
	.season-copy h1 {
		font-size: clamp(2.2rem, 9vw, 3.4rem);
	}

	.contact-card {
		padding: 18px 16px;
		border-radius: 22px;
	}

	.season-slider-wrap {
		min-height: 320px;
	}

	.season-swiper,
	.season-swiper .swiper-wrapper,
	.season-swiper .swiper-slide {
		min-height: 320px;
	}
}
/* ================================
   CF7 FORM
================================ */
.cf7-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.cf7-form p {
	margin: 5px 0;
	padding: 0;
}

.cf7-form label {
	display: block;
	font-size: 14px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
}

.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"] {
	width: 100%;
	margin-top: 8px;
	padding: 13px 14px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 15px;
	outline: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cf7-form input[type="text"]:focus,
.cf7-form input[type="email"]:focus,
.cf7-form input[type="tel"]:focus {
	border-color: rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.11);
	box-shadow:
		0 0 0 3px rgba(255, 255, 255, 0.05),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cf7-form input::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

/* Radios */
.cf7-radio {
	margin-top: 2px;
}

.cf7-radio .wpcf7-form-control-wrap {
	display: block;
}

.cf7-radio .wpcf7-list-item {
	display: block;
	align-items: center;
	gap: 8px;
	margin: 0 18px 8px 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	line-height: 1.4;
}

.cf7-radio .wpcf7-list-item label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	cursor: pointer;
}

.cf7-radio input[type="radio"] {
	accent-color: #ffffff;
	transform: scale(1.08);
	margin: 0;
}

/* Extra tekst */
.cf7-note {
	font-size: 13px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

/* Submit */
.cf7-form input[type="submit"] {
	align-self: flex-start;
	margin-top: 2px;
	padding: 12px 18px;
	border: 0;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.92);
	color: #000;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.cf7-form input[type="submit"]:hover {
	background: #fff;
	transform: translateY(-1px);
}

.cf7-form input[type="submit"]:active {
	transform: translateY(0);
}

/* CF7 feedback */
.wpcf7 form .wpcf7-response-output {
	margin: 12px 0 0;
	padding: 10px 12px;
	border-radius: 10px;
	font-size: 13px;
	color: #fff;
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 12px;
	color: #ff7d7d;
}

/* ================================
   RIGHT COLUMN / SLIDER
================================ */
/*.season-slider-wrap {*/
/*	min-width: 0;*/
/*	height: 100%;*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	position: relative;*/
/*}*/

/*.season-swiper {*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	min-height: 100%;*/
/*	border-radius: 28px;*/
/*	overflow: hidden;*/

/*	background: rgba(0, 0, 0, 0.78);*/
/*	border: 1px solid rgba(255, 255, 255, 0.05);*/

/*	box-shadow:*/
/*		0 24px 60px rgba(0, 0, 0, 0.35),*/
/*		inset 0 1px 0 rgba(255, 255, 255, 0.03);*/
/*}*/

/*.season-swiper .swiper-wrapper,*/
/*.season-swiper .swiper-slide {*/
/*	width: 100%;*/
/*	height: 100%;*/
/*}*/

/*.season-swiper .swiper-slide {*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	background: #050505;*/
/*}*/

/*.slide-frame {*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	justify-content: center;*/
/*	background: #050505;*/
/*}*/

/*.slide-image {*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	object-fit: contain;*/
/*	object-position: center center;*/
/*	background: #050505;*/
/*}*/

/* ================================
   SLIDER NAV
================================ */
/*.season-slider-nav {*/
/*	!*position: absolute;*!*/
/*	!*right: 18px;*!*/
/*	!*bottom: 65px;*!*/
/*	z-index: 5;*/
/*	margin-top: -65px;*/
/*	padding: 0 15px;*/
/*	display: flex;*/
/*	gap: 10px;*/
/*	justify-content: space-between;*/
/*}*/

/*.season-slider-nav button {*/
/*	width: 48px;*/
/*	height: 48px;*/
/*	border: 0;*/
/*	border-radius: 999px;*/
/*	background: rgba(255, 255, 255, 0.12);*/
/*	color: #fff;*/
/*	font-size: 18px;*/
/*	cursor: pointer;*/
/*	backdrop-filter: blur(8px);*/
/*	-webkit-backdrop-filter: blur(8px);*/
/*	transition: background 0.18s ease, transform 0.18s ease;*/
/*}*/

/*.season-slider-nav button:hover {*/
/*	background: rgba(255, 255, 255, 0.2);*/
/*	transform: translateY(-1px);*/
/*}*/

/*.season-slider-nav button:active {*/
/*	transform: translateY(0);*/
/*}*/

/*#download-pdf {*/

/*}*/

/* ================================
   OPTIONAL: pagination if needed
================================ */
/*.season-swiper .swiper-pagination {*/
/*	color: #fff;*/
/*}*/

/* ================================
   RESPONSIVE
================================ */
/*@media (max-width: 1200px) {*/
/*	.season-layout {*/
/*		grid-template-columns: 0.9fr 1.1fr;*/
/*		gap: 28px;*/
/*	}*/

/*	.season-copy h1 {*/
/*		font-size: clamp(2.4rem, 5vw, 4.2rem);*/
/*	}*/
/*}*/

/*@media (max-width: 1024px) {*/
/*	.season-layout {*/
/*		grid-template-columns: 1fr;*/
/*		min-height: auto;*/
/*		padding: 32px 0 40px;*/
/*	}*/

/*	.season-copy {*/
/*		justify-content: flex-start;*/
/*	}*/

/*	.season-slider-wrap {*/
/*		height: auto;*/
/*	}*/

/*	.season-swiper {*/
/*		height: auto;*/
/*		min-height: 420px;*/
/*	}*/

/*	.season-swiper .swiper-wrapper,*/
/*	.season-swiper .swiper-slide {*/
/*		height: 420px;*/
/*	}*/

/*	.season-slider-wrap {*/
/*		order: -1;*/
/*	}*/
/*}*/

/*@media (max-width: 767px) {*/
/*	.season-layout {*/
/*		width: min(100% - 24px, 1400px);*/
/*		gap: 22px;*/
/*		padding: 20px 0 28px;*/
/*	}*/

/*	.season-copy h1 {*/
/*		margin-bottom: 14px;*/
/*		font-size: clamp(2.2rem, 9vw, 3.4rem);*/
/*	}*/

/*	.season-copy > p {*/
/*		margin-bottom: 20px;*/
/*		font-size: 0.98rem;*/
/*		line-height: 1.6;*/
/*	}*/

/*	.contact-card {*/
/*		padding: 18px 16px;*/
/*		border-radius: 22px;*/
/*	}*/

/*	.cf7-form {*/
/*		gap: 15px;*/
/*	}*/

/*	.cf7-radio .wpcf7-list-item {*/
/*		display: flex;*/
/*		margin-right: 0;*/
/*	}*/

/*	.season-swiper {*/
/*		border-radius: 22px;*/
/*		min-height: 320px;*/
/*	}*/

/*	.season-swiper .swiper-wrapper,*/
/*	.season-swiper .swiper-slide {*/
/*		height: 320px;*/
/*	}*/

/*	.season-slider-nav {*/
/*		right: 14px;*/
/*		bottom: 14px;*/
/*	}*/

/*	.season-slider-nav button {*/
/*		width: 42px;*/
/*		height: 42px;*/
/*		font-size: 16px;*/
/*	}*/
/*}*/

/*@media (prefers-reduced-motion: reduce) {*/
/*	.season-bg,*/
/*	.season-slider-nav button,*/
/*	.cf7-form input,*/
/*	.cf7-form input[type="submit"] {*/
/*		transition: none !important;*/
/*	}*/
/*}*/
