/* Mimosa Hotel restaurant page */

.restaurant-hero {
	position: relative;
	width: 100%;
	height: 72vh;
	min-height: 620px;
	max-height: 820px;
	overflow: hidden;
	background: var(--mimo-ink);
}

.restaurant-hero .splide__track,
.restaurant-hero .splide__list,
.restaurant-hero__slide {
	height: 100%;
	min-height: inherit;
}

.restaurant-hero__slide {
	position: relative;
	display: flex;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.restaurant-hero__slide::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(10, 10, 9, .2);
	pointer-events: none;
}

.restaurant-hero__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.restaurant-hero .splide__arrow {
	z-index: 3;
	top: 50%;
	width: 52px;
	height: 72px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--mimo-white);
	font-size: 46px;
	opacity: .9;
	transform: translateY(-50%);
}

.restaurant-hero .splide__arrow--prev { left: 34px; }
.restaurant-hero .splide__arrow--next { right: 34px; }

.restaurant-story {
	width: 100%;
	padding: 86px 0 124px;
	background: var(--mimo-white);
}

.restaurant-story__inner {
	display: flex;
	flex-direction: column;
	width: min(1380px, calc(100% - 120px));
	max-width: none;
	margin: 0 auto;
	padding: 0;
}

.restaurant-story__section-title {
	align-self: center;
	margin: 0 0 64px;
	color: var(--mimo-ink);
	font-size: clamp(28px, 2.4vw, 36px);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -.02em;
	text-align: center;
}

.restaurant-story__row {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	align-items: center;
	gap: clamp(52px, 6vw, 96px);
	width: 100%;
}

.restaurant-story__row + .restaurant-story__row {
	margin-top: 96px;
}

.restaurant-story__row--reverse {
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.restaurant-story__media {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.restaurant-story__image,
.restaurant-story__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.restaurant-story__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	max-width: 560px;
}

.restaurant-story__row--reverse .restaurant-story__content {
	justify-self: end;
}

.restaurant-story__title {
	margin: 0 0 22px;
	color: var(--mimo-ink);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: .01em;
}

.restaurant-story__info-list {
	display: flex;
	flex-direction: column;
	gap: 11px;
	width: 100%;
}

.restaurant-story__info-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
}

.restaurant-story__info-icon {
	flex: 0 0 18px;
	width: 18px;
	margin-top: 3px;
	color: var(--mimo-brand);
	font-size: 17px;
	line-height: 1.45;
}

.restaurant-story__info-body {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 2px 5px;
	min-width: 0;
}

.restaurant-story__info-label,
.restaurant-story__info-value {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
}

.restaurant-story__info-label {
	color: var(--mimo-ink);
	font-weight: 600;
}

.restaurant-story__info-value {
	color: rgba(10, 10, 9, .72);
	font-weight: 400;
}

@media (max-width: 991px) {
	.restaurant-hero {
		height: 680px;
		min-height: 680px;
	}

	.restaurant-story {
		padding: 76px 0 96px;
	}

	.restaurant-story__inner {
		width: calc(100% - 72px);
	}

	.restaurant-story__section-title {
		margin-bottom: 52px;
	}

	.restaurant-story__row,
	.restaurant-story__row--reverse {
		gap: 42px;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.restaurant-story__row + .restaurant-story__row {
		margin-top: 72px;
	}
}

@media (max-width: 640px) {
	.restaurant-hero {
		height: 560px;
		min-height: 560px;
	}

	.restaurant-hero .splide__arrow {
		width: 38px;
		height: 58px;
		font-size: 36px;
	}

	.restaurant-hero .splide__arrow--prev { left: 8px; }
	.restaurant-hero .splide__arrow--next { right: 8px; }

	.restaurant-story {
		padding: 62px 0 78px;
	}

	.restaurant-story__inner {
		width: calc(100% - 40px);
	}

	.restaurant-story__section-title {
		margin-bottom: 40px;
		font-size: 27px;
	}

	.restaurant-story__row,
	.restaurant-story__row--reverse {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.restaurant-story__row + .restaurant-story__row {
		margin-top: 62px;
	}

	.restaurant-story__row--reverse .restaurant-story__content {
		order: 2;
	}

	.restaurant-story__row--reverse .restaurant-story__media {
		order: 1;
	}

	.restaurant-story__content {
		max-width: none;
	}

	.restaurant-story__title {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.restaurant-story__info-row {
		gap: 10px;
	}

	.restaurant-story__info-label,
	.restaurant-story__info-value {
		font-size: 15px;
	}
}
