@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
	--ink: #16201d;
	--muted: #6b756f;
	--paper: #fbfaf6;
	--panel: #ffffff;
	--sand: #d8ad67;
	--clay: #b85639;
	--teal: #176f70;
	--sky: #dbe9ea;
	--night: #0f2528;
	--line: rgba(22, 32, 29, 0.12);
	--shadow: 0 18px 50px rgba(15, 37, 40, 0.14);
}

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

@keyframes heroVideoSlide {
	0% {
		opacity: 0;
		transform: scale(1.03);
	}
	4% {
		opacity: 1;
	}
	18% {
		opacity: 1;
	}
	24% {
		opacity: 0;
	}
	100% {
		opacity: 0;
		transform: scale(1.18);
	}
}

@keyframes arrowBounce {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(5px);
	}
}

@keyframes pulseRing {
	0% {
		box-shadow: 0 0 0 0 rgba(32, 177, 90, 0.42), 0 16px 36px rgba(0, 0, 0, 0.2);
	}
	70% {
		box-shadow: 0 0 0 14px rgba(32, 177, 90, 0), 0 16px 36px rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(32, 177, 90, 0), 0 16px 36px rgba(0, 0, 0, 0.2);
	}
}

@keyframes shimmer {
	from {
		transform: translateX(-120%) skewX(-18deg);
	}
	to {
		transform: translateX(220%) skewX(-18deg);
	}
}

