body.oe-site {
	margin: 0;
	background: #fffaf3;
	color: #1c110a;
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.rl-page {
	overflow-x: hidden;
}

.rl-page *,
.rl-page *::before,
.rl-page *::after {
	box-sizing: border-box;
}

.rl-wrap {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

.rl-eyebrow {
	margin: 0 0 16px;
	color: #c2410c;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rl-heading {
	margin: 0 0 20px;
	color: #1c110a;
	font-family: Fraunces, Georgia, serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.rl-lede {
	margin: 0;
	max-width: 56ch;
	color: #6b4f3a;
	font-size: 18px;
}

.rl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rl-btn--light {
	background: #fffaf3;
	color: #1c110a;
}

.rl-btn--light:hover,
.rl-btn--light:focus {
	background: #fdba74;
	color: #1c110a;
}

.rl-btn--ghost {
	border-color: rgba(255, 250, 243, 0.4);
	color: #fffaf3;
}

.rl-btn--ghost:hover,
.rl-btn--ghost:focus {
	border-color: #fffaf3;
	color: #fffaf3;
}

/* Hero */

.rl-hero {
	position: relative;
	padding: 40px 0 96px;
	background:
		radial-gradient(ellipse 60% 50% at 78% 38%, rgba(234, 88, 12, 0.35), transparent 70%),
		radial-gradient(ellipse 50% 60% at 10% 100%, rgba(194, 65, 12, 0.25), transparent 70%),
		linear-gradient(160deg, #2a1a10 0%, #1c110a 60%, #140c07 100%);
	color: #fffaf3;
}

.rl-hero::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(253, 186, 116, 0.5), transparent);
}

.rl-brand {
	margin: 0 0 64px;
	color: #fffaf3;
	font-family: Fraunces, Georgia, serif;
	font-size: 34px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.rl-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	align-items: center;
	gap: 64px;
}

.rl-hero .rl-eyebrow {
	color: #fdba74;
}

.rl-hero__title {
	margin: 0 0 24px;
	color: #fffaf3;
	font-family: Fraunces, Georgia, serif;
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.02em;
}

.rl-hero__title em {
	color: #fdba74;
	font-style: italic;
	font-weight: 400;
}

.rl-hero__lede {
	margin: 0 0 36px;
	max-width: 48ch;
	color: rgba(255, 250, 243, 0.78);
	font-size: 19px;
}

.rl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rl-hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	margin: 48px 0 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 250, 243, 0.7);
	font-size: 14px;
}

.rl-hero__facts strong {
	display: block;
	color: #fffaf3;
	font-family: Fraunces, Georgia, serif;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;
}

.rl-hero__aside {
	display: flex;
	justify-content: flex-end;
}

/* Pillars */

.rl-pillars {
	padding: 88px 0;
}

.rl-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.rl-pillar {
	padding: 32px;
	border: 1px solid #ead8c5;
	border-radius: 18px;
	background: #ffffff;
}

.rl-pillar__icon {
	display: block;
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	border-radius: 14px;
	background: #ffedd5;
	position: relative;
}

.rl-pillar__icon::after {
	content: "";
	position: absolute;
	inset: 14px;
	border-radius: 50%;
	background: #c2410c;
}

.rl-pillar:nth-child(2) .rl-pillar__icon {
	background: #dcfce7;
}

.rl-pillar:nth-child(2) .rl-pillar__icon::after {
	border-radius: 50% 0;
	background: #15803d;
}

.rl-pillar:nth-child(3) .rl-pillar__icon {
	background: #f3e8ff;
}

.rl-pillar:nth-child(3) .rl-pillar__icon::after {
	inset: 12px 17px;
	border-radius: 4px 4px 12px 12px;
	background: #7e22ce;
}

.rl-pillar__title {
	margin: 0 0 10px;
	font-family: Fraunces, Georgia, serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
}

.rl-pillar__text {
	margin: 0;
	color: #6b4f3a;
	font-size: 16px;
}

/* Menu */

.rl-menu {
	padding: 96px 0;
	background: #f6ede2;
}

.rl-menu__head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 48px;
}

.rl-menu__head .rl-heading {
	margin-bottom: 0;
}

.rl-menu__note {
	margin: 0;
	color: #6b4f3a;
	font-size: 15px;
}

.rl-menu__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 64px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rl-dish {
	padding: 24px 0;
	border-bottom: 1px solid #e3cfb9;
}

.rl-dish__row {
	display: flex;
	align-items: baseline;
	gap: 12px;
}

