:root {
	--bg: #0c1117;
	--surface: #1c2213;
	--surface-2: #19222c;
	--text: #f3f5f7;
	--muted: #b7c0c9;
	--line: rgba(255, 255, 255, 0.08);
	--accent: #23c483;
	--accent-dark: #18a86f;
	--white: #ffffff;
	--shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	--radius: 20px;
	--container: 1200px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Inter, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background: #0a0f14;
	color: var(--text);
}

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

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

.container {
	width: min(100% - 32px, var(--container));
	margin: 0 auto;
}

.section-block {
	padding: 80px 0;
}

.section-label {
	display: inline-flex;
	padding: 8px 14px;
	margin-bottom: 16px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.03);
}

.section-heading {
	max-width: 720px;
	margin-bottom: 32px;
}

.section-heading h2,
.section-about h2,
.section-booking h2 {
	margin: 0 0 14px;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.1;
}

.section-heading p,
.section-about p,
.section-booking p,
.contact-card p,
.service-card p,
.benefit-card p,
.site-footer p {
	margin: 0;
	color: var(--muted);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 14px;
	font-weight: 700;
	transition: 0.25s ease;
	cursor: pointer;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn-primary {
	background: var(--accent);
	color: #06110b;
}

.btn-primary:hover {
	background: var(--accent-dark);
}

.btn-secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.16);
	color: var(--white);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.06);
}

.btn-large {
	min-height: 56px;
	padding: 14px 26px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(14px);
	background: rgba(9, 14, 19, 0.8);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 0;
}

.site-branding {
	flex-shrink: 0;
}

.site-title {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.site-logo img {
	max-height: 44px;
	width: auto;
}

.header-nav .menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-nav a {
	color: var(--muted);
	font-weight: 600;
}

.header-nav a:hover {
	color: var(--white);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: transparent;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--white);
}

.section-hero {
	position: relative;
	min-height: 88svh;
	display: flex;
	align-items: center;
	padding: 110px 0 80px;
	background-color: #0b1015;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(8, 11, 15, 0.55) 0%, rgba(8, 11, 15, 0.78) 55%, rgba(8, 11, 15, 0.94) 100%),
		linear-gradient(90deg, rgba(8, 11, 15, 0.88) 0%, rgba(8, 11, 15, 0.55) 50%, rgba(8, 11, 15, 0.2) 100%);
}

.hero-content {
	position: relative;
	z-index: 1;
}

.hero-text {
	max-width: 760px;
}

.hero-text h1 {
	margin: 0 0 18px;
	font-size: clamp(40px, 7vw, 74px);
	line-height: 0.98;
	letter-spacing: -0.04em;
}

.hero-subheading {
	max-width: 650px;
	margin: 0;
	font-size: clamp(17px, 2vw, 20px);
	color: #d3dae1;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.hero-advantages {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.hero-advantages span {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 14px;
	font-weight: 600;
}

.about-grid,
.contacts-grid,
.footer-grid {
	display: grid;
	gap: 24px;
}

.about-grid {
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
}

.about-media,
.service-card,
.benefit-card,
.contact-card,
.booking-box,
.gallery-item,
.media-placeholder,
.gallery-placeholder {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.about-media {
	overflow: hidden;
	min-height: 420px;
}

.about-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-placeholder,
.gallery-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 320px;
	padding: 24px;
	text-align: center;
	color: var(--muted);
}

.services-grid,
.benefits-grid,
.gallery-grid {
	display: grid;
	gap: 20px;
}

.services-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-card,
.benefit-card,
.contact-card,
.booking-box {
	padding: 28px;
}

.service-card h3,
.benefit-card h3,
.contact-card h3,
.footer-title,
.footer-brand {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.2;
}

.service-price {
	margin: 18px 0 20px;
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
}

.gallery-item {
	overflow: hidden;
}

.gallery-item img {
	width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.gallery-grid {
	align-items: start;
}

.gallery-item:hover img {
	transform: scale(1.04);
}

.section-booking {
	padding-top: 0;
}

.booking-box {
	text-align: center;
	padding: 48px 28px;
}

.booking-box .section-label {
	margin-left: auto;
	margin-right: auto;
}

.booking-box p {
	max-width: 680px;
	margin: 0 auto 24px;
}

.booking-embed {
	margin-top: 24px;
}

.contacts-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contacts-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.site-footer {
	padding: 30px 0 20px;
	border-top: 1px solid var(--line);
	background: #091015;
}

.footer-grid {
	grid-template-columns: 1.2fr 1fr 0.9fr;
	padding-bottom: 24px;
}

.footer-bottom {
	padding-top: 20px;
	border-top: 1px solid var(--line);
}

.footer-bottom p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
}