@keyframes modalIn {
	from {
		opacity: 0;
		transform: translateY(32px) scale(0.97);
		filter: blur(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
}

@keyframes overlayIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes modalOut {
	from {
		opacity: 1;
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
	to {
		opacity: 0;
		transform: translateY(32px) scale(0.97);
		filter: blur(4px);
	}
}

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

@keyframes btnPulse {
	0%,
	100% {
		box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
	}
	50% {
		box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
	}
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes btnGlow {
	0%,
	100% {
		box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
	}
	50% {
		box-shadow: 0 12px 50px rgba(37, 211, 102, 0.65), 0 2px 8px rgba(0, 0, 0, 0.3);
	}
}

@keyframes glowRotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	20% {
		transform: translateX(-7px);
	}
	40% {
		transform: translateX(7px);
	}
	60% {
		transform: translateX(-5px);
	}
	80% {
		transform: translateX(5px);
	}
}

@keyframes checkFlash {
	from {
		transform: scale(1);
	}
	50% {
		transform: scale(1.02);
	}
	to {
		transform: scale(1);
	}
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.atlas-home {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

body.atlas-home a {
	color: inherit;
	text-decoration: none;
}

body.atlas-home img,
body.atlas-home video {
	display: block;
	max-width: 100%;
}

body.booking-popup-open {
	overflow: hidden;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	padding: 20px clamp(18px, 4vw, 56px);
	color: #fff;
	transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	background: rgba(15, 37, 40, 0.94);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
	padding-block: 12px;
	backdrop-filter: blur(14px);
}

.brand {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	letter-spacing: 0;
}

.brand-logo {
	display: block;
	flex: 0 0 72px;
	width: 72px;
	height: 46px;
	background: transparent var(--logo-url) center / contain no-repeat;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.brand span:not(.brand-mark) {
	max-width: 180px;
	line-height: 1.1;
}

.brand-mark {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid currentColor;
	border-radius: 8px;
	font-size: 13px;
}

.main-nav {
	justify-self: center;
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	padding: 6px 8px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(14px);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.main-nav a {
	border-radius: 999px;
	padding: 10px 16px;
}

.main-nav a,
.header-cta {
	transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.main-nav a:hover {
	color: var(--sand);
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	padding: 3px;
	color: #fff;
	transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lang-switch:hover {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-1px);
}

.lang-switch a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 28px;
	border-radius: 999px;
	font-size: 12px;
	line-height: 1;
	color: #fff;
}

.lang-switch a.is-active {
	background: #fff;
	color: var(--night);
}

.lang-switch > span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.header-cta {
	justify-self: end;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	min-height: 56px;
	border: 1px solid #fff;
	border-radius: 999px;
	padding: 16px 24px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.header-cta::after {
	content: "\2192";
	display: inline-block;
	margin-left: 10px;
	font-size: 16px;
	line-height: 1;
}

.header-cta:hover {
	background: var(--sand);
	border-color: var(--sand);
	color: var(--night);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.nav-toggle span {
	width: 18px;
	height: 2px;
	background: currentColor;
}

.hero {
	position: relative;
	min-height: 100svh;
	display: grid;
	place-items: start center;
	overflow: hidden;
	padding: 100px 0 36px;
	color: #fff;
	background-color: var(--night);
	background-image: var(--hero-poster);
	background-size: cover;
	background-position: center;
}

.hero::after {
	content: "";
	position: absolute;
	left: -4vw;
	right: -4vw;
	bottom: -1px;
	z-index: 2;
	height: 58px;
	background: var(--paper);
	clip-path: polygon(0 54%, 40% 92%, 100% 48%, 100% 100%, 0 100%);
	pointer-events: none;
}

.hero-media,
.hero-photo {
	position: absolute;
	inset: 0;
}

.hero-media {
	overflow: hidden;
}

.hero-photo {
	inset: -4%;
	opacity: 0;
	background-image: var(--hero-slide);
	background-size: cover;
	background-position: center;
	animation: heroVideoSlide 30s ease-in-out infinite;
	animation-delay: var(--hero-delay, 0s);
	animation-fill-mode: both;
	will-change: opacity, transform;
}

.hero-shade {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 42%, rgba(8, 26, 28, 0.12), rgba(8, 26, 28, 0.54) 62%, rgba(8, 26, 28, 0.82)),
		linear-gradient(180deg, rgba(5, 18, 19, 0.6), rgba(5, 18, 19, 0.14) 45%, rgba(5, 18, 19, 0.7));
}

.hero-socials {
	position: absolute;
	top: 50%;
	right: clamp(24px, 8vw, 96px);
	z-index: 3;
	display: grid;
	gap: 14px;
	transform: translateY(-50%);
}

.hero-social {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	backdrop-filter: blur(10px);
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-social:hover {
	border-color: #fff;
	background: #fff;
	color: var(--night);
	transform: translateY(-3px);
}

.hero-inner {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: min(1180px, calc(100% - 36px));
	padding-top: clamp(18px, 3vh, 34px);
	text-align: center;
}

.eyebrow {
	margin: 0 0 10px;
	color: var(--sand);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.hero .eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 14px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 999px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 11px;
	backdrop-filter: blur(12px);
}

.hero h1 {
	max-width: 780px;
	margin: 0 auto;
	font-size: clamp(36px, 4.6vw, 66px);
	line-height: 1;
	letter-spacing: 0;
}

.hero-copy {
	max-width: 520px;
	margin: 10px auto 12px;
	font-size: clamp(15px, 1.35vw, 18px);
	line-height: 1.32;
	color: rgba(255, 255, 255, 0.9);
}

.hero-business {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 7px;
	max-width: 760px;
	margin: 0 auto 12px;
}

.hero-business span,
.hero-business a {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	padding: 7px 12px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
	backdrop-filter: blur(12px);
}

.hero-business strong {
	color: #27d96f;
	font-weight: 900;
}

.hero-business a {
	background: #25d366;
	border-color: rgba(255, 255, 255, 0.2);
	color: #092b18;
	transition: transform 180ms ease, background 180ms ease;
}

.hero-business a:hover {
	background: #1fbd59;
	transform: translateY(-2px);
}

.hero-reveal {
	opacity: 0;
	animation: heroIn 760ms cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-reveal-1 {
	animation-delay: 110ms;
}

.hero-reveal-2 {
	animation-delay: 210ms;
}

.hero-reveal-3 {
	animation-delay: 330ms;
}

.hero-reveal-4 {
	animation-delay: 450ms;
}

.hero-reveal-5 {
	animation-delay: 560ms;
}

.scroll-cue {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 24px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.scroll-cue::after {
	content: "\2193";
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	animation: arrowBounce 1.4s ease-in-out infinite;
}

.booking-panel {
	display: grid;
	grid-template-columns: minmax(145px, 1.05fr) 42px minmax(145px, 1.05fr) minmax(115px, 0.68fr) minmax(95px, 0.5fr) minmax(78px, 0.38fr) minmax(82px, 0.38fr) minmax(120px, 0.58fr);
	align-items: stretch;
	gap: 0;
	width: min(1120px, 100%);
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
	color: var(--ink);
}

.booking-panel label {
	display: grid;
	align-content: center;
	gap: 4px;
	min-width: 0;
	min-height: 62px;
	border-right: 1px solid var(--line);
	padding: 10px 12px;
	text-align: left;
}

.booking-panel span {
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
	color: rgba(22, 32, 29, 0.46);
}

.booking-panel select,
.booking-panel input {
	width: 100%;
	height: 24px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	padding: 0;
	transition: color 180ms ease;
}

.booking-panel .booking-number {
	text-align: center;
}

.booking-panel select:hover,
.booking-panel input:hover,
.booking-panel select:focus,
.booking-panel input:focus {
	color: var(--teal);
	outline: none;
}

.swap-button,
.search-button,
.button,
.to-top {
	border: 0;
	border-radius: 8px;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.swap-button {
	align-self: center;
	justify-self: center;
	width: 34px;
	height: 34px;
	border-radius: 999px;
	background: #fff;
	color: var(--teal);
	font-size: 16px;
	box-shadow: 0 8px 20px rgba(15, 37, 40, 0.14);
	transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.swap-button:hover {
	background: var(--teal);
	color: #fff;
	box-shadow: 0 14px 30px rgba(15, 37, 40, 0.22);
	transform: rotate(180deg);
}

.search-button,
.button {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 18px;
	background: var(--clay);
	color: #fff;
	transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.search-button::after,
.button::after {
	content: "";
	position: absolute;
	top: -40%;
	bottom: -40%;
	left: 0;
	width: 34%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
	transform: translateX(-120%) skewX(-18deg);
}

.search-button:hover::after,
.button:hover::after {
	animation: shimmer 620ms ease;
}

.search-button {
	height: 100%;
	min-height: 62px;
	border-radius: 0;
	background: #2f2f31;
	font-size: 16px;
	padding-inline: 20px;
}

.search-button:hover {
	background: #202022;
	box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
	transform: none;
}

.button:hover {
	background: #97452f;
	box-shadow: 0 12px 28px rgba(184, 86, 57, 0.24);
	transform: translateY(-2px);
}

.button-dark {
	background: var(--night);
}

.button-dark:hover {
	background: #17363a;
}

.button-light {
	background: #fff;
	color: var(--night);
}

.button-light:hover {
	background: var(--sky);
}

#vip-booking-popup {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: grid;
	place-items: center;
	padding: 20px;
	background: rgba(5, 10, 20, 0.72);
	-webkit-backdrop-filter: blur(12px) saturate(180%);
	backdrop-filter: blur(12px) saturate(180%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

#vip-booking-popup.is-visible {
	visibility: visible;
	pointer-events: auto;
	animation: overlayIn 0.4s ease forwards;
}

#vip-booking-popup.is-closing {
	opacity: 0;
	animation: none;
	transition: opacity 0.28s ease;
	pointer-events: none;
}

#vip-booking-modal {
	position: relative;
	width: 92vw;
	max-width: 560px;
	max-height: calc(100svh - 40px);
	overflow-y: auto;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	padding: 44px 40px 36px;
	background: rgba(255, 255, 255, 0.07);
	-webkit-backdrop-filter: blur(28px) saturate(160%);
	backdrop-filter: blur(28px) saturate(160%);
	box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	color: #fff;
	opacity: 0;
}

#vip-booking-popup.is-visible #vip-booking-modal {
	animation: modalIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#vip-booking-popup.is-closing #vip-booking-modal {
	animation: modalOut 0.3s ease forwards;
}

.booking-popup__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	width: 32px;
	height: 32px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.7);
	font: inherit;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.booking-popup__close:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

.booking-popup__header {
	text-align: center;
}

.booking-popup__badge {
	display: inline-flex;
	align-items: center;
	margin-bottom: 16px;
	border-radius: 999px;
	padding: 5px 16px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.booking-popup__header h2 {
	margin: 0 0 6px;
	color: #fff;
	font-family: "Playfair Display", Georgia, serif;
	font-size: 30px;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.booking-popup__header p {
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.45);
	font-family: "Inter", sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.6;
}

.popup-booking-form {
	margin-top: 0;
}

.popup-row {
	opacity: 0;
	transform: translateY(14px);
}

#vip-booking-popup.is-visible .popup-row:nth-child(1) {
	animation: popupRowIn 0.4s ease-out forwards;
	animation-delay: 0.15s;
}

#vip-booking-popup.is-visible .popup-row:nth-child(2) {
	animation: popupRowIn 0.4s ease-out forwards;
	animation-delay: 0.25s;
}

#vip-booking-popup.is-visible .popup-row:nth-child(3) {
	animation: popupRowIn 0.4s ease-out forwards;
	animation-delay: 0.35s;
}

#vip-booking-popup.is-visible .popup-row:nth-child(4) {
	animation: popupRowIn 0.4s ease-out forwards;
	animation-delay: 0.45s;
}

.popup-route-row,
.popup-form-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
}

.popup-field {
	position: relative;
	display: block;
	flex: 1 1 0;
	min-width: 0;
}

.popup-label {
	display: block;
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.45);
	font-family: "Inter", sans-serif;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1.25;
	text-transform: uppercase;
}

#vip-booking-modal .label-icon {
	display: inline-flex;
	align-items: center;
	vertical-align: middle;
	margin-right: 6px;
}

#vip-booking-modal .label-icon svg,
#vip-booking-modal .btn-icon svg,
#vip-booking-modal .btn-arrow svg,
#vip-booking-modal .popup-swap-button svg,
#vip-booking-modal .stepper button svg {
	display: block;
}

.booking-input {
	width: 100%;
	min-height: 45px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.01em;
	padding: 11px 14px;
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.booking-input.booking-number {
	text-align: center;
}

select.booking-input {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5l5 5 5-5' fill='none' stroke='rgba(255,255,255,0.85)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: right 14px center;
	background-repeat: no-repeat;
	background-size: 14px 14px;
	padding-right: 40px;
}

.booking-input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.booking-input:invalid {
	color: rgba(255, 255, 255, 0.4);
}

.booking-input option {
	background: #1a2535;
	color: #fff;
}

.booking-input:focus {
	border-color: rgba(37, 211, 102, 0.7);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
	outline: none;
}

input[type="date"].booking-input,
input[type="time"].booking-input {
	color-scheme: dark;
}

.popup-swap-button {
	flex: 0 0 36px;
	align-self: flex-end;
	width: 36px;
	height: 36px;
	margin: 0 0 2px;
	border: 1px solid rgba(37, 211, 102, 0.3);
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.15);
	color: #25d366;
	font: inherit;
	font-size: 16px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.3s ease;
}

.popup-swap-button:hover {
	background: rgba(37, 211, 102, 0.25);
}

.popup-swap-button.spinning {
	transform: rotate(180deg);
}

.stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	min-height: 45px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	padding: 6px 10px;
	background: rgba(255, 255, 255, 0.08);
	transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.stepper:focus-within {
	border-color: rgba(37, 211, 102, 0.7);
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.stepper button {
	display: grid;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font: inherit;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.1s ease;
}

.stepper button:hover {
	background: rgba(255, 255, 255, 0.18);
}

.stepper button:active {
	transform: scale(0.92);
}

.stepper input {
	width: 54px;
	min-width: 28px;
	border: 0;
	background: transparent;
	color: #fff;
	font-family: "Playfair Display", serif;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
	outline: none;
	-webkit-appearance: textfield;
	appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
}

.booking-divider {
	height: 0;
	margin: 24px 0 20px;
	border: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: transparent;
}

#vip-whatsapp-btn {
	position: relative;
	overflow: hidden;
	width: 100%;
	border: 0;
	border-radius: 16px;
	padding: 17px 24px;
	background: linear-gradient(135deg, #25d366 0%, #0d9e50 50%, #075e54 100%);
	background-size: 200% 200%;
	color: #fff;
	cursor: pointer;
	animation: gradientShift 4s ease infinite, btnGlow 3s ease-in-out infinite;
}

#vip-whatsapp-btn .btn-bg-glow {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
	pointer-events: none;
	animation: glowRotate 6s linear infinite;
}

#vip-whatsapp-btn .btn-content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

#vip-whatsapp-btn .btn-icon,
#vip-whatsapp-btn .btn-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
}

#vip-whatsapp-btn .btn-text {
	font-family: "Inter", sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
}

#vip-whatsapp-btn .btn-arrow {
	transition: transform 0.2s ease;
}

