
:root {
	--bg: #f1f8ff;
	--ink: #0f1f2e;
	--sea: #0f6e88;
	--sea-deep: #0b3e54;
	--foam: #f8fdff;
	--sun: #ffad4d;
	--glass: rgba(248, 253, 255, 0.18);
	--line: rgba(15, 31, 46, 0.15);
	--shadow: 0 16px 50px rgba(6, 37, 51, 0.18);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-family: 'Manrope', sans-serif;
	color: var(--ink);
	background:
		radial-gradient(circle at 15% 0%, #d9f4ff 0%, transparent 40%),
		radial-gradient(circle at 80% 100%, #ffebcf 0%, transparent 42%),
		var(--bg);
	line-height: 1.6;
}

.site-header {
	position: fixed;
	top: 16px;
	left: 0;
	width: 100%;
	z-index: 30;
	padding: 0 18px;
}

.nav-wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid rgba(248, 253, 255, 0.4);
	backdrop-filter: blur(14px);
	background: rgba(11, 62, 84, 0.35);
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: var(--shadow);
}

.logo {
	font-family: 'Syne', sans-serif;
	letter-spacing: 0.08em;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-nav a {
	color: #f3fafe;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.25s ease;
}

.site-nav a:hover {
	opacity: 0.75;
}

.nav-cta {
	border: 1px solid rgba(243, 250, 254, 0.6);
	border-radius: 999px;
	padding: 8px 14px;
}

.menu-toggle {
	display: none;
	border: 1px solid rgba(243, 250, 254, 0.4);
	background: transparent;
	color: #f3fafe;
	padding: 8px 14px;
	border-radius: 999px;
	font-weight: 600;
}

.hero {
	min-height: 100vh;
	position: relative;
	display: grid;
	place-items: center;
	color: white;
	padding: 140px 20px 60px;
	overflow: hidden;
}

.hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(6, 42, 59, 0.76), rgba(10, 79, 106, 0.62));
}

.hero-content {
	position: relative;
	z-index: 2;
	width: min(980px, 100%);
	text-align: center;
	animation: heroIn 0.9s ease both;
}

.eyebrow {
	display: inline-block;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: var(--glass);
	backdrop-filter: blur(4px);
	padding: 8px 16px;
	margin-bottom: 20px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.78rem;
	max-width: 100%;
	white-space: normal;
	line-height: 1.25;
}

.hero h1 {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2.3rem, 7vw, 5.1rem);
	line-height: 1;
	margin-bottom: 20px;
	text-wrap: balance;
}

.hero p {
	max-width: 660px;
	margin: 0 auto 26px;
	font-size: clamp(1.02rem, 1.8vw, 1.24rem);
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(120px, 1fr));
	gap: 12px;
	width: min(660px, 100%);
	margin: 0 auto 32px;
}

.hero-stats div {
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.44);
	background: rgba(255, 255, 255, 0.13);
	backdrop-filter: blur(6px);
	padding: 14px 10px;
	display: grid;
	gap: 2px;
}

.hero-stats strong {
	font-size: 1.25rem;
}