@media (max-width: 1100px) {
	.services-grid,
	.benefits-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.contacts-grid,
	.footer-grid,
	.about-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.menu-toggle {
		display: flex;
	}

	.header-inner {
		flex-wrap: wrap;
	}

	.header-nav {
		display: none;
		width: 100%;
		order: 4;
	}

	.header-nav.is-open {
		display: block;
	}

	.header-nav .menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
		padding: 20px;
		margin-top: 12px;
		border: 1px solid var(--line);
		border-radius: 18px;
		background: #0f151c;
	}

	.header-actions {
		margin-left: auto;
	}

	.about-grid,
	.contacts-grid,
	.footer-grid,
	.services-grid,
	.benefits-grid,
	.gallery-grid {
		grid-template-columns: 1fr;
	}

	.about-media {
		min-height: 320px;
	}
}

.section-prices-hero {
	position: relative;
	padding: 120px 0 72px;
}

.section-prices-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 11, 15, 0.4) 0%, rgba(8, 11, 15, 0.92) 100%);
	z-index: 0;
}

.section-prices-hero .container {
	position: relative;
	z-index: 1;
}

.prices-heading {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.prices-heading h1 {
	margin: 0 0 14px;
	font-size: clamp(36px, 5vw, 52px);
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.prices-heading p {
	margin: 0 0 28px;
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.6;
	color: var(--muted);
}

.section-prices {
	padding-top: 0;
	padding-bottom: 100px;
}

.prices-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
	box-shadow: var(--shadow);
}

.prices-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
}

.prices-table thead th {
	padding: 18px 24px;
	border-bottom: 1px solid var(--line);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: left;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.02);
}

.prices-table tbody tr {
	border-bottom: 1px solid var(--line);
	transition: background 0.2s ease;
}

.prices-table tbody tr:last-child {
	border-bottom: none;
}

.prices-table tbody tr:hover {
	background: rgba(255, 255, 255, 0.03);
}

.prices-table td {
	padding: 24px;
	vertical-align: top;
	font-size: 18px;
	line-height: 1.5;
}

.price-service {
	width: 55%;
}

.price-service-title {
	margin-bottom: 8px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--text);
}

.price-service-desc {
	font-size: 17px;
	line-height: 1.6;
	color: var(--muted);
}

.price-amount {
	width: 22%;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: var(--white);
	white-space: nowrap;
}

.price-duration {
	width: 23%;
	font-size: 18px;
	font-weight: 600;
	color: var(--muted);
	white-space: nowrap;
}

@media (max-width: 860px) {
	.prices-table,
	.prices-table thead,
	.prices-table tbody,
	.prices-table th,
	.prices-table td,
	.prices-table tr {
		display: block;
	}

	.prices-table {
		min-width: 0;
	}

	.prices-table thead {
		display: none;
	}

	.prices-table tbody tr {
		padding: 20px;
	}

	.prices-table td {
		width: 100%;
		padding: 0;
	}

	.prices-table td + td {
		margin-top: 14px;
	}

	.prices-table td::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 6px;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		color: var(--muted);
	}

	.price-service-title {
		font-size: 20px;
	}

	.price-amount {
		font-size: 28px;
		white-space: normal;
	}

	.price-duration {
		white-space: normal;
	}
}

@media (max-width: 640px) {
	.section-block {
		padding: 64px 0;
	}

	.container {
		width: min(100% - 24px, var(--container));
	}

	.site-title {
		font-size: 22px;
	}

	.header-actions .btn-secondary {
		display: none;
	}

	.hero-text h1 {
		font-size: 40px;
	}

	.hero-actions,
	.contacts-actions,
	.header-actions {
		width: 100%;
	}

	.hero-actions .btn,
	.contacts-actions .btn,
	.header-actions .btn,
	.service-card .btn,
	.booking-box .btn,
	.site-footer .btn {
		width: 100%;
	}

	.service-card,
	.benefit-card,
	.contact-card,
	.booking-box {
		padding: 22px;
	}

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

	.section-prices-hero {
		padding: 100px 0 48px;
	}

	.section-prices {
		padding-bottom: 80px;
	}
}