.rl-dish__name {
	margin: 0;
	font-family: Fraunces, Georgia, serif;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.3;
}

.rl-dish__dots {
	flex: 1;
	border-bottom: 2px dotted #d6bca1;
	transform: translateY(-5px);
}

.rl-dish__price {
	color: #c2410c;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
}

.rl-dish__desc {
	margin: 6px 0 0;
	color: #6b4f3a;
	font-size: 15px;
}

.rl-dish__tag {
	display: inline-block;
	margin-left: 8px;
	padding: 2px 8px;
	border-radius: 999px;
	background: #dcfce7;
	color: #166534;
	font-family: Inter, system-ui, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	vertical-align: middle;
}

/* Story */

.rl-story {
	padding: 104px 0;
}

.rl-story__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 72px;
}

.rl-story__art {
	position: relative;
	aspect-ratio: 1;
	border-radius: 28px;
	background:
		radial-gradient(circle at 50% 50%, #fffaf3 0 30%, transparent 30.5%),
		radial-gradient(circle at 50% 50%, #ead8c5 0 34%, transparent 34.5%),
		radial-gradient(circle at 50% 50%, #fffaf3 0 42%, transparent 42.5%),
		linear-gradient(145deg, #3b2415, #1c110a);
	overflow: hidden;
}

.rl-story__art::before {
	content: "";
	position: absolute;
	top: 38%;
	left: 38%;
	width: 24%;
	height: 24%;
	border-radius: 50% 40% 55% 45%;
	background:
		radial-gradient(circle at 30% 40%, #15803d 0 14%, transparent 15%),
		radial-gradient(circle at 65% 60%, #ea580c 0 18%, transparent 19%),
		radial-gradient(circle at 55% 30%, #fbbf24 0 12%, transparent 13%),
		#f3e8dc;
}

.rl-story__art::after {
	content: "Since 2014";
	position: absolute;
	right: 24px;
	bottom: 24px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #c2410c;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
}

.rl-story__text p {
	margin: 0 0 18px;
	color: #6b4f3a;
}

.rl-quote {
	margin: 32px 0 0;
	padding: 0 0 0 24px;
	border-left: 3px solid #c2410c;
}

.rl-quote p {
	margin: 0 0 10px;
	color: #1c110a;
	font-family: Fraunces, Georgia, serif;
	font-size: 22px;
	font-style: italic;
	line-height: 1.4;
}

.rl-quote cite {
	color: #6b4f3a;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
}

/* Visit */

.rl-visit {
	padding: 96px 0 180px;
	background: #1c110a;
	color: #fffaf3;
}

.rl-visit .rl-heading {
	color: #fffaf3;
}

.rl-visit .rl-eyebrow {
	color: #fdba74;
}

.rl-visit__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	margin-top: 48px;
}

.rl-visit__card {
	padding: 32px;
	border: 1px solid rgba(255, 250, 243, 0.12);
	border-radius: 18px;
	background: rgba(255, 250, 243, 0.04);
}

.rl-visit__title {
	margin: 0 0 14px;
	color: #fdba74;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.rl-visit__card p {
	margin: 0;
	color: rgba(255, 250, 243, 0.82);
}

.rl-visit__card a {
	color: #fffaf3;
	text-decoration-color: rgba(253, 186, 116, 0.6);
	text-underline-offset: 4px;
}

.rl-hours {
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 250, 243, 0.82);
}

.rl-hours li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 4px 0;
}

.rl-hours span:last-child {
	color: #fffaf3;
	font-variant-numeric: tabular-nums;
}

/* Responsive */

@media (max-width: 960px) {
	.rl-hero__grid,
	.rl-story__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 48px;
	}

	.rl-hero__aside {
		justify-content: flex-start;
	}

	.rl-pillars__grid,
	.rl-visit__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.rl-menu__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.rl-story__art {
		max-width: 420px;
	}
}

@media (max-width: 600px) {
	.rl-wrap {
		padding: 0 16px;
	}

	.rl-hero {
		padding: 28px 0 72px;
	}

	.rl-brand {
		margin-bottom: 44px;
		font-size: 28px;
	}

	.rl-hero__lede {
		font-size: 17px;
	}

	.rl-pillars,
	.rl-menu,
	.rl-story {
		padding: 64px 0;
	}

	.rl-pillar,
	.rl-visit__card {
		padding: 24px;
	}

	.rl-hero__actions .rl-btn {
		flex: 1 1 auto;
	}
}
