﻿/*
Version: 1.0.5
*/

nav ul li a {
	font-family: "Manrope", Arial, sans-serif;
}

div, span, p, a, button {
	font-family: "Manrope", Arial, sans-serif;
}

h1, h2, h3 {
	font-family: "Manrope", Arial, sans-serif;
}

body {
	margin: 0;
	font-family: "Manrope", Arial, sans-serif;
	background-color: #000;
	color: white;
	overflow-x: hidden;
}

html,
body {
	max-width: 100%;
	overflow-x: clip;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 40px;
	column-gap: 24px;
	background: linear-gradient(
		to bottom,
		rgba(19, 65, 98, 0.94) 0%,
		rgba(19, 65, 98, 0.84) 24%,
		rgba(19, 65, 98, 0.62) 52%,
		rgba(19, 65, 98, 0.36) 74%,
		rgba(19, 65, 98, 0.14) 90%,
		rgba(19, 65, 98, 0) 100%
	);
	position: relative;
	z-index: 30;
}

.logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin: 0;
}

.container {
	margin: 0 auto;
	padding: 0 2rem;
	position: relative;
	max-width: calc(1280px + 4rem);
}

nav ul {
	list-style-type: none;
	display: flex;
	gap: 3rem;
	flex-wrap: nowrap;
	align-items: center;
}

.main-nav ul {
	margin: 0;
	padding: 0;
	gap: clamp(14px, 1.45vw, 34px);
}

.main-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
}

.main-nav li,
.main-nav a {
	white-space: nowrap;
}

.main-nav li {
	display: flex;
	align-items: center;
}

.main-nav .nav-phone-item {
	display: none;
}

.nav-ya-link {
	display: inline-flex;
	align-items: center;
}

.nav-ya-link img {
	display: block;
	width: auto;
	height: 48px;
	object-fit: contain;
}

.menu-toggle {
	display: none;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(19, 65, 98, 0.75);
	width: 44px;
	height: 44px;
	border-radius: 10px;
	padding: 10px 9px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 2px;
	background: #fff;
	margin-bottom: 6px;
	border-radius: 2px;
}

.menu-toggle span:last-child {
	margin-bottom: 0;
}

.header-phone {
	white-space: nowrap;
	font-weight: 600;
	font-size: 20px;
	flex-shrink: 0;
	margin: 0;
}

a {
	text-decoration: none;
	color: white;
}

.hero-section {
	position: relative;
	height: calc(100vh);
	width: 100%;
	max-width: 100vw;
	overflow-x: clip;
	background-image: url('../img/fon-1.webp');
	background-size: cover;
	background-position: center;
	&::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 400px;
		bottom: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(to top,
			rgba(0, 0, 0, 1),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0)
		);
	}
}

.hero-section-2 {
	position: relative;
	height: calc(100vh);
	max-width: 100vw;
	background-image: url('../img/fon-2.webp');
	background-size: cover;
	background-position: center;
	&::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 400px;
		top: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(to top,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 1)
		);
	}
	&::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 400px;
		bottom: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(to top,
			rgba(0, 0, 0, 1),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0)
		);
	}
}

.hero-section-3 {
	position: relative;
	height: calc(100vh);
	max-width: 100vw;
	background-image: url('../img/what_bg.webp');
	background-size: cover;
	background-position: center;
	&::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 400px;
		top: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(to top,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 1)
		);
	}
	&::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 400px;
		bottom: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(to top,
			rgba(0, 0, 0, 1),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0)
		);
	}
}

.hero-section-4 {
	position: relative;
	height: calc(100vh);
	max-width: 100vw;
	background-image: url('../img/fon-4.webp');
	background-size: cover;
	background-position: center;
	&::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 400px;
		top: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(to top,
			rgba(0, 0, 0, 0),
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 1)
		);
	}
	&::after {
		content: '';
		position: absolute;
		width: 100%;
		height: 400px;
		bottom: 0;
		left: 0;
		z-index: 1;
		background: linear-gradient(to top,
			rgba(0, 0, 0, 1),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.6),
			rgba(0, 0, 0, 0)
		);
	}
}