#vip-whatsapp-btn:hover {
	filter: brightness(1.08);
	box-shadow: 0 14px 40px rgba(37, 211, 102, 0.5);
	transform: translateY(-2px);
}

#vip-whatsapp-btn:hover .btn-arrow {
	transform: translateX(3px);
}

#vip-whatsapp-btn:active {
	transform: translateY(0) scale(0.98);
}

#vip-whatsapp-btn.is-success {
	background: linear-gradient(135deg, #16a34a, #15803d);
	animation: checkFlash 0.4s ease;
}

.popup-field.field-error .booking-input,
.popup-field.field-error .stepper {
	border-color: rgba(239, 68, 68, 0.7) !important;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
	animation: shake 0.4s ease;
}

.field-error-message {
	display: block;
	margin-top: 4px;
	color: #f87171;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	text-align: left;
	text-transform: none;
}

.vertical-scroll {
	position: absolute;
	right: clamp(18px, 4vw, 56px);
	bottom: 34px;
	z-index: 3;
	writing-mode: vertical-rl;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.72);
}

.section {
	width: min(1180px, calc(100% - 36px));
	margin: 0 auto;
	padding: clamp(64px, 9vw, 118px) 0;
}

.services {
	position: relative;
	width: 100%;
	max-width: none;
	isolation: isolate;
	padding-inline: max(18px, calc((100vw - 1180px) / 2));
	background: #fbfaf6;
}

