:root {
	--bg: #f7f7f5;
	--surface: #ffffff;
	--surface-muted: #f1f1ed;
	--text: #1f2321;
	--text-soft: #59605b;
	--line: #dcded8;
	--accent: #21453d;
	--accent-soft: #e7f0ed;
	--shadow: 0 8px 24px rgba(20, 27, 24, 0.06);
	--radius: 16px;
	--container: 960px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "Manrope", sans-serif;
	font-size: 1.125rem;
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
}

a {
	color: inherit;
}

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

.site-header,
.section,
.site-footer {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.site-nav,
.page,
.site-footer {
	max-width: var(--container);
	margin: 0 auto;
}

.site-header {
	background: var(--surface);
	border-bottom: 1px solid var(--line);
	position: sticky;
	top: 0;
	z-index: 20;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 72px;
	position: relative;
}

.brand,
.nav-links a,
.button {
	text-decoration: none;
}

.brand {
	font-size: 1.1rem;
	font-weight: 800;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.nav-links a {
	color: var(--text-soft);
	font-weight: 700;
	font-size: 1rem;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: var(--surface);
	cursor: pointer;
}

.nav-toggle span {
	display: block;
	width: 1.1rem;
	height: 2px;
	margin: 3px 0;
	background: var(--text);
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.page {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.section {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
}

.hero {
	display: grid;
	gap: 1.5rem;
}

.hero-image-card,
.hero-main,
.card,
.table-card,
.contact-card,
.video-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-main {
	padding: 1.5rem;
}

.hero-image-card {
	margin: 0;
	overflow: hidden;
}

.hero-image-card img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	height: auto;
	max-height: 80vh;
	object-fit: cover;
}

.eyebrow {
	margin: 0 0 0.5rem;
	color: var(--text-soft);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	margin-bottom: 0.75rem;
	font-size: clamp(2.4rem, 4.8vw, 3.5rem);
	line-height: 1.15;
}

h2 {
	margin-bottom: 0.5rem;
	font-size: clamp(1.8rem, 3.4vw, 2.35rem);
	line-height: 1.2;
}

h3 {
	margin-bottom: 0.75rem;
	font-size: 1.2rem;
}

.lead,
.section-note,
.card p,
.contact-card p {
	color: var(--text-soft);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: 0.85rem 1.15rem;
	border-radius: 12px;
	font-weight: 800;
	font-size: 1rem;
}

.button-primary {
	color: #ffffff;
	background: var(--accent);
}

.button-secondary {
	color: var(--text);
	background: var(--surface-muted);
	border: 1px solid var(--line);
}

.summary-grid,
.info-grid,
.details-grid,
.gallery-grid,
.faq-grid {
	display: grid;
	gap: 1rem;
}

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

.summary-item {
	padding: 1rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.summary-item strong {
	display: block;
	font-size: 1.2rem;
}

.summary-label {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--text-soft);
	font-size: 1rem;
}

.section-heading {
	margin-bottom: 1rem;
}

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

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

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

.gallery-card {
	margin: 0;
	overflow: hidden;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.gallery-trigger {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: zoom-in;
}

.gallery-trigger:focus-visible {
	outline: 3px solid #8db3a5;
	outline-offset: -4px;
}

.gallery-trigger img {
	width: 100%;
	height: 320px;
	object-fit: cover;
	transition:
		transform 0.35s ease,
		filter 0.35s ease;
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
	transform: scale(1.04);
	filter: saturate(1.05) contrast(1.02);
}

.card,
.contact-card {
	padding: 1.25rem;
}

.equipment-card {
	max-width: 32rem;
	margin: 0 auto;
}

.callout-card {
	display: grid;
	gap: 1rem;
	margin-top: 1rem;
}

.faq-card h3 {
	margin-bottom: 0.5rem;
}

.list {
	margin: 0;
	padding-left: 1.2rem;
}

.list li + li {
	margin-top: 0.45rem;
}

.value {
	margin-bottom: 0.5rem;
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--accent);
}

.table-card {
	margin-top: 1rem;
	overflow: hidden;
}

.table-row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--line);
}

.table-row:last-child {
	border-bottom: 0;
}

.table-row span {
	color: var(--text-soft);
}

.video-embed {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-top: 1rem;
	border: 1px solid black;
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: grid;
	place-items: center;
	padding: 1.5rem;
}

.lightbox[hidden] {
	display: none;
}

.lightbox-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background:
		radial-gradient(circle at top, rgba(52, 88, 77, 0.18), transparent 35%),
		rgba(10, 15, 14, 0.9);
	backdrop-filter: blur(14px);
	cursor: zoom-out;
}

.lightbox-dialog {
	position: relative;
	width: min(1200px, 100%);
	max-height: calc(100vh - 3rem);
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background: rgba(19, 25, 23, 0.72);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
	animation: lightbox-enter 0.24s ease;
}

.lightbox-close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

.lightbox-figure {
	margin: 0;
}

.lightbox-image {
	width: 100%;
	max-height: calc(100vh - 9rem);
	border-radius: 20px;
	object-fit: contain;
}

body.lightbox-open {
	overflow: hidden;
}

@keyframes lightbox-enter {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.985);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.contact-phone {
	margin: 1rem 0;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.1;
}

.site-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding-top: 1.5rem;
	padding-bottom: 2rem;
	color: var(--text-soft);
}

.site-footer p {
	margin: 0;
}

.cookie-settings-button {
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 0.98rem;
	font-weight: 700;
	text-decoration: underline;
	cursor: pointer;
}

.sticky-call {
	display: none;
}

#cc-main .cm {
	width: min(560px, calc(100vw - 2rem));
	border-radius: var(--radius);
	box-shadow: 0 28px 80px rgba(20, 27, 24, 0.28);
}

#cc-main .cm__body,
#cc-main .cm__footer {
	text-align: center;
}

#cc-main .cm__btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
}

#cc-main .cm__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 1 12rem;
	min-width: 10rem;
	margin: 0;
	text-align: center;
}

@media (max-width: 760px) {
	body {
		padding-bottom: 6rem;
	}

	.summary-grid,
	.info-grid,
	.details-grid,
	.gallery-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.table-row {
		flex-direction: column;
	}

	.nav-toggle {
		display: inline-flex;
		flex-direction: column;
		margin-left: auto;
	}

	.nav-links {
		position: absolute;
		top: calc(100% + 0.5rem);
		left: 0;
		right: 0;
		display: none;
		flex-direction: column;
		gap: 0;
		padding: 0.5rem;
		background: var(--surface);
		border: 1px solid var(--line);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}

	.site-nav.is-open .nav-links {
		display: flex;
	}

	.nav-links a {
		display: block;
		padding: 0.8rem 0.9rem;
		border-radius: 12px;
	}

	.site-footer {
		flex-direction: column;
		align-items: flex-start;
	}

	.sticky-call {
		position: fixed;
		left: 1rem;
		right: 1rem;
		bottom: 1rem;
		z-index: 30;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 3.5rem;
		padding: 0.85rem 1rem;
		border-radius: 999px;
		background: var(--accent);
		color: #ffffff;
		box-shadow: 0 12px 30px rgba(20, 27, 24, 0.18);
		font-weight: 800;
		text-decoration: none;
	}

	#cc-main .cm__btns {
		flex-direction: column;
	}

	#cc-main .cm__btn {
		width: min(100%, 16rem);
	}

	.lightbox {
		padding: 0.75rem;
	}

	.lightbox-dialog {
		padding: 0.75rem;
		border-radius: 20px;
	}

	.lightbox-image {
		max-height: calc(100vh - 7rem);
	}
}