.hero-section-5 {
    position: relative;
    height: 160vh;
    max-width: 100vw;
    background-image: url('../img/fon-5.webp');
    background-size: cover;
    background-position: center;
	overflow: hidden;
    &::before { /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
        content: '';
        position: absolute;
        width: 100%;
        height: 400px;
        top: 0;
        left: 0;
        z-index: 0;
        background: linear-gradient(
            to bottom,
			rgba(0, 0, 0, 1),
			rgba(0, 0, 0, 0.9),
			rgba(0, 0, 0, 0.8),
			rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0)
        );
    }
    &::after { /* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
        content: '';
        position: absolute;
        width: 100%;
        height: 200px;
        bottom: 0;
        left: 0;
        z-index: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 1),
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0)
        );
    }
}

.hero-section-5-2 {
    &::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        background: linear-gradient(
            to left,
			rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 1)
        );
    }
    &::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 100%;
        top: 0;
        right: 0;
        z-index: 0;
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 1)
        );
    }
}

.hero-section-6 {
	position: relative;
	height: calc(100vh);
	background-color: black;
	background-size: cover;
	background-position: center;
}

.hero-section-7 {
	position: relative;
	height: auto;
	min-height: 300px;
	padding: 20px 0 28px;
	background-color: black;
	background-size: cover;
	background-position: center;
}

.hero-section-8 {
	position: relative;
	height: calc(120vh);
	background-color: #252525;
	background-size: cover;
	background-position: center;
}

.hero-section-2, .hero-section-3, .hero-section-4, .hero-section-5 {
	opacity: 0.6;
	transition: opacity 0.5s ease-in-out
}

.hero-section-2:hover, .hero-section-3:hover, .hero-section-4:hover, .hero-section-5:hover {
	opacity: 1;
}

.hero-text {
	z-index: 10;
	position: absolute;
	bottom: 8%;
	left: 16%;
	right: 16%;
	display: flex;
	align-items: center;
	gap: 2rem;
}

.hero-text > div {
	flex: 1 1 auto;
	min-width: 0;
}

.hero-text-2 {
	z-index: 10;
	position: absolute;
	top: 8%;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: min(980px, calc(100vw - 80px));
	background-color: rgba(19, 65, 98, 0.6);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 2rem 3rem 2rem 3rem;
	transition: box-shadow 0.5s ease-in-out;
}

.hero-section-2:hover .hero-text-2,
.hero-section-2.is-active .hero-text-2 {
	box-shadow: 0 0 100px 0 rgba(2, 251, 152, 0.5);
}

.hero-text-2.sticky-animate {
	transition: box-shadow 0.5s ease-in-out, top 0.22s ease;
}

.hero-text-2.sticky-fixed {
	position: fixed;
	top: 40px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: min(980px, calc(100vw - 80px));
	bottom: auto;
	z-index: 30;
}

.hero-text-2.sticky-stop {
	position: absolute;
	top: var(--sticky-stop-top, 8%);
	bottom: auto;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: min(980px, calc(100vw - 80px));
	transition: none !important;
}

.who-tabs {
	margin: 0 0 60px;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.who-grid {
	display: flex;
	justify-content: space-around;
	gap: 3rem;
}

.who-col {
	width: 25%;
}

.who-col:last-child {
	width: 45%;
}

.who-col-title {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 8px;
}

.who-col-text {
	font-size: 18px;
	opacity: 0.7;
	margin: 0;
}

.who-grid.is-fishing {
	display: block;
}

.who-fishing-layout {
	display: grid;
	grid-template-columns: 40% minmax(0, 1fr);
	column-gap: 5%;
	align-items: center;
}

.who-fishing-images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.who-fishing-images img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.who-fishing-content {
	min-width: 0;
}

.who-fishing-content .who-col-text,
.who-expedition-content .who-col-text {
	font-size: 18px !important;
}

.who-expedition-layout {
	display: grid;
	grid-template-columns: 40% minmax(0, 1fr);
	column-gap: 5%;
	align-items: center;
}

.who-expedition-layout.no-images {
	grid-template-columns: minmax(0, 1fr);
}

.who-expedition-images {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.who-expedition-images img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.who-expedition-content {
	min-width: 0;
}

.hero-text-3 {
	z-index: 10;
	position: absolute;
	top: 8%;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: min(1000px, calc(100vw - 80px));
	background-color: rgba(19, 65, 98, 0.6);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 2rem 3rem 0 3rem;
	transition: box-shadow 0.5s ease-in-out;
}

.hero-section-3:hover .hero-text-3,
.hero-section-3.is-active .hero-text-3 {
	box-shadow: 0 0 100px 0 rgba(2, 251, 152, 0.5);
}

.hero-text-3.sticky-animate {
	transition: box-shadow 0.5s ease-in-out, top 0.22s ease;
}

.hero-text-3.sticky-fixed {
	position: fixed;
	top: 40px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: min(1000px, calc(100vw - 80px));
	bottom: auto;
	z-index: 30;
	padding-bottom: 0;
}

.hero-text-3.sticky-stop {
	position: absolute;
	top: var(--sticky-stop-top, 8%);
	bottom: auto;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: min(1000px, calc(100vw - 80px));
	transition: none !important;
	padding-bottom: 0;
}

.hero-text-3 p {
	font-size: 16px;
}

.hero-text-3 a > img:not(.zoom-css) {
	width: 320px !important;
	height: auto !important;
	max-width: 100%;
}

.hero-text-4 {
	z-index: 10;
	position: absolute;
	top: 8%;
	left: 15%;
	right: 15%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}

.hero-text-4 > p {
	margin-block-start: 0;
	margin-block-end: 0;
}

.hero-block-4 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 24px;
	row-gap: 24px;
	width: 100%;
	align-items: stretch;
	padding: 0 8px;
}

.program-subtitle {
	margin: 0 0 10px;
	max-width: 980px;
	text-align: center;
	font-family: "Manrope", Arial, sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.8);
}

.block-text-4 {
	display: flex;
    flex-direction: column;
    align-items: flex-start;
	width: 100%;
}

.block-text-4 ul {
	margin: 10px 0 0;
	padding-left: 0;
	width: 100%;
	list-style: none;
}

.block-text-4 > p {
	font-family: "Manrope", Arial, sans-serif;
	font-size: 28px !important;
	font-weight: 600 !important;
	color: #fff;
	width: 100%;
	text-align: center;
}

.block-text-4 ul li {
	white-space: normal;
	margin-bottom: 8px;
	font-family: "Manrope", Arial, sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.35;
	min-height: 32px;
	display: flex;
	align-items: center;
	padding: 0 10px;
}

.block-text-4 ul li:nth-child(odd) {
	background: rgba(255, 255, 255, 0.05);
}

.hero-text-4-1 {
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
	background-color: rgba(19, 65, 98, 0.6);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 20px 22px;
	transition: box-shadow 0.5s ease-in-out;
}

.hero-text-4-2 {
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
	background-color: rgba(19, 65, 98, 0.6);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 20px 22px;
	transition: box-shadow 0.5s ease-in-out;
}

.hero-text-4-3 {
	width: 100%;
	box-sizing: border-box;
	z-index: 10;
	background-color: rgba(19, 65, 98, 0.6);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 20px 22px;
	transition: box-shadow 0.5s ease-in-out;
}

.hero-section-4:hover .hero-text-4-1,
.hero-section-4:hover .hero-text-4-2,
.hero-section-4:hover .hero-text-4-3,
.hero-section-4.is-active .hero-text-4-1,
.hero-section-4.is-active .hero-text-4-2,
.hero-section-4.is-active .hero-text-4-3 {
	box-shadow: 0 0 100px 0 rgba(2, 251, 152, 0.5);
}

.hero-text-5 {
	z-index: 10;
	position: absolute;
	top: 8%;
	left: 26%;
	right: 26%;
	background-color: rgba(19, 65, 98, 0.6);
	backdrop-filter: blur(30px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 2rem 3rem 2rem 3rem;
	transition: box-shadow 0.5s ease-in-out;
}

.hero-text-5.sticky-animate {
	transition: box-shadow 0.5s ease-in-out, top 0.22s ease;
}

.hero-text-5.sticky-fixed {
	position: fixed;
	top: 40px;
	left: 26%;
	right: 26%;
	bottom: auto;
	z-index: 30;
}

.hero-text-5.sticky-stop {
	position: absolute;
	top: var(--trophy-stop-top, 8%);
	bottom: auto;
	left: 26%;
	right: 26%;
	transition: none !important;
}

.hero-section-5:hover .hero-text-5,
.hero-section-5.is-active .hero-text-5 {
	box-shadow: 0 0 100px 0 rgba(2, 251, 152, 0.5);
}

.hero-text-6 {
	position: absolute;
	top: 8%;
	left: 15%;
	right: 15%;
}

.hero-text-6 > div > div > p:nth-of-type(2) {
	max-width: 980px;
	width: 100%;
	margin: 0 auto;
	text-wrap: balance;
}

@media (min-width: 1025px) {
	.hero-section-6.container {
		height: auto !important;
		padding-top: 20px;
		padding-bottom: 0 !important;
		margin-bottom: 120px !important;
	}

	.hero-text-6 {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
	}

	.hero-section-6.container .gallery {
		margin-bottom: 0;
		padding-bottom: 0;
	}
}

.hero-bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
}

.hero-text-7-1 {
	color:white;
}

.hero-text-7-2 {
	color:white;
}

.included-section {
	max-width: 1180px;
	margin: 0 auto;
	color: #fff;
}

.included-main {
	padding: 28px 0 44px;
}

.included-title {
	font-size: 40px;
	font-weight: 600;
	margin: -20px auto 18px;
	width: 100%;
	text-align: center;
}

.included-title-accent {
	color: inherit;
}

.included-grid {
	display: flex;
	gap: 24px;
	justify-content: space-between;
}

.included-list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1 1 0;
	min-width: 0;
}

.included-list li {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 20px;
	line-height: 1.4;
	margin-bottom: 14px;
}

.included-list li img {
	width: 16px;
	height: 16px;
	flex: 0 0 16px;
}

.included-extra {
	position: relative;
	border-radius: 12px;
	padding: 24px 22px 12px;
	background-image: url('../img/bgp.webp');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.included-extra::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	pointer-events: none;
}

.included-extra > * {
	position: relative;
	z-index: 1;
}

.included-extra-title {
	font-size: 32px;
	font-weight: 600;
	margin: 0 0 12px;
	text-align: center;
}

.included-tabs {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	width: 100%;
	margin-bottom: 14px;
}

.included-tab {
	border: 1px solid rgba(255, 255, 255, 0.4);
	background: rgba(6, 29, 46, 0.55);
	color: #fff;
	border-radius: 8px;
	padding: 9px 16px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.included-tab:hover {
	transform: translateY(-1px);
	border-color: rgba(255, 255, 255, 0.7);
}

.included-tab.active {
	background: rgba(23, 98, 160, 0.95);
	border-color: rgba(255, 255, 255, 0.95);
}

.included-panel {
	height: 0;
	overflow: hidden;
	margin-top: 8px;
	transition: height 0.35s ease;
}

.included-panel.open {
	margin-bottom: 0;
}

.included-panel-inner {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: stretch;
	font-size: 18px;
	line-height: 1.5;
	opacity: 0.9;
	padding: 14px 0;
}

.included-panel-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.included-panel-image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
}

.included-panel-text {
	min-height: 0;
}

.footer-yandex-rating {
	display: flex;
	justify-content: center;
	margin-top: 10px;
}

.footer-yandex-rating iframe {
	border: 0;
}

.included-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
}

.included-actions-outside {
	margin-top: 42px;
	margin-bottom: 60px;
}

.included-actions .button-primary,
.included-actions .button-outline {
	width: 330px;
}

.hero-text-8-1 {
	position: absolute;
	top: 5%;
	left: 10%;
	right: 10%;
	display: flex;
	justify-content: space-around;
    align-items: center;
}

.hero-text-8-2 {
	position: absolute;
	bottom: 8%;
	left: 20%;
	right: 20%;
	overflow: hidden;
	background-image: url('../img/fon-1.webp');
	background-size: cover;
    background-position: center -250px;
	border-radius: 12px;
	padding: 2rem 3rem 2rem 3rem;
	&::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 100%;
        top: 0;
        left: 0;
        background: linear-gradient(
            to left,
			rgba(19, 65, 98, 0),
			rgba(19, 65, 98, 0.2),
            rgba(19, 65, 98, 0.4),
            rgba(19, 65, 98, 0.6),
            rgba(19, 65, 98, 0.8),
            rgba(19, 65, 98, 1)
        );
		border-radius: 12px;
    }
}

.hero-text-8-2::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.13);
	border-radius: 12px;
	pointer-events: none;
}

.hero-text-8-2 > div {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.hero-text-8-2 > div > p:first-of-type {
	font-size: 28px !important;
	margin: 0 0 8px !important;
	text-align: center;
}

.hero-text-8-2 > div > p:nth-of-type(2) {
	font-size: 20px !important;
	margin: 0 0 14px !important;
	text-align: center;
}

.hero-text-8-2 .button-booking {
	width: fit-content;
	max-width: 100%;
	min-width: 260px;
	margin: 0 auto;
	display: inline-flex;
	justify-content: center;
	white-space: nowrap;
}

h1 {
	font-size: 4em;
	margin-bottom: 20px;
}

button {
	font-size: 18px;
	padding: 20px 60px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.button-primary {
	background-color: #134162;
	color: white;
	border: none;
}

.button-primary:hover {
	background-color: #fff;
	color: #134162;
}

.button-outline {
	background-color: white;
	color: #134162;
	border: none;
}

.button-outline:hover {
	background-color: #134162;
	color: #fff;
}

.button-booking {
	background-color: #fff;
	color: #134162;
	border: none;
}

.button-booking:hover {
	background-color: #134162;
	color: #fff;
}

.button-video {
	background-color: #134162;
	color: #fff;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.button-video:hover {
	background-color: #fff;
	color: #134162;
}

.button-video-play {
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 13px solid currentColor;
}

.hero-section .button-primary:hover {
	background-color: #fff;
	color: #134162;
}

.hero-section .button-outline:hover {
	background-color: #134162;
	color: #fff;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.filter-panel {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	font-size: 20px;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-item {
	display: inline-flex;
	align-items: center;
	padding: 15px 20px;
	background-color: #134162;
	border-radius: 5px;
	margin-right: 0;
}

.icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: 10px;
	flex: 0 0 20px;
}

.icon-expedition::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('../img/material-symbols-light_tour-outline.png') center/contain no-repeat;
}

.icon-distance::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('../img/lsicon_path-outline.png') center/contain no-repeat;
}

.icon-calendar::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('../img/mdi-light_calendar.png') center/contain no-repeat;
}

.icon-time::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url('../img/lets-icons_time-light.png') center/contain no-repeat;
}

.price-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 20px;
	background-color: white;
	color: #134162;
	border-radius: 5px;
	font-weight: bold;
}

.zoom-css {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 50px;
    max-height: 50px;
    transition: all 0.3s ease-in-out;
}

.zoom-css:hover {
    transform: translate(-50%, -50%) scale(1.5);
}

@media (min-width: 769px) {
	.geo-map-column .zoom-css {
		top: calc(50% - 24px);
	}
}

.geo-slider-controls {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}

.geo-map-column {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.geo-map-column > img:not(.zoom-css) {
	width: 100%;
}

.geo-nav-btn {
	width: 36px;
	height: 36px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(19, 65, 98, 0.65);
	color: #fff;
	font-size: 0;
	line-height: 0;
	padding: 0;
	position: relative;
}

.geo-nav-btn::before {
	content: "";
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	display: block;
}

.geo-nav-btn[data-geo-prev]::before {
	transform: translateX(1px) rotate(-135deg);
}

.geo-nav-btn[data-geo-next]::before {
	transform: translateX(-1px) rotate(45deg);
}

.geo-dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.geo-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	padding: 0;
	min-width: 12px;
	min-height: 12px;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.geo-dot.active {
	background: #ffffff;
	transform: scale(1.2);
}

.map-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	z-index: 2000;
}

.map-lightbox.open {
	display: flex;
}

.map-lightbox img {
	max-width: min(1100px, 100%);
	max-height: 85vh;
	border-radius: 12px;
}

.map-lightbox-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(25, 25, 25, 0.7);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
}

.price-section {
	padding: 0 0 44px;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 1) 0%,
		rgba(5, 20, 35, 0.98) 10%,
		rgba(5, 20, 35, 0.98) 25%,
		rgba(5, 20, 35, 0.98) 50%,
		rgba(5, 20, 35, 0.98) 75%,
		rgba(5, 20, 35, 0.98) 90%,
		rgba(0, 0, 0, 1) 100%
	);
}

.price-wrap {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.price-title {
	margin: 0;
	font-size: 40px;
	font-weight: 600;
	color: #fff;
}

.price-subtitle {
	margin: 10px 0 0;
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
}

.price-guests {
	margin-top: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 4px;
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
	border-radius: 999px;
	background: rgba(10, 30, 48, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-guests-btn {
	border: none;
	border-radius: 999px;
	padding: 8px 14px;
	background: transparent;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.price-guests-btn.active {
	background: #134162;
	color: #fff;
}

.price-guests-note {
	margin: 10px 0 0;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
}

.price-cards {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-items: stretch;
}

.price-card {
	background: rgba(19, 65, 98, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 18px 16px 16px;
}

.price-card-featured {
	background: rgba(15, 52, 80, 0.85);
}

.price-card-title {
	margin: 0;
	font-size: 24px;
	color: #fff;
}

.price-value {
	margin: 12px 0 0;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
}

.price-value-secondary {
	margin-top: 12px;
}

.price-note {
	margin: 4px 0 0;
	font-size: 16px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}

.price-actions {
	margin-top: 12px;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.price-actions > a {
	display: block;
}

.trophies-desktop-map {
	display: none;
}

@media (min-width: 961px) {
	.hero-section-5 {
		display: none;
	}

	.trophies-desktop-map {
		display: block;
	}
}

.price-actions .button-primary,
.price-actions .button-outline {
	width: 100%;
}

.fish-cards {
	margin-top: 18px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.fish-card {
	background: rgba(12, 36, 58, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	padding: 12px;
	text-align: left;
	color: #fff;
	cursor: default;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fish-card:hover,
.fish-card.is-open {
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow: none;
	transform: none;
}

.fish-name {
	display: block;
	font-size: 18px;
	font-weight: 700;
}

.fish-desc {
	display: block;
	max-height: 160px;
	overflow: visible;
	opacity: 1;
	font-size: 14px;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.82);
	transition: none;
	margin-top: 8px;
}

.fish-card:hover .fish-desc,
.fish-card.is-open .fish-desc {
	max-height: 120px;
	opacity: 1;
	margin-top: 8px;
}

.footer-1 {
	background: #2b2b2b;
}

.footer-1-info {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 290px;
}

.footer-1-menu ul {
	list-style: none;
}

.footer-1-menu ul li {
	margin-bottom: 16px;
    font-size: 16px;
}

.footer-1-info-1 {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-1-info > div > div:nth-child(1) p:first-child,
.footer-1-info > div > div:nth-child(2) p:first-child,
.footer-1-info > div > div:nth-child(3) p {
	opacity: 0.7;
}

.footer-1-info-1 p:last-of-type {
	color: #5ea9dd;
}

.footer-1-info-1 > p {
	display: none;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px;
}

.footer-socials a {
	display: inline-flex;
	width: 24px;
	height: 24px;
}

.footer-socials img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.footer-2 {
	width: 100%;
	height: auto;
	padding: 10px 0;
	background: #303030;
}

.footer-2-info {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	opacity: 0.5;
	gap: 16px;
}

.footer-2-copy-group {
	display: contents;
}

.footer-dev-link {
	margin-left: 0;
}

.floating-messengers {
	position: fixed;
	right: 16px;
	bottom: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 1200;
}

.floating-messengers a {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(19, 65, 98, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(8px);
}

.floating-messengers img {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.site-modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.72);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	z-index: 2500;
}

.site-modal-backdrop[hidden] {
	display: none !important;
}

.site-modal {
	width: min(640px, 96vw);
	background: rgba(12, 27, 41, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 12px;
	padding: 20px;
	color: #fff;
	position: relative;
}

.site-modal-video {
	width: min(1100px, 96vw);
	padding: 12px;
}

.video-modal-frame-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	overflow: hidden;
	background: #000;
}

.video-modal-frame-wrap iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.video-modal-frame-wrap video {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	background: #000;
}

.site-modal h3 {
	margin: 0 0 10px;
	font-size: 30px;
	font-weight: 600;
}

.site-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 24px;
	height: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.program-form {
	display: grid;
	gap: 12px;
}

.program-form input[type="text"],
.program-form input[type="tel"],
.program-form input[type="email"] {
	width: 100%;
	max-width: 100%;
	height: 44px;
	padding: 10px 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	box-sizing: border-box;
}

.program-form label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	line-height: 1.4;
	width: 100%;
	box-sizing: border-box;
}

.program-form label span {
	min-width: 0;
}

.program-form .button-primary {
	width: 100%;
	box-sizing: border-box;
}

.program-form a {
	color: #9fd6ff;
}

body.modal-open {
	overflow: hidden;
}

.bukza-form {
	width: min(1180px, 98vw);
	margin: 24px auto 28px;
	padding: 0;
}

.bukza-form > iframe,
.bukza-form [id^="BukzaContainer"] {
	width: 100% !important;
	max-width: 100%;
}

.bukza-inline-iframe {
	width: 100%;
	min-height: 760px;
	height: 860px;
	border: 0;
	background: transparent;
}

.hero-title-image {
	width: min(1148px, 72vw);
	height: auto;
	align-self: center;
	margin: 0 auto;
}

.fish-gallery-block {
	width: min(1260px, 92vw);
	margin: 100px auto 80px;
}

.fish-gallery-title {
	font-size: 40px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 12px;
}

.fish-gallery-tabs {
	margin: 0 0 18px;
}

.fish-gallery-grid {
	padding: 0;
}

.who-tabs .gallery-tab.active {
	background: #fff;
	color: #134162;
	border-color: transparent;
}

@media (min-width: 1025px) {
	.hero-text {
		left: 50%;
		right: auto;
		bottom: 10%;
		transform: translateX(-50%);
		width: min(1260px, 92vw);
		flex-direction: column;
		align-items: center;
		gap: 18px;
		text-align: center;
	}

	.hero-title-image {
		width: min(1000px, 66vw);
	}

	.hero-text > div {
		width: min(900px, 88vw);
		margin: 0 auto;
	}

	.hero-text > div > p {
		margin: 0 0 16px;
	}

	.hero-text > div > div {
		flex-wrap: nowrap;
		justify-content: center;
		column-gap: 12px;
		row-gap: 0;
	}

	.hero-text > div > div button {
		min-width: 270px;
	}

	.hero-section::after,
	.hero-section-2::before,
	.hero-section-2::after,
	.hero-section-3::before,
	.hero-section-3::after,
	.hero-section-4::before,
	.hero-section-4::after,
	.hero-section-5::before {
		height: 300px;
	}

	.hero-section-5::after {
		height: 160px;
	}

	.hero-section-5-2::before,
	.hero-section-5-2::after {
		width: 320px;
	}

	/* Keep FAQ and CTA stacked without overlap on large screens */
	.hero-section-8 {
		height: auto;
		padding: 44px 0 36px;
	}

	.hero-text-8-1 {
		position: relative;
		top: 0;
		left: 0;
		right: 0;
		width: min(1260px, 92vw);
		margin: 0 auto 28px;
	}

	.hero-text-8-2 {
		position: relative;
		bottom: 0;
		left: 0;
		right: 0;
		width: min(1260px, 92vw);
		margin: 0 auto;
	}

	.footer-2-info {
		flex-wrap: nowrap;
		gap: 16px;
	}

	.footer-2-info p,
	.footer-2-info a {
		font-size: 12px;
		line-height: 1.15;
		white-space: nowrap;
	}

	.footer-2-menu {
		gap: 16px;
		flex-wrap: nowrap;
	}
}