.services::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(circle at 50% 20%, rgba(216, 173, 103, 0.14), transparent 36%);
	pointer-events: none;
}

.services .section-heading,
.services .service-grid {
	position: relative;
	z-index: 1;
}

.services .section-heading {
	max-width: none;
	margin: 0 auto 48px;
	text-align: center;
}

.services .eyebrow {
	color: var(--clay);
	font-size: 24px;
	font-weight: 500;
	text-transform: none;
}

.services .section-heading h2 {
	font-size: clamp(28px, 3.2vw, 38px);
}

.section-heading {
	max-width: 730px;
	margin-bottom: 34px;
}

.section-heading h2,
.faq-intro h2,
.destination-copy h2,
.story-band h2 {
	margin: 0;
	font-size: clamp(34px, 5vw, 62px);
	line-height: 1.02;
	letter-spacing: 0;
}

.section-heading.split {
	max-width: none;
	display: grid;
	grid-template-columns: 1fr minmax(250px, 420px);
	align-items: end;
	gap: 28px;
}

.section-heading.split p:last-child {
	margin: 0;
	color: var(--muted);
	font-size: 18px;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: start;
	gap: clamp(18px, 3vw, 36px);
}

.service-tile {
	position: relative;
	display: grid;
	justify-items: center;
	overflow: visible;
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	text-align: center;
	box-shadow: none;
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-tile img,
.tour-media img,
.activity-card img,
.destination-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 320ms ease;
}

.service-image {
	display: block;
	width: min(100%, 190px);
	aspect-ratio: 0.68;
	overflow: hidden;
	border-radius: 999px;
	box-shadow: 0 22px 44px rgba(15, 37, 40, 0.14);
	background: var(--night);
}

.service-icon {
	display: grid;
	width: 58px;
	height: 58px;
	place-items: center;
	margin-top: -30px;
	border: 8px solid #fbfaf6;
	border-radius: 999px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(15, 37, 40, 0.14);
	font-size: 22px;
	line-height: 1;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-title {
	display: block;
	margin-top: 12px;
	font-size: 16px;
	font-weight: 900;
	color: var(--ink);
	transition: transform 220ms ease;
}

.service-tile:hover img,
.tour-card:hover img,
.activity-card:hover img,
.destination-card:hover img {
	transform: scale(1.05);
}

.service-tile:hover {
	transform: translateY(-8px);
}

.service-tile:hover .service-icon {
	box-shadow: 0 16px 32px rgba(15, 37, 40, 0.18);
	transform: translateY(-3px);
}

.service-tile:hover .service-title {
	transform: translateY(-4px);
}

.tours {
	width: 100%;
	max-width: none;
	background: #fff;
	padding-inline: max(18px, calc((100vw - 1180px) / 2));
}

.tour-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.tour-card,
.activity-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--panel);
	box-shadow: 0 12px 32px rgba(15, 37, 40, 0.08);
	transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.tour-card:hover,
.activity-card:hover {
	border-color: rgba(184, 86, 57, 0.28);
	box-shadow: 0 26px 58px rgba(15, 37, 40, 0.15);
	transform: translateY(-8px);
}

.tour-media {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.badge {
	position: absolute;
	top: 14px;
	right: 14px;
	border-radius: 999px;
	background: var(--sand);
	color: var(--ink);
	padding: 7px 11px;
	font-size: 12px;
	font-weight: 900;
}

.tour-body,
.activity-body {
	padding: 20px;
}

.tour-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.tour-meta span,
.tour-tags span {
	border-radius: 999px;
	background: var(--sky);
	color: var(--teal);
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 900;
}

.tour-body h3,
.activity-body h3,
.destination-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	line-height: 1.12;
}

.tour-body p,
.activity-body p,
.faq-intro p,
.question-cta p,
.center-cta p,
.destination-copy p,
.story-band p,
.footer-brand p,
.site-footer p {
	color: var(--muted);
}

