.hero {
	position: relative;
	min-height: var(--hero-min-height-desktop, 100svh);
	isolation: isolate;
	background: var(--color-dark);
	color: var(--hero-text-color, #fff);
	overflow: visible;
	position: relative;
    z-index: 2;
}

.hero__slides,
.hero__slide {
	position: absolute;
	inset: 0;
}

.hero__slide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 720ms ease;
}

.hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}

.hero__background,
.hero__background img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.hero__background img {
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
}

.hero__shade {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero__shade--solid {
	background: rgba(9, 16, 18, var(--slide-overlay-opacity, var(--hero-overlay-opacity, 0.34)));
}

.hero__shade--left {
	background: var(--hero-left-gradient, linear-gradient(90deg, rgba(10, 18, 23, 0.72) 0%, rgba(10, 18, 23, 0.3) 45%, rgba(10, 18, 23, 0.05) 75%));
}

.hero__shade--bottom {
	background:
		linear-gradient(180deg, rgba(10, 18, 23, 0) 54%, rgba(10, 18, 23, 0.58) 82%, rgba(10, 18, 23, 0.86) 100%),
		linear-gradient(0deg, rgba(10, 18, 23, 0.26), rgba(10, 18, 23, 0));
}

.hero__container {
	position: relative;
	z-index: 3;
	display: flex;
	width: 100%;
	max-width: var(--container-width);
	min-height: var(--hero-min-height-desktop, 100svh);
	margin: 0 auto;
	padding: clamp(150px, 18vh, 245px) var(--container-inline) clamp(230px, 24vh, 300px);
	align-items: center;
	overflow: visible;
}

.hero__content {
	width: min(690px, 100%);
	min-width: 0;
}

.hero__slide--center .hero__container {
	justify-content: center;
	text-align: center;
}

.hero__slide--right .hero__container {
	justify-content: flex-end;
}

.hero__eyebrow {
	margin: 0 0 10px;
	color: var(--color-gold);
	font-family: var(--font-sans);
	font-size: clamp(12px, 1.1vw, 16px);
	font-weight: 700;
	letter-spacing: 0.31em;
	line-height: 1.25;
	text-transform: uppercase;
}

.hero__title {
	margin: 0;
	color: #fff;
	font-family: var(--font-serif);
	font-size: clamp(54px, 7vw, 112px);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 0.9;
	text-wrap: balance;
}

.hero__subtitle {
	max-width: 720px;
	margin: clamp(8px, 1.2vw, 14px) 0 0;
	color: rgba(255, 255, 255, 0.94);
	font-family: var(--font-serif);
	font-size: clamp(20px, 1.9vw, 30px);
	font-weight: 400;
	line-height: 1.22;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero__features {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: clamp(22px, 2.4vw, 42px);
	width: auto;
	max-width: min(100%, 640px);
	margin: clamp(28px, 4vw, 48px) 0 0;
	padding: 0;
	overflow: visible;
	list-style: none;
}

.hero__features::-webkit-scrollbar {
	display: none;
}

.hero__feature {
	display: inline-flex;
	width: 92px;
	min-width: 92px;
	flex: 0 0 92px;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	color: #fff;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.18;
	text-align: center;
	text-decoration: none;
	cursor: default;
	user-select: none;
}

.hero__feature span {
	display: block;
	width: 100%;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.hero__feature img {
	width: 42px;
	height: 42px;
	object-fit: contain;
	filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: clamp(28px, 4vw, 48px);
}

.hero__button,
.hero-booking__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 50px;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero__button {
	min-width: min(100%, 312px);
	height: 50px;
	padding: 0 22px 0 28px;
	border: 1px solid transparent;
}

.hero__button svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero__button--primary {
	border: 1px solid var(--color-gold);
	background: var(--color-gold);
	color: var(--color-light) !important;
}

.hero__button--secondary {
	border: 1px solid rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hero__button--primary:link,
.hero__button--primary:visited,
.hero__button--primary:hover,
.hero__button--primary:focus,
.hero__button--primary:active {
	color: var(--color-dark);
	text-decoration: none;
}

.hero__button--secondary:link,
.hero__button--secondary:visited,
.hero__button--secondary:hover,
.hero__button--secondary:focus,
.hero__button--secondary:active {
	color: #fff;
	text-decoration: none;
}

.hero__button:hover,
.hero-booking__submit:hover {
	transform: translateY(-1px);
}

.hero__button--primary:hover,
.hero-booking__submit:hover {
	background: var(--color-gold-bright);
}

.hero__button--secondary:hover {
	background: rgba(255, 255, 255, 0.12);
}

.hero__pagination {
	position: absolute;
	left: max(var(--container-inline), calc((100vw - var(--container-width)) / 2 + var(--container-inline)));
	bottom: clamp(122px, 17vh, 155px);
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 16px;
	color: #fff;
	font-family: var(--font-sans);
}

.hero__counter {
	min-width: 62px;
	font-size: 16px;
	font-weight: 500;
}

.hero__progress {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hero__progress span {
	display: block;
	width: clamp(70px, 7.4vw, 106px);
	height: 2px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
}

.hero__progress span.is-active {
	height: 5px;
	background: #fff;
}

.hero__arrow {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	background: rgba(17, 27, 33, 0.28);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hero__arrow svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero__arrow--prev svg {
	transform: rotate(180deg);
}

.hero__pagination--single .hero__progress {
	width: 106px;
}

.hero-booking {
    position: absolute;
    left: max(20px, calc((100vw - 1280px) / 2 + 20px));
    right: max(20px, calc((100vw - 1280px) / 2 + 20px));
    bottom: 0;
    transform: translateY(50%);
    z-index: 10;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(18, 24, 25, 0.76);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-booking__title {
	margin: 0 0 14px;
	color: var(--color-light);
	font-size: 16px;
	font-weight: 800;
}

.hero-booking__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(140px, 1fr)) minmax(190px, 250px);
	align-items: stretch;
	gap: 0;
}

.hero-booking__field {
	position: relative;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    align-items: center;
    min-height: 64px;
    padding: 0 clamp(12px, 1.6vw, 24px);
    color: var(--color-light);
}

.hero-booking__field + .hero-booking__field {
	border-left: 1px solid rgba(216, 168, 82, 0.58);
}

.hero-booking__icon {
	grid-column: 1;
    grid-row: 1 / 3;
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	color: var(--color-gold-bright);
}

.hero-booking__label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
}

.hero-booking__field select {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}

.hero-booking__field {
    row-gap: 0;
}

.hero-booking__label {
    margin-bottom: -2px;
}

.hero-booking__field select {
    margin-top: 0;
}

.hero-booking__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.hero-booking__label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
}

.hero-booking input,
.hero-booking select {
	width: 100%;
	min-width: 0;
	border: 0;
	background: transparent;
	color: rgba(247, 242, 232, 0.76);
	font-family: var(--font-sans);
	font-size: 13px;
	line-height: 1.2;
}

.hero-booking input::-webkit-calendar-picker-indicator {
	filter: invert(1);
	opacity: 0.8;
}

.hero-booking select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 14px) 55%, calc(100% - 8px) 55%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.hero-booking option {
	color: var(--color-dark);
}

.hero-booking__submit {
	border: 1px solid var(--color-gold);
	background: var(--color-gold);
	color: #fff;
	cursor: pointer;
}

@media (min-width: 1441px) {
	.hero__background img {
		object-position: center top;
	}
}

@media (max-width: 1180px) {
	.hero__container {
		padding-top: 140px;
		padding-bottom: 300px;
	}

	.hero__content {
		width: min(650px, 88vw);
	}

	.hero-booking__grid {
		grid-template-columns: repeat(2, minmax(180px, 1fr)) minmax(220px, 1fr);
		gap: 12px;
	}

	.hero-booking__field {
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 16px;
		background: rgba(255, 255, 255, 0.04);
	}

	.hero-booking__field + .hero-booking__field {
		border-left: 1px solid rgba(255, 255, 255, 0.12);
	}

	.hero-booking__submit {
		grid-column: 3;
		grid-row: 1 / span 2;
		min-height: auto;
	}
}

@media (max-width: 767px) {
	.hero {
		min-height: var(--hero-min-height-mobile, 100svh);
	}

	.hero__shade--left {
		background: linear-gradient(180deg, rgba(10, 18, 23, 0.18) 0%, rgba(10, 18, 23, 0.68) 50%, rgba(10, 18, 23, 0.84) 100%);
	}

	.hero__container {
		min-height: var(--hero-min-height-mobile, 100svh);
		padding: 132px 20px 520px;
		align-items: flex-start;
	}

	.hero__content {
		width: 100%;
	}

	.hero__eyebrow {
		font-size: 11px;
		letter-spacing: 0.25em;
	}

	.hero__title {
		font-size: clamp(48px, 16vw, 70px);
		letter-spacing: -0.01em;
	}

	.hero__subtitle {
		max-width: 330px;
		font-size: clamp(18px, 5.2vw, 22px);
	}

	.hero__features {
		width: calc(100vw - 40px);
		max-width: none;
		margin-top: 26px;
		padding-bottom: 2px;
		gap: 16px;
		overflow-x: auto;
		overflow-y: visible;
		overscroll-behavior-inline: contain;
		scrollbar-width: none;
	}

	.hero__feature {
		width: 84px;
		min-width: 84px;
		flex-basis: 84px;
		font-size: 12px;
	}

	.hero__feature img {
		width: 34px;
		height: 34px;
	}

	.hero__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 28px;
	}

	.hero__button {
		width: 100%;
		min-height: 50px;
	}

	.hero__pagination {
		left: 20px;
		right: 20px;
		bottom: 430px;
		gap: 10px;
	}

	.hero__arrow {
		display: none;
	}

	.hero__progress {
		flex: 1;
		gap: 8px;
	}

	.hero__progress span {
		width: auto;
		flex: 1;
	}

	.hero-booking {
		left: 16px;
		right: 16px;
		bottom: 18px;
		padding: 14px;
		border-radius: 18px;
	}

	.hero-booking__grid {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.hero-booking__field {
		min-height: 70px;
		padding: 10px;
		grid-template-columns: 28px minmax(0, 1fr);
		column-gap: 8px;
	}

	.hero-booking__icon {
		width: 28px;
		height: 28px;
	}

	.hero-booking__label {
		font-size: 12px;
	}

	.hero-booking input,
	.hero-booking select {
		font-size: 12px;
	}

	.hero-booking__submit {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 52px;
	}
}

@media (max-width: 390px) {
	.hero__container {
		padding-bottom: 560px;
	}

	.hero__pagination {
		bottom: 458px;
	}

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

@media (min-width: 1181px) {

	.hero-booking {
		left: max(14px, calc((100vw - 1520px) / 2));
		right: max(14px, calc((100vw - 1520px) / 2));

		bottom: -80px;
		transform: none;

		min-height: 150px;
		padding: 28px 30px;

		border: 1px solid rgba(216, 168, 82, 0.36);
		border-radius: 22px;

		background:
			linear-gradient(
				180deg,
				rgba(23, 26, 25, 0.88) 0%,
				rgba(40, 41, 39, 0.78) 100%
			);

		box-shadow:
			0 28px 70px rgba(0, 0, 0, 0.28),
			inset 0 1px 0 rgba(255, 255, 255, 0.05);

		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
	}

	.hero-booking__grid {
		grid-template-columns:
			minmax(220px, 1fr)
			minmax(220px, 1fr)
			minmax(190px, 0.9fr)
			minmax(190px, 0.9fr)
			minmax(290px, 1.15fr);

		align-items: center;
		min-height: 104px;
	}

	.hero-booking__field {
		grid-template-columns: 50px minmax(0, 1fr);
		grid-template-rows: min-content min-content;

		column-gap: 18px;
		row-gap: 5px;

		align-content: center;
		align-items: center;

		min-height: 82px;
		padding: 0 clamp(22px, 2.2vw, 38px);
	}

	.hero-booking__field + .hero-booking__field {
		border-left: 1px solid rgba(216, 168, 82, 0.76);
	}

	.hero-booking__icon {
		grid-column: 1;
		grid-row: 1 / 3;

		width: 46px;
		height: 46px;

		align-self: center;
		color: #d4a04c;
	}

	.hero-booking__icon svg {
		width: 46px;
		height: 46px;
		stroke-width: 1.7;
	}

	.hero-booking__label {
		grid-column: 2;
		grid-row: 1;

		align-self: end;
		margin: 0;

		color: rgba(255, 255, 255, 0.94);

		font-size: clamp(16px, 1.15vw, 20px);
		font-weight: 500;
		line-height: 1.1;
	}

	.hero-booking input,
	.hero-booking select {
		grid-column: 2;
		grid-row: 2;

		align-self: start;

		height: 28px;
		margin: 0;
		padding: 0 34px 0 0;

		color: rgba(255, 255, 255, 0.56);

		font-size: clamp(14px, 1vw, 17px);
		font-weight: 400;
		line-height: 28px;
	}

	.hero-booking input::placeholder {
		color: rgba(255, 255, 255, 0.52);
		opacity: 1;
	}

	.hero-booking select {
		background-position:
			calc(100% - 11px) 48%,
			calc(100% - 4px) 48%;

		background-size: 8px 8px, 8px 8px;
	}

	.hero-booking__submit {
		align-self: center;

		width: calc(100% - 22px);
		margin-left: 22px;
		padding: 0 34px;

		border: 0;
		border-radius: 999px;

		background: #c99647;
		color: #fff;

		font-size: clamp(17px, 1.15vw, 20px);
		font-weight: 600;
		line-height: 1.2;

		white-space: nowrap;
	}

	.hero-booking__submit:hover {
		background: #d5a454;
		transform: translateY(-2px);
	}
}