.footer-2-menu {
	display: contents;
}

.hero-text > div > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 12px;
	row-gap: 8px;
}

.hero-text > div > div a {
	display: block;
}

.footer-2-info p,
.footer-2-info a {
	margin: 0;
	padding: 0;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.accordion-container {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    color: white; /* пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ */
    background: transparent; /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅ */
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.accordion-toggle {
    background: transparent; /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅ */
    color: white; /* пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ */
    width: 100%;
    text-align: left;
    padding: 18px 40px 18px 14px;
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
    position: relative;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅ */
.accordion-toggle:hover {
    color: #ffffffcc; /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅ */
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ (пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ!) */
.accordion-panel {
    height: 0; /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅ */
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
    padding: 0 14px;
    color: white; /* пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ */
    background: transparent; /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅ */
    will-change: height; /* пїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
    font-size: 17px;
    line-height: 1.55;
    opacity: 0.88;
}

.accordion-panel.active {
    padding: 4px 14px 18px;
}

.accordion-panel p {
    margin: 0 0 8px;
}

.accordion-panel ul {
    margin: 0;
    padding-left: 20px;
}

.accordion-panel li + li {
    margin-top: 6px;
}

.faq-weather-widget {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-weather-widget iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.accordion-item + .accordion-item {
    margin-top: 1px;
    border-top: 1px solid rgba(255,255,250,0.1); /* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ */
}

/* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅ/пїЅпїЅпїЅпїЅпїЅ */
.accordion-toggle::before {
    content: "+";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    transition: transform 0.3s ease;
    font-size: 24px;
    line-height: 1;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ пїЅпїЅ пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.accordion-toggle.active::before {
    content: "\2212"; /* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ */
    transform: translateY(-50%);
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ */
    gap: 1rem;
    justify-items: stretch;
    padding: 10px;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 14px 0 20px;
}

.gallery-tabs.who-tabs {
	justify-content: flex-start;
	flex-wrap: nowrap;
	margin-left: 0;
	margin-bottom: 30px;
}

.gallery-tab {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    padding: 9px 18px;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gallery-tab:hover {
    transform: translateY(-1px);
    border-color: #fff;
}

.gallery-tab.active {
    background: #134162;
    border-color: transparent;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅ (пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ) */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4 / 3; /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅ */
    min-height: 200px; /* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ */
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: zoom-in;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
.gallery-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 28px rgba(2, 251, 152, 0.25), 0 12px 30px rgba(0, 0, 0, 0.25);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 9999;
    padding: 20px;
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-lightbox img {
    width: min(1200px, 94vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ 4 пїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
@media (min-width: 600px) {
    .gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* пїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅ пїЅпїЅпїЅпїЅпїЅпїЅпїЅпїЅ */
@media (min-width: 800px) {
    .gallery {
        grid-auto-rows: minmax(200px, auto);
    }
}

.content-mob {
	display: none;
}

@media (max-width: 1024px) {
	.header {
		padding: 10px 14px;
		gap: 10px;
	}

	.logo {
		margin: 0 auto 0 0 !important;
	}

	.menu-toggle {
		display: inline-block;
		order: 3;
	}

	.main-nav {
		position: absolute;
		top: calc(100% + 8px);
		left: auto;
		right: 12px;
		width: min(320px, calc(50vw - 12px));
		background: rgba(7, 20, 31, 0.96);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 12px;
		padding: 12px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-6px);
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
		z-index: 40;
	}

	.main-nav ul {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		justify-items: center;
		text-align: center;
		width: 100%;
	}

	.main-nav a {
		display: block;
		padding: 8px 6px;
		text-align: center;
	}

	.header.nav-open .main-nav {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.header-phone {
		font-size: 16px !important;
		margin: 0 0 0 auto !important;
		order: 2;
	}

	.hero-section {
		min-height: 100dvh;
		height: auto;
		padding-bottom: 24px;
	}

	.hero-text {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin: 16px 12px 0;
		flex-direction: column;
		gap: 14px;
		text-align: center;
	}

	.hero-text img {
		width: min(100%, 620px) !important;
		height: auto !important;
	}

	.hero-text > div {
		font-size: 16px !important;
		width: min(92vw, 860px);
		margin: 0 auto;
	}

	.hero-text > div > div {
		display: flex;
		flex-direction: column;
		gap: 8px;
		align-items: stretch;
	}

	.hero-text > div > div a {
		display: block;
	}

	.hero-text > div > div a + a {
		margin-top: 0;
	}

	.hero-text > div > div button {
		width: 100%;
		max-width: 420px;
		margin: 0 auto;
	}

	.hero-text > div > div .button-primary,
	.hero-text > div > div .button-outline {
		min-width: 0;
	}
}

@media (max-width: 860px) {
	.filter-panel {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding: 8px 10px;
		gap: 12px;
		font-size: 14px;
		align-items: stretch;
		justify-items: stretch;
	}

	.filter-item,
	.price-tag {
		width: 100%;
		justify-content: center;
		align-items: center;
		padding: 12px 20px;
		min-height: 54px;
		line-height: 1.25;
		margin: 0;
		text-align: center;
	}

	.filter-item {
		display: flex;
		min-width: 0;
	}

	.price-tag {
		display: flex;
	}

	.filter-panel > :last-child {
		grid-column: 1 / -1;
		max-width: 320px;
		justify-self: center;
	}

	.hero-text {
		margin: 14px 10px 0;
	}

	.hero-text > div {
		font-size: 15px !important;
		width: min(94vw, 620px);
		margin: 0 auto;
	}

	.hero-text > div > div button {
		padding: 14px 18px;
	}
}

@media (max-width: 520px) {
	.filter-panel {
		grid-template-columns: 1fr;
	}

	.filter-panel > :last-child {
		grid-column: auto;
		max-width: none;
	}
}

@media (max-width: 1200px) {
	.hero-section-2 {
		height: auto;
		min-height: 100dvh;
		padding: 80px 0 40px;
	}

	.hero-text-2 {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		transform: none;
		width: auto;
		margin: 0 14px;
		padding: 24px 20px;
	}
}

@media (max-width: 900px) {
	.who-grid:not(.is-fishing) {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px !important;
	}

	.who-grid.is-fishing {
		display: block !important;
		grid-template-columns: none !important;
	}

	.who-grid:not(.is-fishing) > .who-col {
		width: 100% !important;
	}
}

@media (max-width: 768px) {
	.hero-section-2 {
		padding: 72px 0 28px;
	}

	.hero-text-2 {
		padding: 18px 14px;
	}

	.hero-text-2 > p:first-child {
		font-size: 30px !important;
	}

	.who-tabs,
	.gallery-tabs.who-tabs {
		flex-wrap: nowrap !important;
		gap: 8px !important;
		row-gap: 0 !important;
	}

	.who-tabs .gallery-tab,
	.gallery-tabs.who-tabs .gallery-tab {
		font-size: 13px !important;
		padding: 7px 12px !important;
		white-space: nowrap !important;
	}

	.who-grid {
		grid-template-columns: 1fr !important;
		display: grid;
		gap: 12px !important;
	}

	.who-fishing-layout {
		grid-template-columns: 1fr;
		row-gap: 14px;
	}

	.who-fishing-images {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.who-expedition-layout {
		grid-template-columns: 1fr;
		row-gap: 14px;
	}

	.who-expedition-images {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.who-col,
	.who-col:last-child {
		width: 100%;
	}

	.who-col-title {
		font-size: 24px !important;
		margin: 0 0 6px;
	}

	.who-col-text {
		font-size: 16px !important;
		margin: 0;
	}

	.who-fishing-content .who-col-text,
	.who-expedition-content .who-col-text {
		font-size: 16px !important;
	}

	/* Geography @768: reduce only large text sizes by 2px */
	.hero-text-3 > div > div:first-child > p:first-child {
		font-size: 36px !important;
		line-height: 1.1;
	}

	.hero-text-3 > div > div:first-child > p:nth-of-type(2),
	.hero-text-3 > div > div:first-child > p:nth-of-type(3) {
		font-size: 18px !important;
		line-height: 1.3;
	}

	.hero-text-3 {
		padding: 16px 14px 0 14px !important;
	}

	.hero-text-3 a > img:not(.zoom-css) {
		width: 240px !important;
	}

	/* Included grid: horizontal auto-layout with wrap */
	.included-grid {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: wrap !important;
		gap: 20px !important;
		justify-content: flex-start !important;
	}

	.included-list {
		flex: 0 1 calc((100% - 20px) / 2) !important;
		min-width: 260px !important;
	}

	.included-list li {
		font-size: 17px !important;
	}
}

/* Block 4 covers: full card width with preserved 4:3 ratio */
.block-text-4 img,
.program-card-cover {
	display: block;
	width: 100% !important;
	max-width: none;
	height: auto !important;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	align-self: stretch;
	border-radius: 12px !important;
	margin-bottom: 1rem !important;
}

@media (max-width: 760px) {
	.hero-text-4 {
		left: 10%;
		right: 10%;
	}

	.hero-block-4 {
		grid-template-columns: 1fr;
		row-gap: 14px;
		column-gap: 0;
		padding: 0;
	}

	.program-subtitle {
		font-size: 20px;
		max-width: 100%;
	}

	.block-text-4 ul li {
		font-size: 18px;
	}

	.included-title {
		font-size: 32px;
	}

	.included-extra-title {
		font-size: 28px;
	}

	.included-grid {
		flex-direction: row !important;
		flex-wrap: wrap !important;
		gap: 20px !important;
	}

	.included-list li {
		font-size: 17px;
		margin-bottom: 14px;
	}

	.included-actions {
		flex-direction: column;
	}

	.included-actions .button-primary,
	.included-actions .button-outline {
		width: 100%;
	}

	.included-tab {
		width: 100%;
		text-align: center;
	}

	.included-panel-inner {
		row-gap: 12px;
	}

	.included-panel-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fish-gallery-title {
		font-size: 32px;
	}

	.fish-cards {
		grid-template-columns: 1fr;
	}

	.price-cards {
		grid-template-columns: 1fr;
	}

	.price-actions {
		flex-direction: column;
	}

	.price-actions .button-primary,
	.price-actions .button-outline {
		width: 100%;
	}

	.price-guests {
		width: 100%;
		justify-content: center;
	}
}

@media (min-width: 761px) and (max-width: 1200px) {
	.hero-text-4 {
		left: 10%;
		right: 10%;
	}

	.hero-block-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: 18px;
		row-gap: 18px;
		padding: 0;
	}

	.program-subtitle {
		font-size: 20px;
		max-width: 780px;
	}

	.included-section {
		padding: 0 12px;
	}

	.included-grid {
		gap: 12px;
	}
}

/* Mobile-only stabilization layer (desktop 1920 is intentionally untouched) */
.floating-messengers {
	display: none !important;
}

@media (max-width: 1024px) {
	.container {
		padding-left: clamp(12px, 2.8vw, 20px);
		padding-right: clamp(12px, 2.8vw, 20px);
	}

	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	img,
	video,
	svg,
	iframe {
		max-width: 100%;
	}

	.hero-section,
	.hero-section-2,
	.hero-section-3,
	.hero-section-4,
	.hero-section-5,
	.hero-section-6,
	.hero-section-7,
	.hero-section-8 {
		height: auto !important;
		min-height: auto !important;
		overflow-x: hidden !important;
	}

	.hero-section-2,
	.hero-section-3,
	.hero-section-4,
	.hero-section-5 {
		opacity: 1 !important;
	}

	.hero-text-2,
	.hero-text-3,
	.hero-text-4,
	.hero-text-5,
	.hero-text-6,
	.hero-text-8-1,
	.hero-text-8-2,
	.hero-text-2.sticky-fixed,
	.hero-text-2.sticky-stop,
	.hero-text-3.sticky-fixed,
	.hero-text-3.sticky-stop,
	.hero-text-5.sticky-fixed,
	.hero-text-5.sticky-stop {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		transform: none !important;
		width: auto !important;
		margin-left: 14px !important;
		margin-right: 14px !important;
	}

	.hero-text-3 > div,
	.hero-text-8-1 {
		display: flex !important;
		flex-direction: column !important;
		gap: 16px !important;
		align-items: stretch !important;
	}

	.hero-text-3 > div > div {
		width: 100% !important;
	}

	/* Geography card: keep controls readable and stable */
	.geo-slider-controls {
		flex-direction: row !important;
		margin-top: 12px;
		flex-wrap: nowrap !important;
		gap: 10px;
	}

	.hero-text-8-2 {
		margin-top: 24px !important;
	}

	.price-title,
	.included-title,
	.fish-gallery-title {
		font-size: clamp(30px, 4.8vw, 40px) !important;
	}

	.program-subtitle,
	.price-subtitle,
	.hero-text > div {
		font-size: clamp(15px, 2.4vw, 20px) !important;
	}

	.hero-text,
	.hero-text p,
	.hero-text-2,
	.hero-text-2 p,
	.hero-text-3,
	.hero-text-3 p,
	.hero-text-4,
	.hero-text-4 p,
	.hero-text-6,
	.hero-text-6 p,
	.hero-text-8-1,
	.hero-text-8-1 p,
	.hero-text-8-2,
	.hero-text-8-2 p,
	.included-panel-text,
	.accordion-panel,
	.main-nav a {
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.included-grid,
	.price-cards,
	.price-actions,
	.included-actions {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 12px !important;
	}

	.included-actions .button-primary,
	.included-actions .button-outline,
	.price-actions .button-primary,
	.price-actions .button-outline {
		width: 100% !important;
		max-width: 100% !important;
	}

	.gallery,
	.fish-gallery-grid,
	.included-panel-gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	.who-tabs,
	.gallery-tabs.who-tabs,
	.fish-gallery-tabs {
		flex-wrap: wrap !important;
		row-gap: 10px !important;
	}

	.included-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.who-tabs .gallery-tab,
	.gallery-tabs.who-tabs .gallery-tab,
	.fish-gallery-tabs .gallery-tab,
	.included-tab {
		white-space: normal;
		text-align: center;
	}

	.faq-weather-widget iframe {
		height: 400px;
	}

	.hero-section-5 iframe {
		height: min(72vh, 680px);
	}

	.gallery-item,
	.included-panel-image {
		min-width: 0;
	}

	.button-primary,
	.button-outline,
	.button-booking,
	.menu-toggle,
	.price-guests-btn,
	.included-tab,
	.accordion-toggle,
	.site-modal-close,
	.program-form input[type="text"],
	.program-form input[type="tel"],
	.program-form input[type="email"] {
		min-height: 44px;
	}

	.main-nav {
		max-height: calc(100dvh - 110px);
		overflow-y: auto;
	}

	.main-nav li,
	.main-nav a {
		white-space: normal;
	}

	.nav-ya-link img {
		height: 32px;
	}

	.site-modal-backdrop {
		align-items: flex-start;
		overflow-y: auto;
		padding: 12px;
	}

	.site-modal,
	.site-modal-video {
		width: min(100%, 96vw);
		max-height: calc(100dvh - 24px);
		overflow: auto;
	}

	.video-modal-frame-wrap {
		max-height: calc(100dvh - 120px);
	}

	.bukza-form {
		width: min(100%, 96vw);
	}

	.footer-1-info {
		height: auto;
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		padding: 24px 0;
	}

	.footer-1-menu ul {
		padding-left: 0;
		margin: 0;
	}

	.footer-2-info {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.footer-2-copy-group {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.footer-2-menu {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	/* Inline-style heavy parts: force wrapping safety */
	.hero-text-3 p,
	.hero-text-4 p,
	.hero-text-6 p,
	.hero-text-8-1 p,
	.hero-text-8-2 p {
		max-width: 100%;
	}
}

@media (max-width: 430px) {
	.header-phone {
		display: none !important;
	}

	.main-nav .nav-phone-item {
		display: flex !important;
		order: -1;
	}

	.main-nav .nav-phone-link {
		display: block !important;
		width: 100%;
		text-align: center !important;
		font-size: 18px !important;
		font-weight: 600 !important;
		padding: 10px 6px !important;
	}

	.hero-text-3 {
		min-height: 390px !important;
		padding-bottom: 20px !important;
	}

	[data-gallery-tabs] {
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: center !important;
		gap: 10px !important;
	}

	[data-gallery-tabs] > .gallery-tab {
		flex: 0 1 calc((100% - 10px) / 2);
		text-align: center;
	}

	[data-gallery-tabs] > .gallery-tab[data-gallery-set="comfort"] { order: 1; }
	[data-gallery-tabs] > .gallery-tab[data-gallery-set="restaurant"] { order: 2; }
	[data-gallery-tabs] > .gallery-tab[data-gallery-set="interior"] { order: 3; }
	[data-gallery-tabs] > .gallery-tab[data-gallery-set="leisure"] { order: 4; }

	/* About tabs (fishing/equipment/snowmobiles): 2 images top, text below left-aligned */
	.who-grid.is-fishing .who-fishing-layout,
	.who-grid.is-fishing .who-expedition-layout {
		display: grid !important;
		grid-template-columns: 1fr !important;
		row-gap: 14px !important;
	}

	.who-grid.is-fishing .who-fishing-images,
	.who-grid.is-fishing .who-expedition-images {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	.who-grid.is-fishing .who-fishing-content,
	.who-grid.is-fishing .who-expedition-content {
		grid-column: auto !important;
		align-self: start !important;
		width: 100% !important;
	}

	.who-grid.is-fishing .who-col-text {
		text-align: left !important;
	}

	.hero-text,
	.hero-text-2,
	.hero-text-3,
	.hero-text-4,
	.hero-text-5,
	.hero-text-6,
	.hero-text-8-1,
	.hero-text-8-2 {
		margin-left: 12px !important;
		margin-right: 12px !important;
	}

	.filter-panel {
		grid-template-columns: 1fr !important;
	}

	.gallery,
	.fish-gallery-grid,
	.included-panel-gallery {
		grid-template-columns: 1fr !important;
	}

	.included-tabs {
		grid-template-columns: 1fr !important;
	}

	.hero-section-5 iframe {
		height: min(58vh, 500px);
	}

	.hero-text > div > div,
	.included-actions,
	.price-actions {
		gap: 10px !important;
	}

	.price-guests {
		width: 100% !important;
		justify-content: center;
	}

	.price-guests-btn {
		flex: 1 1 0;
	}

	.accordion-toggle {
		font-size: clamp(16px, 4.6vw, 19px);
	}
}

/* Tablet pass (keep desktop grouping, no mobile collapse yet) */
@media (min-width: 769px) and (max-width: 1100px) {
	.header {
		padding-left: 40px !important;
		padding-right: 40px !important;
	}

	.footer-1 .container,
	.footer-2 .container {
		padding-left: 40px;
		padding-right: 40px;
	}

	/* 1) О нас: плотнее блок */
	.hero-section-2 {
		min-height: auto !important;
		height: auto !important;
		padding: 56px 0 28px !important;
	}

	.hero-text-2 {
		padding: 20px 22px !important;
		margin-bottom: 0 !important;
	}

	.who-tabs,
	.gallery-tabs.who-tabs {
		justify-content: flex-start !important;
		flex-wrap: nowrap !important;
		gap: 10px !important;
		margin-bottom: 32px !important;
		row-gap: 0 !important;
	}

	.who-tabs .gallery-tab,
	.gallery-tabs.who-tabs .gallery-tab {
		padding: 8px 18px;
		font-size: 14px;
		line-height: 1.2;
		white-space: nowrap !important;
	}

	.who-grid {
		align-items: start !important;
		align-content: start !important;
		min-height: auto !important;
	}

	.who-grid:not(.is-fishing) {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 24px !important;
	}

	.who-grid:not(.is-fishing) .who-col,
	.who-grid:not(.is-fishing) .who-col:last-child {
		width: 100% !important;
	}

	.who-fishing-layout,
	.who-expedition-layout {
		width: 100%;
		grid-template-columns: 20% 20% minmax(0, 1fr);
		column-gap: 20px;
		align-items: start;
		align-content: start;
	}

	.who-fishing-content .who-col-text,
	.who-expedition-content .who-col-text {
		font-size: 17px !important;
		line-height: 1.35;
	}

	.who-fishing-images,
	.who-expedition-images {
		display: contents;
	}

	.who-fishing-images img,
	.who-expedition-images img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
		border-radius: 16px;
		min-width: 0;
	}

	.who-fishing-content,
	.who-expedition-content {
		grid-column: 3;
		align-self: start;
	}

	.who-fishing-content,
	.who-expedition-content {
		width: 100%;
		max-width: none;
	}

	/* 2) География: стрелки и контролы в одну линию */
	.geo-slider-controls {
		flex-wrap: nowrap !important;
		justify-content: center !important;
		align-items: center !important;
		gap: 12px !important;
	}

	.geo-dots {
		order: 2;
	}

	.geo-nav-btn[data-geo-prev] {
		order: 1;
	}

	.geo-nav-btn[data-geo-next] {
		order: 3;
	}

	/* 3) Галерея проживания: 3 в ряд */
	.hero-section-6.container .gallery {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	}

	/* Program title: add breathing room from section top */
	.hero-text-4 {
		top: 12% !important;
	}

	/* 4) Что включено: 3 колонки и плотнее типографика */
	.included-grid {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 18px !important;
	}

	.included-list li {
		font-size: 17px !important;
		line-height: 1.35;
	}

	.included-panel-text {
		text-align: center;
	}

	/* 5) Важно знать: заголовок по центру */
	.hero-text-8-1 > div > p:first-child {
		text-align: center;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	/* 6) Футер: не одной колонкой, а логично как на desktop */
	.footer-1-info {
		flex-direction: row !important;
		align-items: flex-start !important;
		justify-content: space-between !important;
		height: auto;
		padding: 28px 0;
		gap: 24px;
	}

	.footer-1-info > div:nth-child(1) {
		flex: 1 1 36%;
	}

	.footer-1-info > div:nth-child(2) {
		flex: 1 1 28%;
	}

	.footer-1-info > div:nth-child(3) {
		flex: 1 1 30%;
	}

	.footer-1-menu ul li {
		margin-bottom: 12px;
	}

	.footer-1-info-1 {
		align-items: flex-start;
	}

	.footer-socials {
		padding-left: 0;
	}

	/* 7) Подфутер: компактнее, 2 строки максимум */
	.footer-2-info {
		display: grid !important;
		grid-template-columns: 1.25fr 1fr;
		align-items: start;
		gap: 12px 20px !important;
	}

	.footer-2-copy-group {
		display: flex !important;
		flex-direction: column;
		gap: 6px;
		min-width: 0;
	}

	.footer-2-menu {
		display: flex !important;
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.footer-2-info p,
	.footer-2-info a {
		font-size: 11px !important;
		line-height: 1.2 !important;
		white-space: normal !important;
	}
}

/* Mid-desktop safety: prevent section overlap around 1280 widths */
@media (max-width: 1360px) {
	.header {
		column-gap: 16px;
	}

	.main-nav ul {
		gap: clamp(10px, 1vw, 20px);
	}

	.main-nav a {
		font-size: 14px;
	}

	.nav-ya-link img {
		height: 40px;
	}

	.header-phone {
		font-size: 16px;
	}

	.hero-section-2,
	.hero-section-3,
	.hero-section-4 {
		height: auto !important;
		min-height: 0;
		padding: 72px 0 56px;
	}

	.hero-section-4 {
		padding-bottom: 96px;
	}

	.hero-text-2,
	.hero-text-3,
	.hero-text-4,
	.hero-text-2.sticky-fixed,
	.hero-text-2.sticky-stop,
	.hero-text-3.sticky-fixed,
	.hero-text-3.sticky-stop {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		transform: none !important;
		width: min(1140px, calc(100vw - 80px)) !important;
		margin: 0 auto !important;
	}

	.hero-text-4 {
		width: min(1220px, calc(100vw - 80px)) !important;
	}

	.hero-section-5 {
		padding-top: 32px;
	}
}

/* About-section prototype alignment for prod widths */
@media (min-width: 901px) and (max-width: 1360px) {
	.hero-section-2 {
		min-height: auto !important;
		height: auto !important;
		padding: 56px 0 34px !important;
	}

	.hero-text-2 {
		width: min(1220px, calc(100vw - 80px)) !important;
		padding: 22px 26px !important;
	}

	.who-tabs,
	.gallery-tabs.who-tabs {
		justify-content: flex-start !important;
		flex-wrap: nowrap !important;
		gap: 12px !important;
		margin-bottom: 28px !important;
	}

	.who-tabs .gallery-tab,
	.gallery-tabs.who-tabs .gallery-tab {
		padding: 8px 16px;
		font-size: clamp(13px, 1vw, 15px);
		white-space: nowrap !important;
	}

	.who-grid {
		min-height: auto !important;
		align-items: start !important;
		align-content: start !important;
	}

	.who-grid:not(.is-fishing) {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 22px !important;
	}

	.who-grid:not(.is-fishing) .who-col,
	.who-grid:not(.is-fishing) .who-col:last-child {
		width: 100% !important;
	}

	.who-grid:not(.is-fishing-1200) .who-fishing-layout,
	.who-grid:not(.is-fishing-1200) .who-expedition-layout {
		width: 100%;
		grid-template-columns: 20% 20% minmax(0, 1fr);
		column-gap: 18px;
		align-items: start;
		align-content: start;
	}

	.who-grid:not(.is-fishing-1200) .who-fishing-images,
	.who-grid:not(.is-fishing-1200) .who-expedition-images {
		display: contents;
	}

	.who-grid:not(.is-fishing-1200) .who-fishing-images img,
	.who-grid:not(.is-fishing-1200) .who-expedition-images img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
		border-radius: 16px;
		min-width: 0;
	}

	.who-grid:not(.is-fishing-1200) .who-fishing-content,
	.who-grid:not(.is-fishing-1200) .who-expedition-content {
		grid-column: 3;
		align-self: start;
		width: 100%;
		max-width: none;
	}

	.who-grid:not(.is-fishing-1200) .who-fishing-content .who-col-text,
	.who-grid:not(.is-fishing-1200) .who-expedition-content .who-col-text {
		font-size: clamp(16px, 1.15vw, 18px) !important;
		line-height: 1.35;
		margin: 0;
	}
}

/* Dedicated <=1200 layout for who-grid in fishing tabs (no repeat() templates) */
@media (max-width: 1200px) {
	.who-grid.is-fishing.is-fishing-1200 {
		display: block;
		grid-template-columns: none !important;
		min-height: auto !important;
	}

	.who-grid.is-fishing.is-fishing-1200 .who-fishing-layout,
	.who-grid.is-fishing.is-fishing-1200 .who-expedition-layout {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 3fr);
		column-gap: 20px;
		align-items: start;
		align-content: start;
		width: 100%;
	}

	.who-grid.is-fishing.is-fishing-1200 .who-fishing-images,
	.who-grid.is-fishing.is-fishing-1200 .who-expedition-images {
		display: contents;
	}

	.who-grid.is-fishing.is-fishing-1200 .who-fishing-images img,
	.who-grid.is-fishing.is-fishing-1200 .who-expedition-images img {
		width: 100%;
		aspect-ratio: 4 / 3;
		object-fit: cover;
		border-radius: 16px;
		min-width: 0;
	}

	.who-grid.is-fishing.is-fishing-1200 .who-fishing-content,
	.who-grid.is-fishing.is-fishing-1200 .who-expedition-content {
		grid-column: 3;
		align-self: start;
		width: 100%;
		max-width: none;
	}
}





/* Desktop downscale pass: keep backgrounds visible and prevent content clipping */
@media (min-width: 1361px) and (max-width: 1919px) {
	.hero-section-2,
	.hero-section-3,
	.hero-section-4 {
		height: auto !important;
		min-height: 100dvh;
		padding: 72px 0 56px;
		overflow-x: hidden;
	}

	.hero-section-4 {
		padding-bottom: 88px;
	}

	.hero-text-2,
	.hero-text-3,
	.hero-text-4,
	.hero-text-2.sticky-fixed,
	.hero-text-2.sticky-stop,
	.hero-text-3.sticky-fixed,
	.hero-text-3.sticky-stop {
		position: relative !important;
		top: auto !important;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		transform: none !important;
		width: min(1140px, calc(100% - 80px)) !important;
		max-width: calc(100% - 40px) !important;
		box-sizing: border-box !important;
		margin: 0 auto !important;
	}

	.hero-text-4 {
		width: min(1220px, calc(100% - 80px)) !important;
	}

	.hero-section-2::before,
	.hero-section-2::after,
	.hero-section-3::before,
	.hero-section-3::after,
	.hero-section-4::before,
	.hero-section-4::after {
		height: clamp(160px, 22vh, 260px);
	}
}

/* Geography card fine-tune for 1024-ish viewports */
@media (min-width: 901px) and (max-width: 1024px) {
	.hero-text-3,
	.hero-text-3.sticky-fixed,
	.hero-text-3.sticky-stop {
		width: min(920px, calc(100% - 48px)) !important;
		max-width: calc(100% - 24px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding: 1.5rem 2rem !important;
		box-sizing: border-box !important;
	}

	.hero-text-3 p {
		font-size: 16px !important;
	}

	.hero-text-3 > div > div > p:first-child {
		font-size: 40px !important;
	}

	.hero-text-3 a > img:not(.zoom-css) {
		width: 282px !important;
	}

	.hero-text-3 > div > div:first-child > p:nth-of-type(2) {
		margin-top: 0 !important;
		margin-block-start: 0 !important;
	}

	.hero-text-3 > div > div:first-child > p:first-child {
		margin-bottom: 0 !important;
		margin-block-end: 0 !important;
	}
}

/* About tabs: keep right text vertically centered in expedition layout */
.who-grid .who-expedition-layout {
	align-items: center !important;
}

.who-grid .who-expedition-content {
	align-self: center !important;
}

.who-grid .who-fishing-layout {
	align-items: center !important;
}

.who-grid .who-fishing-content {
	align-self: center !important;
}

@media (max-width: 960px) {
	.price-title {
		margin-top: 50px !important;
	}
}

/* Final override: included-grid must stay 2-up with wrap on small tablets/phones */
@media (max-width: 768px) {
	.hero-text-3 {
		min-height: 810px !important;
	}

	.geo-slider-controls {
		margin-bottom: 30px !important;
	}

	.hero-text-2 > p:first-child {
		text-align: center !important;
	}

	.hero-text-3 > div > div:first-child > p:first-child {
		text-align: center !important;
	}

	.who-tabs,
	.gallery-tabs.who-tabs {
		justify-content: center !important;
	}

	.who-col-title,
	.who-col-text {
		text-align: center !important;
	}

	.included-title {
		margin-bottom: 30px !important;
	}

	.hero-text-6 > div > div > p:first-child,
	.included-extra-title {
		margin-bottom: 30px !important;
	}

	.hero-text-8-2 {
		background-image: url('../img/fishing-conditions-fc2.webp') !important;
		background-size: cover !important;
		background-position: center !important;
	}

	.hero-text-3 .geo-map-column {
		width: 100% !important;
	}

	.included-grid {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 18px !important;
		align-items: start !important;
	}

	.included-grid > .included-list {
		min-width: 0 !important;
	}

	.included-grid > .included-list li {
		font-size: 16px !important;
		line-height: 1.35 !important;
	}

	.footer-socials {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 12px !important;
		padding: 12px 0 !important;
	}

	.footer-1-info {
		display: grid !important;
		grid-template-columns: 170px 170px !important;
		align-items: start !important;
		justify-content: center !important;
		column-gap: 110px !important;
		row-gap: 20px !important;
		height: auto !important;
		padding: 24px 0 !important;
	}

	.footer-1-info > div:nth-child(1) {
		width: 170px !important;
		max-width: 170px !important;
	}

	.footer-1-info > div:nth-child(2) {
		width: 170px !important;
		max-width: 170px !important;
		justify-self: start;
	}

	.footer-1-info > div:nth-child(3) {
		grid-column: 1 / -1;
		width: 100% !important;
	}

	.footer-1-menu ul {
		display: flex !important;
		flex-direction: column !important;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		padding-left: 0 !important;
		margin: 0 !important;
	}

	.footer-1-info-1 {
		width: 100% !important;
		align-items: center !important;
		text-align: center !important;
	}

	.footer-1-info-1 > img {
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.footer-yandex-rating {
		display: flex !important;
		justify-content: center !important;
		width: 100% !important;
	}

	.footer-2-info {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		gap: 10px !important;
	}

	.footer-2-copy-group,
	.footer-2-menu {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 8px !important;
	}

	.footer-2-info p,
	.footer-2-info a {
		text-align: center !important;
	}
}

@media (max-width: 430px) {
	.hero-text-3 {
		min-height: 275px !important;
	}

	.hero-text-3 > div > div:first-child > p:first-child {
		font-size: 24px !important;
		line-height: 1.15 !important;
	}

	.hero-text-6 [data-gallery-tabs] {
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: center !important;
		gap: 10px !important;
	}

	.hero-text-6 [data-gallery-tabs] > .gallery-tab {
		flex: 0 1 calc((100% - 10px) / 2) !important;
		text-align: center !important;
	}

	.hero-text-6 [data-gallery-tabs] > .gallery-tab[data-gallery-set="comfort"] { order: 1 !important; }
	.hero-text-6 [data-gallery-tabs] > .gallery-tab[data-gallery-set="restaurant"] { order: 2 !important; }
	.hero-text-6 [data-gallery-tabs] > .gallery-tab[data-gallery-set="interior"] { order: 3 !important; }
	.hero-text-6 [data-gallery-tabs] > .gallery-tab[data-gallery-set="leisure"] { order: 4 !important; }

	.hero-section-6.container .hero-text-6,
	.hero-section-6.container .hero-text-6 > div,
	.hero-section-6.container .hero-text-6 > div > div {
		text-align: center !important;
		align-items: center !important;
	}

	.hero-section-6.container .hero-text-6 > div > div > p:first-child,
	.hero-section-6.container .hero-text-6 > div > div > p:nth-of-type(2) {
		text-align: center !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.hero-section-6.container .gallery {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 10px !important;
	}

	/* Included list: keep order, distribute items horizontally without overlap */
	.included-grid {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		column-gap: 16px !important;
		row-gap: 14px !important;
		align-items: start !important;
	}

	.included-grid > .included-list {
		display: contents !important;
	}

	.included-grid > .included-list li {
		margin: 0 !important;
		min-width: 0 !important;
		font-size: 15px !important;
		line-height: 1.3 !important;
		overflow-wrap: anywhere;
	}
}

@media (max-width: 460px) {
	.footer-1-info {
		display: grid !important;
		grid-template-columns: 1fr !important;
		justify-items: center !important;
		align-items: start !important;
		row-gap: 20px !important;
		height: auto !important;
		padding: 24px 0 20px !important;
	}

	/* Group 1: contacts */
	.footer-1-info > div:nth-child(1) {
		order: 1 !important;
		width: min(100%, 320px) !important;
		max-width: 320px !important;
	}

	.footer-1-info > div:nth-child(1) > div {
		text-align: center !important;
	}

	/* Group 2: menu */
	.footer-1-info > div:nth-child(2) {
		order: 2 !important;
		width: min(100%, 320px) !important;
		max-width: 320px !important;
		justify-self: center !important;
	}

	.footer-1-menu ul {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: flex-start !important;
		gap: 10px !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.footer-1-menu ul li {
		margin: 0 !important;
		text-align: center !important;
	}

	/* Group 3: logo + socials + yandex */
	.footer-1-info > div:nth-child(3) {
		order: 3 !important;
		width: min(100%, 320px) !important;
		max-width: 320px !important;
		grid-column: auto !important;
	}

	.footer-1-info-1 {
		width: 100% !important;
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
	}

	.footer-socials {
		justify-content: center !important;
		padding: 12px 0 8px !important;
	}

	.footer-yandex-rating {
		display: flex !important;
		justify-content: center !important;
		width: 100% !important;
	}

	.footer-2-info {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		justify-content: center !important;
		text-align: center !important;
		gap: 10px !important;
	}

	.footer-2-copy-group,
	.footer-2-menu {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
		gap: 8px !important;
	}
}

@media (max-width: 410px) {
	.hero-text-8-2 .button-booking {
		width: min(100%, 280px) !important;
		min-width: 0 !important;
		padding: 14px 20px !important;
		font-size: 16px !important;
		line-height: 1.2 !important;
		white-space: nowrap !important;
	}

	.included-grid {
		grid-template-columns: 1fr !important;
		column-gap: 0 !important;
		row-gap: 12px !important;
		width: min(100%, 250px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.included-grid > .included-list li {
		font-size: 17px !important;
		overflow-wrap: normal !important;
		word-break: normal !important;
		hyphens: auto;
	}
}

@media (max-width: 360px) {
	.hero-text-8-2 .button-booking {
		width: min(100%, 272px) !important;
		padding-left: 16px !important;
		padding-right: 16px !important;
		font-size: 15px !important;
	}
}

@media (max-width: 520px) {
	#faq img[alt="Компас"] {
		width: min(74vw, 320px) !important;
		height: auto !important;
		aspect-ratio: 1 / 1 !important;
		border-radius: 50% !important;
		object-fit: cover !important;
	}
}

@media (min-width: 431px) and (max-width: 768px) {
	.hero-text-3,
	.hero-text-3.sticky-fixed,
	.hero-text-3.sticky-stop {
		min-height: auto !important;
		padding-bottom: 16px !important;
	}

	.geo-slider-controls {
		margin-bottom: 8px !important;
	}
}

@media (min-width: 1100px) and (max-width: 1280px) {
	.footer-2-info {
		display: flex !important;
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 8px !important;
	}

	.footer-2-copy-group {
		display: flex !important;
		flex-wrap: wrap !important;
		align-items: center !important;
		gap: 8px 16px !important;
	}

	.footer-2-menu {
		display: flex !important;
		flex-wrap: wrap !important;
		align-items: center !important;
		gap: 8px 16px !important;
	}

	.footer-2-info p,
	.footer-2-info a {
		white-space: normal !important;
		line-height: 1.2 !important;
	}
}