.tour-tags {
	display: flex;
	gap: 8px;
	margin: 18px 0;
}

.tour-footer {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	border-top: 1px solid var(--line);
	padding-top: 18px;
}

.why {
	position: relative;
	width: 100%;
	max-width: none;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(70px, 8vw, 104px) max(18px, calc((100vw - 1180px) / 2)) clamp(82px, 9vw, 128px);
	background: #f1ede8;
	text-align: center;
}

.why::before {
	content: "";
	position: absolute;
	right: -8vw;
	bottom: -10vw;
	z-index: -1;
	width: min(980px, 74vw);
	aspect-ratio: 1.8;
	opacity: 0.42;
	background-image:
		radial-gradient(circle, rgba(127, 172, 188, 0.34) 0 2px, transparent 2.6px),
		radial-gradient(circle, rgba(224, 132, 73, 0.18) 0 2px, transparent 2.6px);
	background-position: 0 0, 34px 58px;
	background-size: 14px 14px, 18px 18px;
	clip-path: polygon(0 38%, 18% 24%, 31% 45%, 48% 30%, 66% 46%, 82% 28%, 100% 42%, 100% 100%, 0 100%);
}

.why .section-heading {
	max-width: 780px;
	margin: 0 auto clamp(52px, 6vw, 84px);
}

.why .eyebrow {
	margin-bottom: 14px;
	color: #e18449;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 500;
	text-transform: none;
}

.why .section-heading h2 {
	font-size: clamp(34px, 4.2vw, 50px);
}

.reason-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(24px, 4vw, 54px);
}

.reason {
	display: grid;
	justify-items: center;
	align-content: start;
	min-width: 0;
	color: var(--ink);
	transition: transform 220ms ease;
}

.reason-blob {
	display: grid;
	width: min(174px, 100%);
	aspect-ratio: 1.18;
	place-items: center;
	margin-bottom: 28px;
	border-radius: 46% 54% 58% 42% / 50% 42% 58% 50%;
	background: rgba(255, 255, 255, 0.54);
	box-shadow: 0 24px 60px rgba(15, 37, 40, 0.04);
	transition: transform 220ms ease, border-radius 220ms ease, box-shadow 220ms ease;
}

.reason-icon {
	width: 72px;
	height: 72px;
	color: #20345e;
}

.reason-accent {
	color: #df8049;
	stroke: currentColor;
}

.reason h3 {
	margin: 0 0 18px;
	font-size: 25px;
	line-height: 1.1;
}

.reason p {
	max-width: 270px;
	margin: 0 auto;
	color: rgba(22, 32, 29, 0.62);
	font-size: 17px;
	line-height: 1.45;
}

.reason:hover {
	transform: translateY(-6px);
}

.reason:hover .reason-blob {
	border-radius: 58% 42% 46% 54% / 42% 58% 50% 50%;
	box-shadow: 0 28px 70px rgba(15, 37, 40, 0.08);
	transform: translateY(-4px);
}

.faq {
	position: relative;
	width: 100%;
	max-width: none;
	display: block;
	isolation: isolate;
	overflow: hidden;
	background: #f1ede8;
	color: var(--ink);
	padding: clamp(70px, 8vw, 100px) max(18px, calc((100vw - 1180px) / 2)) clamp(76px, 9vw, 120px);
}

.faq::before,
.faq::after {
	content: "";
	position: absolute;
	z-index: -1;
	opacity: 0.38;
	background-image: radial-gradient(circle, rgba(127, 172, 188, 0.34) 0 2px, transparent 2.7px);
	background-size: 14px 14px;
	pointer-events: none;
}

.faq::before {
	top: -110px;
	right: -56px;
	width: min(520px, 42vw);
	aspect-ratio: 1.15;
	clip-path: polygon(28% 0, 82% 8%, 100% 46%, 78% 100%, 28% 82%, 0 38%);
}

.faq::after {
	left: -86px;
	bottom: -90px;
	width: min(430px, 40vw);
	aspect-ratio: 1.4;
	clip-path: polygon(0 8%, 78% 0, 100% 68%, 34% 100%);
}

.faq-intro {
	max-width: 760px;
	margin: 0 auto clamp(44px, 5vw, 64px);
	text-align: center;
}

.faq-intro .eyebrow {
	margin-bottom: 12px;
	color: #e18449;
	font-size: clamp(24px, 3vw, 34px);
	font-weight: 500;
	text-transform: none;
}

.faq-intro h2 {
	font-size: clamp(34px, 4.2vw, 50px);
}

.faq-intro p {
	margin-inline: auto;
	color: #6d7788;
	font-size: 19px;
	line-height: 1.55;
}

.faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 32px;
}

.faq-item {
	border: 1px solid rgba(22, 32, 29, 0.04);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(15, 37, 40, 0.07);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-item:hover {
	border-color: rgba(224, 132, 73, 0.2);
	box-shadow: 0 18px 42px rgba(15, 37, 40, 0.1);
	transform: translateY(-4px);
}

.faq-item button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 106px;
	border: 0;
	background: transparent;
	color: var(--ink);
	padding: 24px 28px;
	font: inherit;
	font-size: 19px;
	font-weight: 900;
	text-align: left;
	cursor: pointer;
}

