.restaurant-section {
	--restaurant-bg: #3b3228;
	--restaurant-panel-bg: #30271f;
	--restaurant-accent: #c1914a;
	--restaurant-text: #fff;
	--restaurant-border: #775c34;
	--restaurant-card-width: 234px;
	--restaurant-card-gap: 15px;

	position: relative;
	isolation: isolate;
	overflow-x: clip;
	background: var(--restaurant-bg);
	color: var(--restaurant-text);
	padding: clamp(82px, 8vw, 94px) 0 clamp(70px, 8vw, 95px);
}

.restaurant-section__decoration {
	position: absolute;
	top: 6px;
	left: 50%;
	z-index: -1;
	width: min(1405px, calc(100vw - 40px));
	max-width: none;
	height: auto;
	transform: translateX(-50%);
	opacity: 0.28;
	pointer-events: none;
}

.restaurant-section__container {
	width: min(100% - 40px, 1282px);
	margin: 0 auto;
}

.restaurant-section__header {
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.restaurant-section__eyebrow,
.restaurant-intro__eyebrow {
	margin: 0;
	color: var(--restaurant-accent);
	font-family: var(--font-sans);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.31em;
	line-height: 1.35;
	text-transform: uppercase;
}

.restaurant-section__subtitle {
	max-width: 760px;
	margin: 16px auto 0;
	color: var(--restaurant-text);
	font-family: var(--font-sans);
	font-size: clamp(17px, 1.4vw, 20px);
	font-weight: 400;
	line-height: 1.35;
	text-wrap: balance;
}

.restaurant-section__divider {
	display: block;
	width: min(403px, 70vw);
	height: 1px;
	margin: 18px auto 0;
	background: var(--restaurant-accent);
}

.restaurant-section__content {
	display: grid;
	grid-template-columns: minmax(360px, 519px) minmax(0, 1fr);
	gap: 20px;
	align-items: stretch;
	margin-top: clamp(54px, 7vw, 84px);
}

.restaurant-intro {
	display: flex;
	min-height: 456px;
	flex-direction: column;
	justify-content: center;
	border-radius: 25px;
	background: var(--restaurant-panel-bg);
	padding: clamp(28px, 3vw, 34px);
}

.restaurant-intro__text {
	max-width: 458px;
	color: var(--restaurant-text);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.35;
}

.restaurant-intro__text h2{
	font-family: var(--font-serif);
	font-size: 32px;
	font-weight: normal;
}

.restaurant-intro__text p {
	margin: 0;
}

.restaurant-intro__text p + p {
	margin-top: 20px;
}

.restaurant-slider {
	position: relative;
	min-width: 0;
}

.restaurant-slider__viewport {
	height: 100%;
	overflow: hidden;
	border-radius: 25px;
}

.restaurant-slider__track {
	display: flex;
	height: 100%;
	gap: var(--restaurant-card-gap);
	transition: transform 460ms ease;
	will-change: transform;
}

.restaurant-card {
	position: relative;
	flex: 0 0 var(--restaurant-card-width);
	width: var(--restaurant-card-width);
	min-height: 456px;
	overflow: hidden;
	border: 1px solid var(--restaurant-border);
	border-radius: 25px;
	background: #251e18;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.restaurant-card__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 456px;
	object-fit: cover;
}

.restaurant-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.92) 0%, rgba(3, 3, 3, 0.78) 21%, rgba(102, 102, 102, 0) 62%);
	pointer-events: none;
}

.restaurant-card__body {
	position: absolute;
	right: 16px;
	bottom: 22px;
	left: 16px;
	z-index: 1;
	color: var(--restaurant-text);
}

.restaurant-card__title {
	margin: 0 0 6px;
	color: var(--restaurant-text);
	font-family: var(--font-serif);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
}

.restaurant-card__description {
	margin: 0;
	color: var(--restaurant-text);
	font-family: var(--font-sans);
	font-size: 14px;
	line-height: 1.28;
}

.restaurant-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: inline-flex;
	width: clamp(52px, 5.6vw, 81px);
	height: clamp(52px, 5.6vw, 81px);
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(51, 42, 34, 0.96);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
	color: #fff;
	cursor: pointer;
	transform: translateY(-50%);
	transition: background-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.restaurant-slider__arrow svg {
	width: 34px;
	height: 34px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.restaurant-slider__arrow--prev {
	left: -42px;
}

.restaurant-slider__arrow--prev svg {
	transform: rotate(90deg);
}

.restaurant-slider__arrow--next {
	right: -39px;
}

.restaurant-slider__arrow--next svg {
	transform: rotate(-90deg);
}

.restaurant-slider__arrow:hover {
	background: #3d342b;
	transform: translateY(-50%) scale(1.03);
}

.restaurant-slider__arrow:disabled {
	opacity: 0.35;
	cursor: default;
	transform: translateY(-50%);
}

.restaurant-slider.is-static .restaurant-slider__arrow {
	display: none;
}

@media (min-width: 1200px) {
	.restaurant-slider__viewport {
		overflow: visible;
	}

	.restaurant-slider__track {
		transform: none !important;
	}
}

@media (max-width: 1199px) {
	.restaurant-section__content {
		grid-template-columns: 1fr;
	}

	.restaurant-intro {
		min-height: 320px;
	}

	.restaurant-intro__eyebrow {
		margin-bottom: 44px;
	}

	.restaurant-slider {
		--restaurant-card-width: clamp(280px, 48vw, 360px);
		--restaurant-card-gap: 18px;
	}

	.restaurant-slider__viewport {
		width: min(100%, calc(100vw - 40px));
	}

	.restaurant-slider__arrow--prev {
		left: 10px;
	}

	.restaurant-slider__arrow--next {
		right: 10px;
	}
}

@media (max-width: 767px) {
	.restaurant-section {
		padding: 68px 0 76px;
	}

	.restaurant-section__container {
		width: min(100% - 32px, 1282px);
	}

	.restaurant-section__decoration {
		top: 20px;
		width: 920px;
		opacity: 0.18;
	}

	.restaurant-section__eyebrow,
	.restaurant-intro__eyebrow {
		font-size: 13px;
		letter-spacing: 0.28em;
	}

	.restaurant-section__subtitle {
		font-size: 16px;
		line-height: 1.45;
	}

	.restaurant-section__content {
		margin-top: 42px;
	}

	.restaurant-intro {
		min-height: 0;
		border-radius: 22px;
		padding: 26px 22px;
	}

	.restaurant-intro__eyebrow {
		margin-bottom: 34px;
	}

	.restaurant-intro__text {
		font-size: 15px;
		line-height: 1.45;
	}

	.restaurant-slider {
		--restaurant-card-width: min(276px, 78vw);
		--restaurant-card-gap: 14px;
	}

	.restaurant-card,
	.restaurant-card__image {
		min-height: 390px;
	}

	.restaurant-card__title {
		font-size: 18px;
	}

	.restaurant-card__description {
		font-size: 13px;
	}
}