.hero-stats span {
	font-size: 0.84rem;
	opacity: 0.9;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn {
	background: linear-gradient(120deg, var(--sun), #ff7e5d);
	color: #132536;
	box-shadow: 0 10px 25px rgba(255, 152, 86, 0.35);
}

.btn.outline {
	background: transparent;
	color: white;
	border-color: rgba(255, 255, 255, 0.7);
	box-shadow: none;
}

.section {
	max-width: 1120px;
	margin: 0 auto;
	padding: 90px 22px;
	text-align: center;
}

.section h2 {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.9rem, 4vw, 3rem);
	margin-bottom: 14px;
}

.section > p {
	max-width: 760px;
	margin: 0 auto;
	color: rgba(15, 31, 46, 0.86);
}

.dark {
	max-width: none;
	color: #eef8ff;
	background:
		linear-gradient(155deg, var(--sea-deep), #0f6e88 60%, #158ea7);
}

.dark h2,
.dark > p {
	color: #eef8ff;
}

.cards {
	margin-top: 42px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 18px;
}

.card {
	text-align: left;
	background: #f8fdff;
	color: var(--ink);
	border-radius: 20px;
	padding: 22px;
	border: 1px solid var(--line);
	box-shadow: var(--shadow);
}

.card-badge {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #14516b;
	background: #d7f1ff;
	margin-bottom: 12px;
}

.card h3 {
	font-family: 'Syne', sans-serif;
	margin-bottom: 10px;
}

.card p {
	margin-bottom: 14px;
}

.card strong {
	color: #0e5974;
}

.gallery {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.gallery figure {
	position: relative;
	overflow: hidden;
	border-radius: 18px;
	min-height: 230px;
}

.gallery img {
	width: 100%;
	height: 100%;
	min-height: 230px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery figure:hover img {
	transform: scale(1.06);
}

.gallery figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 12px;
	color: white;
	font-weight: 600;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0));
}

.location-text {
	margin-bottom: 24px;
}

.map iframe {
	width: 100%;
	height: 390px;
	border: 0;
	border-radius: 20px;
	box-shadow: var(--shadow);
}

.contact-note {
	color: #d7eef9;
	margin-top: 6px;
}

form {
	width: min(560px, 100%);
	margin: 34px auto 0;
	border: 1px solid rgba(248, 253, 255, 0.35);
	background: rgba(248, 253, 255, 0.12);
	backdrop-filter: blur(8px);
	border-radius: 22px;
	padding: 18px;
	display: grid;
	gap: 10px;
}

form input,
form textarea,
form button {
	width: 100%;
	border: 0;
	border-radius: 12px;
	padding: 13px 14px;
	font: inherit;
}

form textarea {
	min-height: 112px;
	resize: vertical;
}

form button {
	background: linear-gradient(120deg, var(--sun), #ff7e5d);
	color: #11273b;
	font-weight: 800;
	cursor: pointer;
}

form button:disabled {
	opacity: 0.65;
	cursor: wait;
}

.form-status {
	min-height: 1.3em;
	color: #e8f7ff;
	font-size: 0.92rem;
}

.form-status.error {
	color: #ffd2d2;
}

footer {
	background: #0b2233;
	color: #d8edf8;
	text-align: center;
	padding: 26px;
}

.floating {
	position: fixed;
	right: 14px;
	bottom: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 35;
	padding: 6px;
	border-radius: 999px;
	background: rgba(6, 32, 44, 0.2);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.floating-links {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.floating-toggle {
	display: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.16);
	color: #f4fbff;
	cursor: pointer;
}

.floating-toggle svg {
	width: 21px;
	height: 21px;
}

.floating a {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	text-decoration: none;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.14);
	backdrop-filter: blur(4px);
	box-shadow:
		0 9px 20px rgba(2, 18, 26, 0.34),
		0 0 0 2px rgba(255, 255, 255, 0.24);
	border: 1px solid rgba(255, 255, 255, 0.55);
}

.floating img {
	width: 25px;
	height: 25px;
	object-fit: contain;
	filter: saturate(1.08) contrast(1.08) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.wa {
	border-color: rgba(43, 207, 111, 0.68);
}

.tg {
	border-color: rgba(36, 169, 235, 0.68);
}

.ig {
	border-color: rgba(228, 74, 143, 0.72);
}

.vb {
	border-color: rgba(143, 93, 232, 0.72);
}

.fade {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade.visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 860px) {
	.site-header {
		top: 10px;
		padding: 0 10px;
	}

	.nav-wrap {
		padding: 10px 12px;
		border-radius: 18px;
	}

	.logo {
		font-size: 1.06rem;
		letter-spacing: 0.05em;
	}

	.menu-toggle {
		display: inline-flex;
		font-size: 0.9rem;
		padding: 7px 12px;
		white-space: nowrap;
	}

	.site-nav {
		position: absolute;
		top: calc(100% + 10px);
		left: 0;
		right: 0;
		margin: 0 8px;
		border-radius: 18px;
		background: rgba(11, 62, 84, 0.95);
		border: 1px solid rgba(248, 253, 255, 0.2);
		padding: 14px;
		display: none;
		flex-direction: column;
		gap: 12px;
	}

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

	.hero-stats {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.hero {
		padding: 112px 14px 44px;
	}

	.hero h1 {
		font-size: clamp(2rem, 11.2vw, 2.9rem);
		line-height: 1.05;
		margin-bottom: 14px;
	}

	.hero p {
		font-size: 1rem;
		margin-bottom: 18px;
	}

	.eyebrow {
		font-size: 0.72rem;
		padding: 7px 12px;
		margin-bottom: 14px;
	}

	.hero-buttons {
		gap: 10px;
	}

	.hero-buttons .btn {
		width: min(320px, 100%);
	}

	.section {
		padding: 72px 18px;
	}

	.floating {
		right: 6px;
		bottom: max(8px, env(safe-area-inset-bottom));
		gap: 6px;
		padding: 5px;
	}

	.floating-toggle {
		display: grid;
		place-items: center;
		width: 44px;
		height: 44px;
	}

	.floating-toggle svg {
		width: 19px;
		height: 19px;
	}

	.floating-links {
		display: none;
	}

	.floating-links.open {
		display: flex;
	}

	.floating a {
		width: 46px;
		height: 46px;
		box-shadow:
			0 7px 16px rgba(2, 18, 26, 0.3),
			0 0 0 2px rgba(255, 255, 255, 0.22);
	}

	.floating img {
		width: 22px;
		height: 22px;
	}
}