.faq-icon {
	display: grid;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	place-items: center;
	border-radius: 999px;
	background: #f8eee8;
	color: #e18449;
	font-size: 22px;
	line-height: 1;
	transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item button[aria-expanded="true"] .faq-icon {
	background: #e18449;
	color: #fff;
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 28px 24px;
}

.faq-answer p {
	margin: 0;
	color: #6d7788;
	font-size: 16px;
	line-height: 1.55;
}

.question-cta {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 24px;
	margin-top: clamp(42px, 5vw, 72px);
	border: 1px solid rgba(22, 32, 29, 0.04);
	border-radius: 20px;
	padding: 36px 48px;
	background: #fff;
	box-shadow: 0 24px 58px rgba(15, 37, 40, 0.08);
	text-align: left;
}

.question-cta h3 {
	margin: 0 0 12px;
	font-size: clamp(28px, 3vw, 38px);
}

.question-cta p {
	margin: 0;
	color: #6d7788;
	font-size: 17px;
}

.faq-whatsapp {
	gap: 10px;
	white-space: nowrap;
	background: #e18449;
}

.faq-whatsapp:hover {
	background: #c86f39;
}

.faq-whatsapp .whatsapp-icon {
	width: 20px;
	height: 20px;
	flex-basis: 20px;
}

.activity-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.activity-card img {
	height: 270px;
}

.center-cta {
	margin-top: 36px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	border-top: 1px solid var(--line);
	padding-top: 28px;
}

.center-cta p {
	max-width: 620px;
	margin: 0;
	font-size: 18px;
}

.destinations {
	display: grid;
	grid-template-columns: minmax(260px, 360px) 1fr;
	gap: clamp(28px, 6vw, 72px);
	padding: clamp(64px, 9vw, 118px) max(18px, calc((100vw - 1180px) / 2));
	background: #e8f0ee;
}

.destination-copy {
	align-self: center;
}

.destination-copy p {
	font-size: 18px;
}

.text-link {
	display: inline-flex;
	margin-top: 12px;
	color: var(--teal);
	font-weight: 900;
}

.destination-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.destination-card {
	position: relative;
	min-height: 340px;
	overflow: hidden;
	border-radius: 8px;
	background: var(--night);
	color: #fff;
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.destination-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 34%, rgba(15, 37, 40, 0.8));
}

.destination-card h3 {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	z-index: 1;
	color: #fff;
	transition: transform 220ms ease;
}

.destination-card:hover {
	box-shadow: 0 26px 58px rgba(15, 37, 40, 0.2);
	transform: translateY(-8px);
}

.destination-card:hover h3 {
	transform: translateY(-5px);
}

.story-band {
	display: grid;
	grid-template-columns: 1fr minmax(260px, 410px) auto;
	align-items: center;
	gap: 34px;
	padding: clamp(44px, 7vw, 78px) max(18px, calc((100vw - 1180px) / 2));
	background: var(--clay);
	color: #fff;
}

.story-band .eyebrow,
.story-band p {
	color: rgba(255, 255, 255, 0.84);
}

.story-band h2 {
	font-size: clamp(28px, 4vw, 48px);
}

.story-actions {
	display: grid;
	gap: 10px;
	min-width: 160px;
}

.site-footer {
	position: relative;
	overflow: hidden;
	padding: 92px max(18px, calc((100vw - 1180px) / 2)) 0;
	background:
		linear-gradient(135deg, rgba(224, 132, 73, 0.96), rgba(151, 73, 42, 0.98)),
		#b85639;
	color: #fff;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 70px;
	background: #fbfaf6;
	clip-path: polygon(0 0, 100% 0, 100% 72%, 0 28%);
}

.site-footer::after {
	content: "";
	position: absolute;
	inset: 70px 0 auto;
	height: 220px;
	background:
		radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.13), transparent 30%),
		linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 54%);
	pointer-events: none;
}

.footer-cta,
.footer-main,
.footer-bottom {
	position: relative;
	z-index: 1;
}

.footer-cta {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 28px;
	margin-bottom: 54px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 18px;
	padding: 30px;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 24px 60px rgba(76, 34, 19, 0.18);
	backdrop-filter: blur(12px);
}

.footer-cta .eyebrow {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.72);
}

.footer-cta h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.05;
}

.footer-cta p {
	max-width: 680px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	line-height: 1.55;
}

.footer-main {
	display: grid;
	grid-template-columns: minmax(260px, 1.25fr) minmax(170px, 0.7fr) minmax(250px, 1fr) minmax(160px, 0.6fr);
	gap: clamp(28px, 5vw, 62px);
	padding-bottom: 62px;
}

.site-footer h2 {
	position: relative;
	margin: 0 0 24px;
	font-size: 18px;
	text-transform: uppercase;
}

.site-footer h2::after {
	content: "";
	display: block;
	width: 32px;
	height: 2px;
	margin-top: 9px;
	background: rgba(255, 255, 255, 0.54);
}

.site-footer a:not(.button):not(.brand) {
	display: block;
	margin: 12px 0;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 800;
	transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:not(.button):not(.brand):hover {
	color: #fff;
	transform: translateX(4px);
}

.site-footer .brand {
	margin-bottom: 16px;
}

.footer-brand {
	max-width: 390px;
}

.footer-brand p,
.footer-contact-card p {
	color: rgba(255, 255, 255, 0.84);
	line-height: 1.65;
}

.footer-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 22px 0;
}

.footer-pills span {
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-contact-card {
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	padding: 24px;
	background: rgba(111, 47, 25, 0.22);
}

.footer-contact-card p {
	display: grid;
	grid-template-columns: 28px 1fr;
	gap: 10px;
	margin: 14px 0;
}

.contact-icon {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 14px;
}

.footer-social-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-social {
	display: grid !important;
	width: 44px;
	height: 44px;
	place-items: center;
	margin: 0 !important;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff !important;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social:hover {
	border-color: rgba(255, 255, 255, 0.62);
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px) !important;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100vw;
	margin-left: 50%;
	padding: 22px max(18px, calc((100vw - 1180px) / 2));
	background: rgba(86, 37, 20, 0.3);
	transform: translateX(-50%);
}

.footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 13px;
}

.footer-bottom div {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.footer-bottom a:not(.button):not(.brand) {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
}

.media-credit {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.58) !important;
}

.social-icon {
	display: block;
	width: 17px;
	height: 17px;
}

.whatsapp-icon {
	display: block;
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

.whatsapp-button {
	gap: 9px;
	background: #25d366;
	color: #082515;
}

.whatsapp-button:hover {
	background: #1fbd59;
	color: #082515;
}

.floating-whatsapp {
	position: fixed;
	left: 32px;
	right: auto;
	bottom: 28px;
	z-index: 30;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	padding: 0;
	font-weight: 900;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
	animation: pulseRing 2.6s ease-out infinite;
	transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp .whatsapp-icon {
	width: 34px;
	height: 34px;
	flex-basis: 34px;
}

.floating-whatsapp span {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.floating-whatsapp:hover {
	background: #1fbd59;
	transform: translateY(-3px);
}

.to-top {
	position: fixed;
	right: 18px;
	bottom: 82px;
	z-index: 29;
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	background: var(--night);
	color: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 160ms ease;
}

.to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 700ms cubic-bezier(0.19, 1, 0.22, 1), transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
	transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.service-tile.reveal.is-visible:hover,
.tour-card.reveal.is-visible:hover,
.activity-card.reveal.is-visible:hover,
.destination-card.reveal.is-visible:hover {
	transform: translateY(-8px);
}

.reason.reveal.is-visible:hover {
	transform: translateY(-6px);
}

.faq-item.reveal.is-visible:hover {
	transform: translateY(-4px);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 1ms !important;
	}

	.reveal,
	.hero-reveal {
		opacity: 1;
		transform: none;
	}

	.hero-photo {
		animation: none !important;
		opacity: 0;
		transform: none;
	}

	.hero-photo:first-child {
		opacity: 1;
	}
}

@media (max-width: 1080px) {
	.site-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 16px;
	}

	.nav-toggle {
		display: inline-flex;
		margin-left: auto;
		justify-self: end;
	}

	.main-nav {
		position: fixed;
		top: 70px;
		left: 18px;
		right: 18px;
		display: none;
		grid-auto-flow: row;
		gap: 0;
		padding: 14px;
		border-radius: 8px;
		background: rgba(15, 37, 40, 0.98);
		box-shadow: var(--shadow);
	}

	.main-nav.is-open {
		display: grid;
	}

	.main-nav a {
		padding: 12px;
	}

	.main-nav .lang-switch {
		justify-self: start;
		margin: 8px 12px 4px;
	}

	.main-nav .lang-switch a {
		padding: 0;
	}

	.header-cta {
		display: none;
	}

	.booking-panel {
		grid-template-columns: 1fr 46px 1fr;
	}

	.booking-panel label:nth-of-type(3),
	.booking-panel label:nth-of-type(4),
	.booking-panel label:nth-of-type(5),
	.booking-panel label:nth-of-type(6) {
		grid-column: span 1;
	}

	.search-button {
		grid-column: span 2;
	}

	.hero-socials {
		right: 18px;
	}

	.service-grid,
	.reason-grid,
	.destination-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tour-grid,
	.activity-grid,
	.faq-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.faq,
	.destinations,
	.story-band,
	.site-footer {
		grid-template-columns: 1fr;
	}

	.footer-cta,
	.footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.footer-cta {
		align-items: start;
	}

	.faq-intro {
		position: static;
	}

	.question-cta {
		grid-column: auto;
	}
}

@media (max-width: 768px) {
	#vip-booking-popup {
		align-items: center;
		justify-items: center;
		padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
	}

	#vip-booking-modal {
		width: 92vw;
		max-width: 420px;
		max-height: 85vh;
		max-height: 85svh;
		overflow-y: auto;
		border-radius: 18px;
		padding: 18px 12px 12px;
		scrollbar-width: thin;
	}

	.booking-popup__close {
		top: 10px;
		right: 10px;
		width: 36px;
		height: 36px;
		font-size: 18px;
	}

	.booking-popup__badge {
		margin-bottom: 6px;
		padding: 3px 10px;
		font-size: 8px;
		letter-spacing: 0.1em;
	}

	.booking-popup__header h2 {
		max-width: calc(100% - 48px);
		margin: 0 auto 3px;
		font-size: 20px;
		line-height: 1.02;
	}

	.booking-popup__header p {
		max-width: 300px;
		margin: 0 auto 9px;
		font-size: 10.5px;
		line-height: 1.28;
	}

	.popup-booking-form {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.popup-route-row,
	.popup-form-row {
		width: 100%;
		max-width: 320px;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		margin-bottom: 7px;
	}

	.popup-field {
		width: 100%;
		max-width: 320px;
		flex: 0 0 auto;
	}

	.popup-label {
		width: 100%;
		margin-bottom: 3px;
		font-size: 8px;
		letter-spacing: 0.1em;
		text-align: left;
	}

	#vip-booking-modal .label-icon {
		margin-right: 4px;
	}

	.booking-input {
		width: 100%;
		max-width: 320px;
		min-height: 42px;
		border-radius: 10px;
		padding: 8px 12px;
		font-size: 12px;
	}

	select.booking-input {
		background-position: right 12px center;
		padding-right: 34px;
	}

	.popup-swap-button {
		flex-basis: 28px;
		align-self: center;
		width: 28px;
		height: 28px;
		margin: -2px auto 0;
		font-size: 12px;
	}

	.stepper {
		width: 100%;
		max-width: 320px;
		min-height: 42px;
		border-radius: 10px;
		padding: 4px 8px;
	}

	.stepper button {
		flex-basis: 24px;
		width: 24px;
		height: 24px;
		border-radius: 7px;
	}

	.stepper input {
		width: 38px;
		font-size: 15px;
	}

	.popup-actions {
		position: sticky;
		bottom: -12px;
		z-index: 2;
		width: 100%;
		max-width: 320px;
		margin: 1px auto 0;
		padding: 5px 0 0;
		background: rgba(16, 27, 35, 0.82);
		backdrop-filter: blur(12px);
	}

	.booking-divider {
		display: none;
	}

	#vip-whatsapp-btn {
		width: 100%;
		max-width: 320px;
		min-height: 46px;
		border-radius: 12px;
		padding: 0 12px;
	}

	#vip-whatsapp-btn .btn-content {
		gap: 8px;
	}

	#vip-whatsapp-btn .btn-text {
		font-size: 13px;
	}

	#vip-whatsapp-btn .btn-icon svg {
		width: 16px;
		height: 16px;
	}

	#vip-whatsapp-btn .btn-arrow svg {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 768px) {
	.site-header {
		padding: 14px 16px;
	}

	.brand-mark {
		width: 36px;
		height: 36px;
	}

	.brand-logo {
		flex-basis: 60px;
		width: 60px;
		height: 38px;
	}

	.brand span:not(.brand-mark) {
		max-width: 120px;
		font-size: 13px;
	}

	.hero {
		min-height: 100svh;
		place-items: start center;
		padding: 72px 0 14px;
	}

	.hero::after {
		height: 24px;
	}

	.hero-inner {
		width: calc(100% - 24px);
		padding-top: 14px;
	}

	.hero .eyebrow {
		margin-bottom: 6px;
		padding: 4px 10px;
		font-size: 9px;
	}

	.hero h1 {
		max-width: 350px;
		font-size: clamp(25px, 7.4vw, 34px);
		line-height: 1.02;
	}

	.hero-copy {
		max-width: 286px;
		margin: 6px auto 7px;
		font-size: 12px;
		line-height: 1.25;
	}

	.hero-business {
		gap: 4px;
		max-width: 352px;
		margin-bottom: 8px;
	}

	.hero-business span,
	.hero-business a {
		min-height: 22px;
		padding: 4px 7px;
		font-size: 9.5px;
	}

	.booking-panel {
		grid-template-columns: 1fr;
		width: min(360px, 100%);
		border-radius: 10px;
	}

	.booking-panel label {
		min-height: 42px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
		padding: 5px 10px;
	}

	.booking-panel label:nth-of-type(1) {
		grid-column: 1;
		grid-row: auto;
		border-right: 0;
	}

	.booking-panel label:nth-of-type(2) {
		grid-column: 1;
		grid-row: auto;
	}

	.booking-panel label:nth-of-type(3) {
		grid-column: 1;
		grid-row: auto;
		border-right: 0;
	}

	.booking-panel label:nth-of-type(4) {
		grid-column: 1;
		grid-row: auto;
	}

	.booking-panel span {
		font-size: 8.5px;
	}

	.booking-panel select,
	.booking-panel input {
		height: 20px;
		font-size: 11.5px;
	}

	.swap-button {
		grid-column: 1;
		grid-row: auto;
		z-index: 2;
		width: 26px;
		height: 26px;
		margin: -2px auto;
		justify-self: center;
		font-size: 13px;
	}

	.search-button {
		grid-column: 1;
		grid-row: auto;
		min-height: 42px;
		border-radius: 0 0 10px 10px;
		font-size: 13px;
	}

	.hero-socials {
		display: none;
	}

	.vertical-scroll {
		display: none;
	}

	.section,
	.tours,
	.faq,
	.destinations,
	.story-band,
	.site-footer {
		padding-block: 58px;
	}

	.site-footer {
		padding-top: 76px;
		padding-bottom: 0;
	}

	.footer-cta,
	.footer-main,
	.footer-bottom {
		grid-template-columns: 1fr;
	}

	.footer-cta {
		padding: 24px;
	}

	.footer-main {
		padding-bottom: 42px;
	}

	.footer-bottom {
		display: grid;
		align-items: start;
	}

	.section-heading.split,
	.center-cta {
		display: block;
	}

	.service-grid,
	.tour-grid,
	.reason-grid,
	.activity-grid,
	.destination-grid,
	.faq-list {
		grid-template-columns: 1fr;
	}

	.faq-intro p {
		font-size: 16px;
	}

	.faq-item button {
		min-height: 84px;
		padding: 20px;
		font-size: 17px;
	}

	.question-cta {
		grid-template-columns: 1fr;
		padding: 26px 22px;
		text-align: left;
	}

	.faq-whatsapp {
		width: 100%;
		white-space: normal;
	}

	.service-tile {
		min-height: 0;
	}

	.service-image {
		width: min(210px, 74vw);
	}

	.tour-media,
	.activity-card img {
		height: 220px;
	}

	.tour-footer,
	.center-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.destination-card {
		min-height: 260px;
	}

	.floating-whatsapp {
		left: 18px;
		right: auto;
		bottom: 18px;
		width: 56px;
		height: 56px;
	}
}
