:root {
	--ce-accent: #BCCF01;
	--ce-dark: #12170A;
	--ce-dark-2: #1a2010;
	--ce-olive: #575a3a;
	--ce-white: #FFFFFF;
	--ce-muted: rgba(255, 255, 255, 0.72);
	--ce-container: 1200px;
	--ce-radius: 12px;
	--ce-olive-2: #1F290F;
}

/* Base */
.body--chennai,
.body--chennai #page {
	background: var(--ce-dark);
	color: var(--ce-white);
}

.ce-container {
	width: min(100% - 48px, var(--ce-container));
	margin-inline: auto;
}

.ce-eyebrow {
	font-family: 'CormorantInfant', serif;
	font-style: italic;
	font-weight: 400;
	font-size: 28px;
	line-height: 1.2;
	color: var(--ce-accent);
	margin: 0 0 12px;
}

.ce-heading {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: clamp(36px, 4vw, 45px);
	line-height: 1.15;
	color: var(--ce-white);
	margin: 0 0 24px;
	text-transform: none;
}

.ce-heading--accent {
	color: var(--ce-accent);
	font-style: italic;
	font-size: clamp(28px, 3vw, 35px);
}

.ce-heading--sm {
	font-size: clamp(24px, 3vw, 32px);
}

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

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Buttons */
.ce-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 28px;
	border: 1px solid var(--ce-accent);
	color: var(--ce-white);
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	background: transparent;
	position: relative;
	transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
	/*box-shadow: 4px 4px 0 0 var(--ce-accent);*/
}

.ce-btn:hover {
	color: var(--ce-dark);
	background: var(--ce-accent);
	border-color: var(--ce-accent);
}

.ce-btn--accent {
	border-color: var(--ce-accent);
	color: var(--ce-accent);
	box-shadow: none;
}

.ce-btn--accent:hover {
	background: var(--ce-accent);
	color: var(--ce-dark);
}

.ce-btn--solid {
	background: var(--ce-accent);
	border-color: var(--ce-accent);
	color: var(--ce-dark);
	box-shadow: none;
}

.ce-btn--solid:hover {
	background: var(--ce-white);
	border-color: var(--ce-white);
	color: var(--ce-dark);
}

/* ========== Header (XD Home) ========== */
/*
 * Shared alignment rail (1920 artboard):
 * - Content starts 100px from viewport edge (max 1720px shell)
 * - Location pin left edge === hamburger icon left edge
 * - Burger cell: 70px wide, icon inset 24px from cell left
 */
.body--chennai {
	/* Shell width = min(viewport - 2*side, 1720). Content left edge is shared. */
	--ce-header-max: 1720px;
	--ce-header-side: 100px;
	/* Burger cell + icon inset — loc pin left === burger lines left */
	--ce-burger-w: 64px;
	--ce-burger-icon-inset: 20px;
	--ce-burger-line-w: 22px;
	--ce-burger-line-gap: 5px;
	--ce-bar-h: 64px;
	--ce-top-h: 96px;
	--ce-header-h: calc(var(--ce-top-h) + var(--ce-bar-h));
}

.body--chennai .ce-header,
.body--chennai header#header_main.ce-header {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	right: 0 !important;
	z-index: 200 !important;
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	background: #12170A;
	border: 0 !important;
	box-shadow: none !important;
}

.body--chennai .ce-header.is-fixed,
.body--chennai .ce-header.header-fixed.is-fixed {
	position: fixed !important;
	background: rgba(18, 23, 10, 0.96) !important;
	backdrop-filter: blur(10px);
}

@media (max-width: 1100px) {
	.body--chennai .ce-header.is-fixed,
	.body--chennai .ce-header.header-fixed.is-fixed {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}
}

.ce-header__shell {
	/* width: min(calc(100% - (2 * var(--ce-header-side))), var(--ce-header-max)); */
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

/* ---- Row 1: locations | logo | CTAs ---- */
.ce-header__top {
	background: #12170A;
	overflow: visible;
}

.ce-header__top-inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: var(--ce-top-h);
	gap: 24px;
	margin: 0 120px;
}

.ce-header__locs {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	justify-self: start;
	margin-left: var(--ce-burger-icon-inset);
}

.ce-header__social {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}

.ce-header__social li {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	line-height: 0;
}

.ce-header__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ce-header__social a i {
	display: block;
	line-height: 1;
	font-style: normal;
}

.ce-header__social a i::before {
	display: block;
	line-height: 1;
}

.ce-header__social-icon {
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.ce-header__social a:hover {
	color: var(--ce-accent);
}

.ce-header__loc {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
	text-decoration: none;
	color: var(--ce-accent);
}

.ce-header__loc-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--ce-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.ce-header__loc-icon img {
	width: 9px;
	height: auto;
	display: block;
}

.ce-header__loc-text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ce-header__loc-name {
	font-family: 'CormorantInfant', serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ce-accent);
	line-height: 1.1;
}

.ce-header__loc-addr {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1.3;
}

/* Tooltip — full address on hover/focus/tap */
.ce-header__loc-addr.ce-tooltip,
.ce-locations-panel__addr.ce-tooltip {
	display: block;
	min-width: 0;
	overflow: visible;
	line-height: 15px;
}

.ce-header__loc-addr-text,
.ce-locations-panel__addr-text {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ce-tooltip {
	position: relative;
	cursor: help;
}

.ce-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50%;
	top: calc(100% + 8px);
	transform: translateX(-50%) translateY(-4px);
	min-width: max-content;
	max-width: min(280px, 80vw);
	padding: 8px 12px;
	background: #161a0c;
	border: 1px solid rgba(188, 207, 1, 0.35);
	color: #fff;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	text-align: center;
	text-transform: none;
	letter-spacing: normal;
	white-space: normal;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 210;
}

.ce-tooltip:hover::after,
.ce-tooltip:focus-visible::after,
.ce-tooltip.is-active::after {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.ce-header__locs--bar .ce-tooltip::after {
	top: calc(100% + 8px);
	bottom: auto;
	transform: translateX(-50%) translateY(-4px);
}

.ce-header__locs--bar .ce-header__loc.ce-tooltip {
	cursor: pointer;
}

.ce-header__locs--bar .ce-header__loc.ce-tooltip::after {
	left: 0;
	right: auto;
	min-width: 0;
	width: auto;
	max-width: min(240px, calc(100vw - var(--ce-burger-w, 48px) - 48px));
	white-space: normal;
	overflow-wrap: anywhere;
	word-break: break-word;
	text-align: left;
	transform: translateX(0) translateY(-4px);
}

.ce-header__locs--bar .ce-header__loc:last-child.ce-tooltip::after {
	left: auto;
	right: 0;
}

.ce-header__locs--bar .ce-tooltip:hover::after,
.ce-header__locs--bar .ce-tooltip:focus-visible::after,
.ce-header__locs--bar .ce-tooltip.is-active::after {
	transform: translateX(-50%) translateY(0);
}

.ce-header__locs--bar .ce-header__loc.ce-tooltip:hover::after,
.ce-header__locs--bar .ce-header__loc.ce-tooltip:focus-visible::after,
.ce-header__locs--bar .ce-header__loc.ce-tooltip.is-active::after {
	transform: translateX(0) translateY(0);
}

.ce-header__locs--bar .ce-header__loc:last-child.ce-tooltip:hover::after,
.ce-header__locs--bar .ce-header__loc:last-child.ce-tooltip:focus-visible::after,
.ce-header__locs--bar .ce-header__loc:last-child.ce-tooltip.is-active::after {
	transform: translateX(0) translateY(0);
}

.ce-header__logo {
	justify-self: center;
	line-height: 0;
	display: block;
}

.ce-header__brand-row {
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.ce-header__logo img,
.ce-header__logo .custom-logo,
#logo_header {
	display: block;
	height: 58px;
	width: auto;
	max-width: 200px;
}

.ce-header__ctas {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	justify-self: end;
	margin-right: 20px;
	padding: 0 8px 8px 0;
	overflow: visible;
}

/* Reserve space for .ce-header__cta-frame offset lines (right: -9px, bottom: -10px) */
.ce-header__ctas .ce-dropdown,
.ce-header__ctas .ce-header__cta-item {
	margin-right: 9px;
	margin-bottom: 10px;
}

/* ---- Row 2: burger | nav | search ---- */
.ce-header__bar {
	border-top: 1px solid rgba(188, 207, 1, 0.22);
	background: #12170A;
	position: relative;
}

.ce-header__bar-inner {
	display: grid;
	grid-template-columns: var(--ce-burger-w) 1fr var(--ce-burger-w);
	align-items: stretch;
	min-height: var(--ce-bar-h);
}

.ce-header__bar-left {
	position: relative;
	display: flex;
	align-items: center;
	border-right: 1px solid rgba(188, 207, 1, 0.28);
}

.ce-header__canvas.canvas {
	position: relative;
	width: 100%;
	height: 100%;
}

.ce-locations-panel.wg-welcom {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	width: min(360px, 88vw);
	padding: 40px 32px 32px;
	background-color: #161a0c;
	border: 1px solid rgba(188, 207, 1, 0.35);
	text-align: left;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
	transform: translateY(-8px);
	z-index: 40;
}

.ce-locations-panel.wg-welcom.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.ce-locations-panel__close.button-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(188, 207, 1, 0.35);
	background: transparent;
	color: var(--ce-accent);
	cursor: pointer;
}

.ce-locations-panel__title {
	font-family: 'CormorantInfant', serif;
	font-size: 24px;
	font-weight: 600;
	color: var(--ce-accent);
	margin: 0 0 20px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ce-locations-panel__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ce-locations-panel__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(188, 207, 1, 0.14);
	text-decoration: none;
	color: #fff;
	transition: color 0.2s ease;
}

.ce-locations-panel__item:last-child {
	border-bottom: 0;
}

.ce-locations-panel__item:hover {
	color: var(--ce-accent);
}

.ce-locations-panel__name {
	font-family: 'CormorantInfant', serif;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.ce-locations-panel__addr {
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
}

.ce-header__burger {
	display: inline-flex !important;
	align-items: center !important;
	min-height: var(--ce-bar-h) !important;
	border: 0 !important;
	background: transparent !important;
	justify-content: center !important;
	padding: 0 !important;
	margin: 0 !important;
	appearance: none;
	position: relative !important;
	top: auto !important;
	right: auto !important;
	transform: none !important;
	cursor: pointer;
	box-sizing: border-box !important;
	overflow: visible !important;
	width: auto;
}

.body--chennai .ce-header__burger.mobile-button::before,
.body--chennai .ce-header__burger.mobile-button::after {
	content: none !important;
	display: none !important;
}

.ce-header__burger span,
.ce-header__burger span::before,
.ce-header__burger span::after {
	display: block !important;
	height: 2px !important;
	background: var(--ce-accent) !important;
	position: relative !important;
	left: auto !important;
	top: auto !important;
	right: auto !important;
	transform: none !important;
	text-indent: 0 !important;
	overflow: visible !important;
	border-radius: 0;
}

.ce-header__burger span {
	width: var(--ce-burger-line-w, 22px) !important;
	flex-shrink: 0;
}

.ce-header__burger span::before,
.ce-header__burger span::after {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
}

.ce-header__burger span::before {
	top: calc(-1 * (2px + var(--ce-burger-line-gap))) !important;
	width: 18px !important;
}

.ce-header__burger span::after {
	top: calc(2px + var(--ce-burger-line-gap)) !important;
	width: 14px !important;
}

.ce-header__nav {
	display: flex !important;
	align-items: center;
	justify-content: center;
	min-width: 0;
	overflow: hidden;
}

.body--chennai .ce-header .ce-nav,
.body--chennai .ce-header ul.ce-nav {
	display: flex !important;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0 28px !important;
	margin: 0 !important;
	padding: 0 20px !important;
	list-style: none !important;
}

.body--chennai .ce-header .ce-nav > li {
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	flex-shrink: 0;
}

.body--chennai .ce-header .ce-nav > li > a {
	display: inline-block !important;
	font-family: 'CormorantInfant', serif !important;
	font-weight: 600 !important;
	font-size: 16px !important;
	line-height: 1.2 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	color: #FFFFFF !important;
	text-decoration: none !important;
	padding: 24px 0 !important;
	margin: 0 !important;
	position: relative;
	background: none !important;
	border: 0 !important;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.body--chennai .ce-header .ce-nav > li:hover > a,
.body--chennai .ce-header .ce-nav > li.is-active > a,
.body--chennai .ce-header .ce-nav > li.current-menu-item > a {
	color: #BCCF01 !important;
}

.body--chennai .ce-header .ce-nav > li > a::before {
	content: none !important;
	display: none !important;
}

.body--chennai .ce-header .ce-nav > li > a::after {
	content: '' !important;
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 18px !important;
	height: 2px !important;
	background: var(--ce-accent) !important;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.25s ease;
}

.body--chennai .ce-header .ce-nav > li:hover > a::after,
.body--chennai .ce-header .ce-nav > li.is-active > a::after,
.body--chennai .ce-header .ce-nav > li.current-menu-item > a::after {
	transform: scaleX(1);
}

.ce-header__search-btn {
	width: var(--ce-burger-w);
	min-width: var(--ce-burger-w);
	max-width: var(--ce-burger-w);
	height: var(--ce-bar-h);
	min-height: var(--ce-bar-h);
	margin: 0;
	padding: 0 !important;
	border: 0;
	border-left: 1px solid rgba(188, 207, 1, 0.28);
	border-radius: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	cursor: pointer;
	box-sizing: border-box;
	color: var(--ce-accent);
	line-height: 0;
	appearance: none;
	-webkit-appearance: none;
}

.ce-header__search-btn svg {
	display: block;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.ce-header__search-btn svg circle,
.ce-header__search-btn svg path {
	stroke: var(--ce-accent) !important;
	fill: none !important;
}

.ce-header__search-btn:hover svg circle,
.ce-header__search-btn:hover svg path {
	stroke: #fff !important;
}

.ce-header__bar-right {
	display: flex;
	align-items: stretch;
	justify-self: end;
}

.ce-header__bar-right .ce-header__search-btn {
	border-left: 1px solid rgba(188, 207, 1, 0.28);
}

.ce-header__locs--bar {
	display: none;
}

.ce-header__locs--bar .ce-header__loc {
	align-items: center;
}

.ce-header__locs--bar .ce-header__loc-icon {
	margin-top: 0;
}

.ce-header__locs--bar .ce-header__loc-text {
	flex-direction: row;
	align-items: center;
	flex: 0 1 auto;
	gap: 0;
}

.ce-header__locs--bar .ce-header__loc-name {
	line-height: 1;
	display: flex;
	align-items: center;
}

.ce-header__burger--nav {
	display: none !important;
	width: var(--ce-burger-w) !important;
	min-width: var(--ce-burger-w) !important;
	justify-content: center !important;
	padding: 0 !important;
	border-left: 1px solid rgba(188, 207, 1, 0.28);
}

.ce-header__burger--nav span::before,
.ce-header__burger--nav span::after {
	width: var(--ce-burger-line-w, 22px) !important;
}

.ce-header__burger--locations,
.ce-header__canvas-btn {
	justify-content: flex-start !important;
	padding: 0 0 0 var(--ce-burger-icon-inset) !important;
	width: 100%;
}

.ce-header__search {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	padding: 16px var(--ce-header-side);
	background: rgba(18, 23, 10, 0.98);
	border-bottom: 1px solid rgba(188, 207, 1, 0.2);
	z-index: 20;
}

.ce-header__search[hidden] {
	display: none !important;
}

.ce-header__search-form {
	width: min(100%, 640px);
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	border: 1px solid rgba(188, 207, 1, 0.35);
	background: rgba(18, 23, 10, 0.6);
}

.ce-header__search-form input[type='search'] {
	flex: 1;
	min-width: 0;
	width: auto;
	height: auto;
	min-height: 48px;
	margin-bottom: 0;
	padding: 12px 16px;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

.ce-header__search-form input[type='search']:focus {
	border: 0;
	outline: none;
	box-shadow: none;
}

.ce-header__search-form input[type='search']::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.ce-header__search-form button {
	position: static;
	top: auto;
	right: auto;
	transform: none;
	flex-shrink: 0;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-left: 1px solid rgba(188, 207, 1, 0.35);
	border-radius: 0;
	background: var(--ce-accent);
	color: #12170A;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}

.ce-header__search-form button:hover,
.ce-header__search-form button:focus-visible {
	background: #d4e801;
	color: #12170A;
}

@media (max-width: 1600px) {
	.body--chennai {
		--ce-header-side: 60px;
	}

	.ce-header__top-inner {
		margin: 0 60px;
	}
}

@media (max-width: 1280px) {
	.body--chennai {
		--ce-header-side: 40px;
	}

	.ce-header__top-inner {
		margin: 0 40px;
	}

	.body--chennai .ce-header .ce-nav {
		gap: 0 18px !important;
	}

	.body--chennai .ce-header .ce-nav > li > a {
		font-size: 14px !important;
	}
}

@media (max-width: 1100px) {
	.body--chennai {
		--ce-header-h: 210px;
	}

	.ce-header__top-inner {
		grid-template-columns: 1fr;
		min-height: 80px;
		margin-left: 0;
		margin-right: 0;
		padding: 0 var(--ce-header-side);
		gap: 12px;
	}

	.ce-header__brand-row {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
		min-height: var(--ce-bar-h);
	}

	.ce-header__brand-row .ce-header__logo {
		grid-column: 2;
		justify-self: center;
	}

	.ce-header__brand-row .ce-header__burger--nav {
		grid-column: 3;
		justify-self: end;
		align-self: center;
		border-left: 0;
		height: var(--ce-bar-h) !important;
		min-height: var(--ce-bar-h) !important;
	}

	.ce-header__ctas {
		justify-self: center;
		justify-content: center;
		width: 100%;
		margin-right: 0;
	}

	.ce-header__top .ce-header__locs {
		display: none;
	}

	.ce-header__nav {
		display: none !important;
	}

	.body--chennai .ce-header .ce-locations-panel.wg-welcom {
		display: none !important;
	}

	.ce-header__bar-inner {
		grid-template-columns: 1fr auto;
	}

	.ce-header__bar,
	.ce-header__bar-inner {
		overflow: visible;
	}

	.ce-header__bar-left {
		border-right: 0;
		min-width: 0;
		padding: 0 var(--ce-header-side);
		overflow: visible;
	}

	.ce-header__burger--locations {
		display: none !important;
	}

	.ce-header__locs--bar {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: flex-start;
		gap: clamp(16px, 4vw, 24px);
		width: 100%;
		min-width: 0;
		margin-left: 0;
		padding: 0 12px;
		overflow: visible;
	}

	.ce-header__locs--bar .ce-header__loc {
		min-width: 0;
		flex: 0 1 auto;
		gap: 8px;
	}

	.ce-header__locs--bar .ce-header__loc-text {
		min-width: 0;
	}

	.ce-header__locs--bar .ce-header__loc-icon {
		width: 24px;
		height: 24px;
		flex-shrink: 0;
	}

	.ce-header__locs--bar .ce-header__loc-name {
		font-size: 13px;
		white-space: nowrap;
		/* overflow: hidden; */
		text-overflow: ellipsis;
	}

	.ce-header__burger--nav {
		display: inline-flex !important;
	}
	.ce-card{
		margin-bottom: 24px;
	}
}

@media (max-width: 700px) {
	.body--chennai .ce-header .ce-header__canvas.canvas {
		display: flex !important;
	}
}

@media (max-width: 720px) {
	.body--chennai {
		--ce-header-side: 16px;
		--ce-burger-w: 56px;
		--ce-burger-icon-inset: 16px;
		--ce-bar-h: 56px;
		--ce-top-h: auto;
		--ce-header-h: 252px;
	}

	.ce-header__top-inner {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		padding: 16px var(--ce-header-side) 14px;
		gap: 16px;
		margin: 0;
	}

	.ce-header__brand-row {
		order: 1;
		width: 100%;
	}

	.ce-header__logo img,
	#logo_header {
		height: 52px;
	}

	.ce-header__ctas {
		order: 3;
		display: flex !important;
		/* flex-wrap: wrap; */
		justify-content: center;
		align-items: center;
		width: 100%;
		margin-right: 0;
		padding: 0 0 4px;
		gap: 18px;
	}

	.ce-header__ctas .ce-dropdown,
	.ce-header__ctas .ce-header__cta-item {
		width: auto;
	}

	.ce-header__cta {
		/*width: 100%;*/
		justify-content: center;
		min-height: 40px;
		padding: 10px 12px;
		font-size: 11px;
	}

	.ce-dropdown__menu {
		left: 0;
		right: auto;
		min-width: 100%;
		transform: translateY(-6px);
	}

	.ce-header__ctas .ce-dropdown:last-child .ce-dropdown__menu {
		left: auto;
		right: 0;
	}

	.ce-dropdown.is-open .ce-dropdown__menu {
		transform: translateY(0);
	}

	.ce-header__bar-inner {
		width: 100%;
	}

	.body--chennai .ce-header__burger--nav.mobile-button {
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
		top: auto !important;
		right: auto !important;
		width: var(--ce-burger-w) !important;
		min-width: var(--ce-burger-w) !important;
		height: var(--ce-bar-h) !important;
		min-height: var(--ce-bar-h) !important;
		transform: none !important;
	}

	.ce-header__bar-right .ce-header__search-btn {
		width: var(--ce-burger-w) !important;
		min-width: var(--ce-burger-w) !important;
		height: var(--ce-bar-h) !important;
	}

	.ce-header__locs--bar {
		gap: 12px;
	}

	.ce-header__locs--bar .ce-header__loc {
		gap: 8px;
	}

	.ce-header__locs--bar .ce-header__loc-icon {
		width: 20px;
		height: 20px;
	}

	.ce-header__locs--bar .ce-header__loc-name {
		font-size: clamp(11px, 2.8vw, 13px);
	}
}

@media (max-width: 480px) {
	.body--chennai {
		--ce-burger-w: 48px;
	}

	.ce-header__locs--bar {
		flex-wrap: nowrap;
		gap: clamp(12px, 3vw, 16px);
		padding: 0 8px;
	}

	.ce-header__locs--bar .ce-header__loc {
		flex: 0 1 auto;
		min-width: 0;
		gap: 6px;
	}

	.ce-header__locs--bar .ce-header__loc-icon {
		width: 24px;
		height: 24px;
	}

	.ce-header__locs--bar .ce-header__loc-icon img {
		width: 7px;
	}

	.ce-header__locs--bar .ce-header__loc-name {
		font-size: clamp(16px, 2.6vw, 12px);
	}

	.ce-header__cta {
		font-size: 9px !important;
		padding: 9px 8px;
	}

	.ce-header__locs--bar .ce-header__loc-text{
        margin-right: 30px;
	}
}

.admin-bar .ce-header.is-fixed {
	top: 32px !important;
}

@media screen and (max-width: 782px) {
	.admin-bar .ce-header.is-fixed {
		top: 46px !important;
	}
}

.ce-dropdown {
	position: relative;
	overflow: visible;
}

.ce-header__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 5px 26px 5px 30px;
	border: 0;
	background-color: transparent;
	background-size: 300%;
	background-image: linear-gradient(340deg, var(--ce-dark-2) 50%, #BCCF01 50%);
	background-position: 0%;
	color: #12170A;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	line-height: 1.2;
	box-shadow: none !important;
	overflow: visible;
	transition: all 0.3s ease-in-out;
}

.ce-header__ctas a.ce-header__cta,
.ce-header__ctas a.ce-header__cta:hover,
.ce-header__ctas a.ce-header__cta:focus,
.ce-header__ctas a.ce-header__cta:focus-visible {
	color: #12170A;
}

.ce-header__cta:hover,
.ce-header__cta:focus-visible,
.ce-dropdown.is-open .ce-header__cta,
.ce-dropdown:hover .ce-header__cta,
.ce-header__cta-item:hover .ce-header__cta,
.ce-header__cta-item:focus-within .ce-header__cta {
	background-image: none;
	background-color: #BCCF01;
	background-position: 0%;
	color: #12170A;
}

/* XD: #BCCF01 L-line — bottom + right, animates on hover like .button-two-line */
.ce-header__cta-frame {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ce-header__cta-frame::before,
.ce-header__cta:not(:has(.ce-header__cta-frame))::before {
	position: absolute;
	content: '';
	right: -9px;
	bottom: -10px;
	width: 100%;
	height: 1px;
	background-color: #BCCF01;
	transition: all 0.3s ease-in-out;
}

.ce-header__cta-frame::after,
.ce-header__cta:not(:has(.ce-header__cta-frame))::after {
	position: absolute;
	content: '';
	right: -9px;
	bottom: -9px;
	width: 1px;
	height: 100%;
	background-color: #BCCF01;
	transition: all 0.3s ease-in-out;
}

.ce-header__cta:hover .ce-header__cta-frame::before,
.ce-header__cta:hover .ce-header__cta-frame::after,
.ce-header__cta:focus-visible .ce-header__cta-frame::before,
.ce-header__cta:focus-visible .ce-header__cta-frame::after,
.ce-header__cta:hover:not(:has(.ce-header__cta-frame))::before,
.ce-header__cta:hover:not(:has(.ce-header__cta-frame))::after,
.ce-header__cta:focus-visible:not(:has(.ce-header__cta-frame))::before,
.ce-header__cta:focus-visible:not(:has(.ce-header__cta-frame))::after {
	right: 0;
	bottom: 0;
	opacity: 0;
}

.ce-header__cta-chevron {
	flex-shrink: 0;
}

.ce-dropdown__menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 180px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #161a0c;
	border: 1px solid rgba(188, 207, 1, 0.35);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 30;
}

/* Hover bridge so the menu stays open while moving from button to links */
.ce-dropdown__menu::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: -8px;
	height: 8px;
}

.ce-dropdown.is-open .ce-dropdown__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@media (hover: hover) and (min-width: 992px) {
	.ce-dropdown:hover .ce-dropdown__menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

.ce-dropdown__menu a {
	display: block;
	padding: 14px 16px;
	color: var(--ce-white);
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
}

.ce-dropdown__menu li:first-child > a{
	border-bottom: 1px solid #BCCF01;
} 

.ce-dropdown__menu a:hover,
.ce-dropdown__menu a:focus-visible {
	color: #12170A;
	background-color: #BCCF01;
}

.body--chennai .progress-wrap path {
	stroke: var(--ce-accent);
}

/* ========== Mobile drawer (left slide-out) ========== */
html.ce-drawer-open,
.body--chennai.ce-drawer-open {
	overflow: hidden;
	height: 100%;
	overscroll-behavior: none;
}

#ce-mobile-drawer.ce-drawer--portal {
	position: fixed;
	inset: 0;
	z-index: 10030;
	pointer-events: none;
}

#ce-mobile-drawer.ce-drawer--portal.active {
	pointer-events: auto;
}

.body--chennai .ce-drawer.mobile-nav-wrap .overlay-mobile-nav {
	background: rgba(18, 23, 10, 0.72);
	z-index: 10040;
}

.body--chennai .ce-drawer.mobile-nav-wrap .inner-mobile-nav {
	width: min(320px, 86vw);
	left: -340px;
	background: #12170A;
	border-right: 1px solid rgba(188, 207, 1, 0.28);
	padding: 20px 20px 32px;
	z-index: 10050;
	height: 100%;
	height: 100dvh;
	height: -webkit-fill-available;
}

.body--chennai .ce-drawer.mobile-nav-wrap.active .inner-mobile-nav {
	left: 0;
}

.ce-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(188, 207, 1, 0.22);
	position: relative;
}

.ce-drawer__logo img {
	display: block;
	height: 48px;
	width: auto;
}

.ce-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(188, 207, 1, 0.35);
	background: transparent;
	color: #BCCF01;
	cursor: pointer;
	flex-shrink: 0;
}

.ce-drawer__close:hover {
	background: rgba(188, 207, 1, 0.12);
}

.body--chennai .ce-drawer #menu-mobile-menu {
	/* margin-top: 8px;
	border-top: 0;
	padding: 0; */
	list-style: none;
}

.body--chennai .ce-drawer #menu-mobile-menu > li {
	border-bottom: 1px solid rgba(188, 207, 1, 0.14);
	padding: 0;
}

.body--chennai .ce-drawer #menu-mobile-menu li a {
	display: block;
	padding: 14px 0;
	font-family: 'CormorantInfant', serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFFFFF;
	transition: color 0.2s ease;
}

.body--chennai .ce-drawer #menu-mobile-menu li a:hover,
.body--chennai .ce-drawer #menu-mobile-menu li.current-menu-item a {
	color: #BCCF01;
}

/* ========== Hero ========== */
.ce-hero {
	position: relative;
	/* min-height: 100vh; */
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(18, 23, 10, 0.35) 0%, rgba(18, 23, 10, 0.55) 70%, var(--ce-dark) 100%),
		var(--ce-hero-image) center / cover no-repeat;
	padding: 200px 24px 100px;
	overflow: hidden;
}

.ce-hero--video {
	background: var(--ce-dark);
}

.ce-hero--video::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(18, 23, 10, 0.35) 0%, rgba(18, 23, 10, 0.55) 70%, var(--ce-dark) 100%);
	pointer-events: none;
}

.ce-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	pointer-events: none;
}

.ce-hero__video--embed {
	overflow: hidden;
}

.ce-hero__video--embed iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	transform: translate(-50%, -50%);
	border: 0;
	pointer-events: none;
}

.ce-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 920px;
	margin: 0 auto;
}

/* Fleet hero carousel */
.ce-fleet-hero {
	display: block;
	padding: 0;
	min-height: 100dvh;
	background: var(--ce-dark);
	overflow: hidden;
}

.ce-fleet-hero__slider {
	width: 100%;
	min-height: 100dvh;
}

.ce-fleet-hero__slider .swiper-slide {
	height: auto;
}

.ce-fleet-hero__slide {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 200px 24px 120px;
	background:
		linear-gradient(180deg, rgba(18, 23, 10, 0.35) 0%, rgba(18, 23, 10, 0.55) 70%, var(--ce-dark) 100%),
		var(--ce-hero-image) center / cover no-repeat;
}

.ce-fleet-hero__content {
	position: relative;
	z-index: 1;
	max-width: 920px;
	margin: 0 auto;
}

.ce-fleet-hero__eyebrow {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ce-accent);
	margin: 0 0 16px;
}

.ce-fleet-hero__text {
	font-family: 'DM Sans', sans-serif;
	font-size: clamp(15px, 2vw, 18px);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	max-width: 640px;
	margin: 0 auto 32px;
}

.ce-fleet-hero__pagination {
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	bottom: 48px !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 12px;
	z-index: 3;
}

.ce-fleet-hero__pagination .swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	margin: 0 !important;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(188, 207, 1, 0.45);
	opacity: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.25s ease, transform 0.25s ease;
}

.ce-fleet-hero__bullet-inner {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: transparent;
	transition: background-color 0.25s ease, transform 0.25s ease;
}

.ce-fleet-hero__pagination .swiper-pagination-bullet-active {
	border-color: var(--ce-accent);
	transform: scale(1.05);
}

.ce-fleet-hero__pagination .swiper-pagination-bullet-active .ce-fleet-hero__bullet-inner {
	background: var(--ce-accent);
}

.ce-fleet-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(188, 207, 1, 0.35);
	border-radius: 50%;
	background: rgba(18, 23, 10, 0.45);
	color: var(--ce-accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.ce-fleet-hero__arrow:hover {
	background: rgba(18, 23, 10, 0.75);
	border-color: var(--ce-accent);
	color: #fff;
}

.ce-fleet-hero__arrow--prev {
	left: max(16px, calc((100vw - 1720px) / 2 + 16px));
}

.ce-fleet-hero__arrow--next {
	right: max(16px, calc((100vw - 1720px) / 2 + 16px));
}

@media (max-width: 768px) {
	.ce-fleet-hero__slide {
		padding: 160px 20px 110px;
	}

	.ce-fleet-hero__arrow {
		display: none;
	}

	.ce-fleet-hero__pagination {
		bottom: 32px !important;
	}
}

.ce-hero__title {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1.15;
	color: var(--ce-white);
	margin: 0 0 36px;
	/* max-width: 14ch; */
	margin-inline: auto;
}

.ce-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

@media (max-width: 768px) {
	.ce-hero--video {
		min-height: 600px;
		height: 600px;
		padding: 0;
		align-items: flex-end;
	}

	.ce-hero--video::before {
		height: 600px;
		bottom: auto;
		background: linear-gradient(
			180deg,
			rgba(18, 23, 10, 0.1) 0%,
			rgba(18, 23, 10, 0.35) 45%,
			rgba(18, 23, 10, 0.82) 100%
		);
	}

	.ce-hero__video {
		inset: auto 0 auto 0;
		top: 0;
		height: 600px;
	}

	.ce-hero__video--embed iframe {
		top: 50%;
		height: 6	00px;
		min-height: 600px;
		min-width: calc(600px * 16 / 9);
	}

	.ce-hero--video .ce-hero__content {
		padding: 0 20px 160px;
	}

	.ce-hero--video .ce-hero__title {
		margin-bottom: 0;
		font-size: clamp(28px, 7vw, 40px);
	}

	.ce-hero__actions {
		display: none;
	}
	.ce-locations .ce-card {
		padding: 15px 28px !important;
		min-height: 240px !important;	
	}
	.ce-locations{
		padding: 0 !important;
	}
	.wg-action.t1{
	    padding-top:20px;
	}
}

/* Pattern band */
.ce-pattern {
	line-height: 0;
	overflow: hidden;
	background: var(--ce-dark);
}

.ce-pattern img {
	width: 100%;
	height: 72px;
	object-fit: cover;
	display: block;
}

/* ========== Opening Hours ========== */
.ce-opening-hours {
	background: var(--ce-olive-2);
	padding: 40px 0;
	text-align: center;
}

.ce-opening-hours__title {
	font-family: 'CormorantInfant', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(32px, 4vw, 40px);
	line-height: 1.2;
	color: var(--ce-white);
	margin: 0 0 48px;
}

.ce-opening-hours__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 32px 30px;
	align-items: start;
	max-width: 980px;
	margin: 0 auto;
}

.ce-opening-hours__item {
	min-width: 0;
}

.ce-opening-hours__day {
	font-family: 'DM Sans', sans-serif;
	font-size: clamp(11px, 1.4vw, 14px);
	font-weight: 500;
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ce-accent);
	margin: 0 0 12px;
}

.ce-opening-hours__time {
	font-family: 'DM Sans', sans-serif;
	font-size: clamp(14px, 1.6vw, 16px);
	font-weight: 400;
	line-height: 1.5;
	color: var(--ce-white);
	margin: 0;
}

/* ========== Find Us ========== */
.ce-find-us {
	background: var(--ce-dark);
	padding: 0 0 100px;
	text-align: center;
}

.ce-find-us .ce-pattern {
	margin-bottom: 56px;
}

.ce-find-us__title {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: clamp(36px, 4.5vw, 45px);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0 0 56px;
}

.ce-find-us__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px 80px;
	align-items: start;
	max-width: 980px;
	margin: 0 auto;
}

.ce-find-us__place {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ce-find-us__name {
	font-family: 'CormorantInfant', serif;
	font-style: italic;
	font-weight: 600;
	font-size: clamp(36px, 4vw, 48px);
	line-height: 1.15;
	color: var(--ce-accent);
	margin: 0 0 14px;
}

.ce-find-us__label {
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #FFFFFF;
	margin: 0 0 18px;
}

.ce-find-us__rule {
	width: min(100%, 280px);
	margin: 0 0 22px;
	line-height: 0;
}

.ce-find-us__rule img {
	width: 100%;
	height: auto;
	display: block;
}

.ce-find-us__addr {
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: #FFFFFF;
	margin: 0 0 18px;
	max-width: 28ch;
}

.ce-find-us__phone {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: clamp(28px, 3.5vw, 36px);
	line-height: 1.2;
	color: var(--ce-accent);
	text-decoration: none;
	margin: 0 0 28px;
	transition: opacity 0.2s ease;
}

.ce-find-us__phone:hover {
	opacity: 0.85;
	color: var(--ce-accent);
}

.ce-find-us__btn {
	margin-bottom: 28px;
	border: 1px solid var(--ce-accent);
	color: #FFFFFF;
	background: transparent;
	/* box-shadow: 4px 4px 0 0 var(--ce-accent); */
}

.ce-find-us__btn:hover {
	background: var(--ce-accent);
	border-color: var(--ce-accent);
	color: var(--ce-dark);
	/* box-shadow: 4px 4px 0 0 rgba(188, 207, 1, 0.4); */
}

.ce-find-us__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ce-find-us__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	color: #FFFFFF;
	font-size: 16px;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ce-find-us__social a:hover {
	color: var(--ce-accent);
}

.ce-find-us__social-icon {
	display: block;
	width: 16px;
	height: 16px;
}

/* ========== Food Truck Schedule ========== */
.ce-food-truck {
	background: var(--ce-dark);
	padding: 0 0 100px;
}

.ce-food-truck .ce-pattern {
	margin-bottom: 56px;
}

.ce-food-truck__list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 980px;
	margin-inline: auto;
}

.ce-food-truck__item:last-child .ce-food-truck__rule {
	display: none;
}

.ce-food-truck__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px 48px;
	margin-top: 35px;
}

.ce-food-truck__info {
	min-width: 0;
	flex: 1 1 auto;
}

.ce-food-truck__date {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: clamp(18px, 2.5vw, 27px);
	line-height: 1.2;
	color: var(--ce-white);
	margin: 0 0 12px;
}

.ce-food-truck__location {
	font-family: 'CormorantInfant', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(18px, 2.5vw, 28px);
	line-height: 1.25;
	color: var(--ce-accent);
	margin: 0 0 10px;
}

.ce-food-truck__address {
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	line-height: 1.5;
	color: var(--ce-white);
	margin: 0;
	max-width: 42ch;
}

.ce-food-truck__directions {
	flex-shrink: 0;
}

.ce-food-truck__rule {
	position: relative;
	height: 1px;
	background: var(--ce-accent);
	margin: 48px 0 0;
}

.ce-food-truck__rule::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 9px;
	height: 9px;
	background: var(--ce-accent);
	transform: translateY(-50%) rotate(45deg);
}

.ce-food-truck__rule::after {
	content: '';
	position: absolute;
	left: -4px;
	top: 50%;
	width: 17px;
	height: 17px;
	border: 1px solid var(--ce-accent);
	background: transparent;
	transform: translateY(-50%) rotate(45deg);
}

/* ========== Locations ========== */
.ce-locations {
	padding: 0px 0 100px;
	position: relative;
   background: #171D0E;
}

.ce-locations .ce-container {
	position: relative;
	z-index: 1;
}

.ce-locations__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.ce-card {
	border: 1px solid var(--ce-accent);
	border-radius: var(--ce-radius);
	padding: 40px 32px;
	background: #171D0E;
	min-height: 260px;
	margin-top: -40px;
}

.ce-card__title {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: 28px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ce-white);
	margin: 0 0 28px;
}

.ce-card__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ce-card__links li + li {
	margin-top: 14px;
}

.ce-card__links a {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: 16px;
	color: var(--ce-accent);
	text-decoration: none;
	transition: color 0.25s ease, gap 0.25s ease;
}

.ce-card__label {
	flex-shrink: 0;
}

.ce-card__arrow {
	display: inline-flex;
	align-items: center;
	width: 0;
	height: 9px;
	flex-shrink: 0;
	opacity: 0;
	overflow: hidden;
	vertical-align: middle;
	transition: width 0.28s ease, opacity 0.28s ease;
}

.ce-card__arrow-svg {
	display: block;
	width: 24px;
	height: 9px;
	flex-shrink: 0;
}

.ce-card__links a:hover,
.ce-card__links a:focus-visible {
	color: #FFFFFF;
	gap: 14px;
}

.ce-card__links a:hover .ce-card__arrow,
.ce-card__links a:focus-visible .ce-card__arrow {
	width: 96px;
	opacity: 1;
}

/* ========== Menu CTAs ========== */
.ce-ctas {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
	padding: 80px 24px;
	background:
		linear-gradient(180deg, rgba(18, 23, 10, 0.45) 0%, rgba(18, 23, 10, 0.62) 100%),
		var(--ce-ctas-image) center / cover no-repeat;
}

.ce-ctas__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

.ce-ctas__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.ce-ctas__btn {
	min-width: 228px;
	min-height: 46px;
	padding: 14px 28px;
	border: 1px solid var(--ce-accent);
	background: var(--ce-dark);
	color: var(--ce-white);
	overflow: visible;
	box-shadow: none;
}

.ce-ctas__btn:hover {
	background: var(--ce-accent);
	border-color: var(--ce-accent);
	color: var(--ce-dark);
}

/* ========== About / Chefs ========== */
/* .ce-about,
.ce-chefs,
.ce-dishes,
.ce-support,
.ce-newsletter {
	padding: 100px 0;
} */

.ce-about {
	background: var(--ce-dark);
}

.ce-about__grid,
.ce-chefs__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.ce-heading--about {
	text-transform: uppercase;
	letter-spacing: 0.02em;
	/* max-width: 12ch; */
	font-size: clamp(32px, 4.2vw, 48px);
	line-height: 1.1;
	margin-bottom: 28px;
}

.ce-about__media {
	min-width: 0;
}

.ce-about__media img,
.ce-chefs__media img,
.ce-support__banner,
.ce-dish__image img {
	width: 100%;
	height: auto;
	display: block;
}

.ce-about__media img {
	border-radius: 28px;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	max-height: 640px;
}

.ce-about__content p,
.ce-chefs__content p,
.ce-awards__text,
.ce-dish p {
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 20px;
}

.ce-about__content .ce-eyebrow, .ce-chefs__content .ce-eyebrow{
	margin-bottom: 10px;
	color: #BCCF01;
}

.ce-about__btn {
	margin-top: 12px;
	/* XD: white outline + lime L offset */
	border: 1px solid #BCCF01;
	color: #FFFFFF;
	background: transparent;
	/*box-shadow: 4px 4px 0 0 #BCCF01;*/
}

.ce-about__btn:hover {
	color: #12170A;
	background: #BCCF01;
	border-color: #BCCF01;
}

/* Fleet about */
.ce-fleet-about {
	padding: 0;
	overflow: hidden;
}

.ce-fleet-about__pattern {
	line-height: 0;
}

.ce-fleet-about__pattern img {
	width: 100%;
	height: 72px;
	object-fit: cover;
	display: block;
}

.ce-fleet-about .ce-container {
	padding-block: 100px;
}

.ce-fleet-about__title {
	font-size: clamp(48px, 6vw, 72px);
	line-height: 1;
	margin-bottom: 20px;
}

.ce-fleet-about__rule {
	width: min(100%, 280px);
	margin: 0 0 28px;
	line-height: 0;
}

.ce-fleet-about__rule img {
	width: 100%;
	height: auto;
	display: block;
}

.ce-fleet-about__lead {
	font-family: 'DM Sans', sans-serif;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 120px;
}

.ce-fleet-about__lead p {
	font-size: 16px;
	margin: 0;
}

.ce-fleet-about__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 36px;
}

.ce-fleet-about__actions .ce-about__btn {
	margin-top: 0;
	min-width: min(100%, 220px);
	justify-content: center;
	text-align: center;
}

.ce-fleet-about__notes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	/* max-width: 56ch; */
}

.ce-fleet-about__notes li {
	position: relative;
	padding-left: 22px;
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.ce-fleet-about__notes li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	background: var(--ce-accent);
	transform: rotate(45deg);
}

.ce-fleet-about__notes a {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.ce-fleet-about__notes a:hover {
	color: var(--ce-accent);
}

.ce-fleet-about__media img {
	border-radius: 28px;
	object-fit: cover;
	aspect-ratio: 4 / 5;
	max-height: 680px;
	width: min(100%, 520px);
	margin-inline: auto;
}

.ce-fleet-about__grid {
	gap: clamp(40px, 6vw, 88px);
}

/* ========== Fleet menu ========== */
.ce-fleet-menu {
	position: relative;
	overflow: hidden;
	padding: clamp(88px, 10vw, 120px) 24px;
	background:
		linear-gradient(180deg, rgba(18, 23, 10, 0.72) 0%, rgba(18, 23, 10, 0.82) 100%),
		var(--ce-fleet-menu-image) center / cover no-repeat;
}

.ce-fleet-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(18, 23, 10, 0.28);
	pointer-events: none;
}

.ce-fleet-menu__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.ce-fleet-menu__head {
	width: 100%;
	max-width: 640px;
	margin-bottom: clamp(36px, 5vw, 52px);
}

.ce-fleet-menu__eyebrow {
	font-size: clamp(22px, 3vw, 28px);
	margin-bottom: 14px;
}

.ce-fleet-menu__title {
	font-size: clamp(48px, 6vw, 72px);
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.ce-fleet-menu__rule {
	width: min(100%, 318px);
	margin: 0 auto;
	line-height: 0;
}

.ce-fleet-menu__rule svg {
	width: 100%;
	height: auto;
	display: block;
}

.ce-fleet-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
	width: min(100%, 320px);
}

.ce-fleet-menu__list li {
	margin: 0;
}

.ce-fleet-menu__btn.button-two-line {
	width: 100%;
	/*max-width: 320px;*/
	min-height: 50px;
	margin-inline: auto;
	background-color: transparent;
	color: #fff;
	padding: 0 50px 0 50px;
}

.ce-fleet-menu__btn.button-two-line:hover {
	background-position: 98%;
	color: var(--ce-dark);
}

.ce-chefs {
	background:
		linear-gradient(180deg, rgba(18, 23, 10, 0.72) 0%, rgba(18, 23, 10, 0.82) 100%),
		var(--ce-fleet-menu-image) center / cover no-repeat;
	padding: 100px 0 0;
	overflow: visible;
	position: relative;
	z-index: 2;
}

.ce-chefs .ce-container {
	overflow: visible;
}

.ce-chefs__grid {
	align-items: end;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 0;
}

.ce-chefs__media {
	line-height: 0;
	margin-right: 25px;
}

.ce-chefs__media img {
	width: 100%;
	max-width: none;
	height: auto;
	display: block;
}

.ce-chefs__content {
	max-width: none;
	padding-bottom: 100px;
	margin-left: -40px;
}

.ce-chefs__content .ce-heading--about {
	margin-bottom: 24px;
}

.ce-chefs__content svg {
	display: block;
	width: min(100%, 318px);
	height: auto;
}

.ce-chefs__body {
	margin-top: 32px;
	margin-bottom: 0;
}

.ce-chefs__content p:last-child,
.ce-chefs__body p:last-child {
	margin-bottom: 0;
}

/* ========== Awards ========== */
.ce-awards {
	background: var(--ce-dark);
	padding: 0;
}

.ce-awards__shell {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: stretch;
}

.ce-awards__pattern {
	width: clamp(48px, 9vw, 188px);
	overflow: hidden;
	line-height: 0;
}

.ce-awards__pattern img {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.ce-awards__body {
	padding: 100px 0;
	min-width: 0;
}

.ce-awards__intro .ce-eyebrow {
	margin-bottom: 10px;
}

.ce-awards__rule {
	margin: 0 0 28px;
	line-height: 0;
}

.ce-awards__rule img {
	display: block;
	margin-inline: auto;
	max-width: 210px;
	width: 100%;
	height: auto;
}

.ce-awards__text {
	max-width: 780px;
	margin-inline: auto;
}

.ce-awards__slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 56px;
}

.ce-awards__swiper {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.ce-awards__swiper .swiper-slide {
	height: auto;
	box-sizing: border-box;
}

.ce-awards__swiper .swiper-wrapper {
	align-items: stretch;
}

.ce-awards__nav {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ce-accent);
	cursor: pointer;
	z-index: 2;
	position: relative;
	opacity: 1;
	visibility: visible;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.ce-awards__nav svg {
	display: block;
	pointer-events: none;
}

.ce-awards__nav:hover,
.ce-awards__nav:focus-visible {
	color: var(--ce-white);
}

.ce-awards__nav.is-hidden,
.ce-awards__nav.swiper-button-disabled {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.ce-award {
	margin: 0;
	text-align: center;
}

.ce-award__logo {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	min-height: 180px;
	margin-bottom: 18px;
}

.ce-award__logo img {
	width: auto;
	max-width: 100%;
	max-height: 180px;
	height: auto;
	margin-inline: auto;
	display: block;
	object-fit: contain;
}

.ce-award__caption {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-family: 'DM Sans', sans-serif;
	color: rgba(255, 255, 255, 0.88);
}

.ce-award__name {
	font-size: 14px;
	line-height: 1.4;
}

.ce-award__year {
	font-size: 13px;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.72);
}

.ce-awards__cta {
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

@media (max-width: 1099px) {
	.ce-awards__swiper .swiper-slide {
		padding-inline: 8px;
	}

	.ce-awards__slider {
		gap: 8px;
	}

	.ce-awards__nav {
		width: 32px;
	}
}

@media (max-width: 782px) {
	.ce-awards__body {
		padding: 64px 0;
	}

	.ce-awards__pattern {
		width: clamp(32px, 8vw, 72px);
	}

	.ce-awards__slider {
		margin-top: 40px;
	}

	.ce-award__logo {
		min-height: 150px;
	}

	.ce-award__logo img {
		max-height: 150px;
	}
}

@media (max-width: 560px) {
	.ce-awards__shell {
		grid-template-columns: minmax(0, 1fr);
	}

	.ce-awards__pattern {
		display: none;
	}
}

/* ========== Dishes ========== */
.ce-dishes {
	background:
		linear-gradient(180deg, rgba(18, 23, 10, 0.92), rgba(18, 23, 10, 0.96)),
		url('../images/AdobeStock_356721930.png') center / cover;
}

.ce-dishes__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin-top: 48px;
}

.ce-dishes__slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 48px;
}

.ce-dishes__swiper {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.ce-dishes__swiper .swiper-slide {
	height: auto;
}

.ce-dishes__arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ce-accent);
	cursor: pointer;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.ce-dishes__arrow svg {
	display: block;
	pointer-events: none;
}

.ce-dishes__arrow:hover,
.ce-dishes__arrow:focus-visible {
	color: var(--ce-white);
}

.ce-dishes__arrow.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

.ce-dishes__pagination {
	position: static !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 32px;
}

.ce-dishes__pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 !important;
	border-radius: 50%;
	background: transparent;
	border: 1px solid rgba(188, 207, 1, 0.45);
	opacity: 1;
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.ce-dishes__pagination .swiper-pagination-bullet-active {
	background: var(--ce-accent);
	border-color: var(--ce-accent);
}

.ce-dish__image {
	aspect-ratio: 1;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: 4px;
}

.ce-dish__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.ce-dish:hover .ce-dish__image img {
	transform: scale(1.05);
}

.ce-dish h3 {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-style: italic;
	font-size: 22px;
	color: var(--ce-accent);
	margin: 0 0 12px;
}

.ce-dish p {
	font-size: 14px;
	margin: 0;
}

/* ========== Services gallery ========== */
.ce-services {
	padding: 0;
	background: var(--ce-dark);
	width: 100%;
}

.ce-services__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	width: 100%;
}

.ce-services__grid > .box-event {
	min-width: 0;
	width: 100%;
	flex: unset;
}

.ce-services__media {
	position: relative;
}

.ce-services__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(18, 15, 12, 0.15) 0%,
		rgba(18, 15, 12, 0.45) 45%,
		rgba(18, 15, 12, 0.82) 100%
	);
	transition: background 0.3s ease;
}

.ce-services__grid .box-event::before {
	display: none;
}

.ce-services__grid .box-event:hover .ce-services__overlay {
	background: rgba(18, 15, 12, 0.72);
}

.ce-services__grid .box-event .content {
	z-index: 2;
}

.ce-services__grid .box-event img {
	width: 100%;
	height: clamp(360px, 42vw, 630px);
	object-fit: cover;
}

.ce-services__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	color: #bccf01;
	text-decoration: none;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.ce-services__play::before {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	animation: playvideo 2.5s ease-in-out infinite;
	content: '';
}

.ce-services__play-icon {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.ce-services__play-icon svg {
	flex-shrink: 0;
	width: 48px;
	height: auto;
}

.ce-services__play-icon i {
	font-size: 24px;
	line-height: 1;
}

.ce-services__play:hover,
.ce-services__play:focus-visible {
	/* background-color: #bccf01; */
	color: #fff;
	transform: translate(-50%, -50%) scale(1.05);
}

.mfp-video-popup .mfp-content {
	width: 100%;
	max-width: 900px;
	line-height: 0;
	overflow: visible;
}

.mfp-video-popup--portrait .mfp-content {
	max-width: min(420px, calc(80vh * 9 / 16));
}

.ce-video-popup {
	position: relative;
	z-index: 0;
	width: 100%;
	padding-top: 56.25%;
	background: #000;
}

.ce-video-popup--portrait {
	padding-top: 160.78%;
}

.ce-video-popup__player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
}

.mfp-video-popup button.mfp-close {
	position: absolute;
	top: -25px;
	right: -8px;
	z-index: 1046;
	width: 50px;
	height: 50px;
	padding: 0;
	line-height: 40px;
	border-radius: 50%;
	background: rgba(18, 15, 12, 0.82);
	color: #fff;
	opacity: 1;
	font-size: 28px;
	text-align: center;
	transform: translateZ(1px);
}

.mfp-video-popup button.mfp-close:hover,
.mfp-video-popup button.mfp-close:focus {
	background: #bccf01;
	color: #120f0c;
	opacity: 1;
}

.mfp-video-popup button.mfp-arrow {
	z-index: 1046;
}

.ce-services__grid .box-event .content .title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: clamp(18px, 2vw, 30px);
	line-height: 1.4;
	margin-left: 0;
	margin-bottom: 13px;
	text-align: center;
}

.ce-services__grid .box-event .content .title a::before,
.ce-services__grid .box-event .content .title a::after {
	display: none;
}

.ce-services__grid .box-event .content p {
	padding-inline: clamp(16px, 3vw, 50px);
}

.ce-service {
	position: relative;
	display: block;
	min-height: 450px;
	overflow: hidden;
	text-decoration: none;
}

.ce-service__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.55s ease;
}

.ce-service:hover .ce-service__image,
.ce-service:focus-visible .ce-service__image {
	transform: scale(1.05);
}

.ce-service__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 23, 10, 0.05) 35%, rgba(18, 23, 10, 0.82) 100%);
	pointer-events: none;
}

.ce-service__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 36px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 100%;
	padding: 0 16px;
	box-sizing: border-box;
}

.ce-service__label {
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: clamp(18px, 1.6vw, 24px);
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ce-white);
}

.ce-service__icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	display: block;
}

/* ========== Support / Newsletter ========== */
.ce-support {
	background: var(--ce-dark);
	padding-bottom: 40px;
}

.ce-support__banner {
	margin-top: 40px;
	max-height: 360px;
	object-fit: cover;
}

.ce-support__logos-wrap {
	max-width: 1100px;
	margin-inline: auto;
}

.ce-support__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(32px, 5vw, 80px);
	position: relative;
	margin-top: 40px;
}

.ce-support__grid::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: var(--ce-accent);
	transform: translateX(-50%);
}

.ce-support__grid--single {
	grid-template-columns: 1fr;
	max-width: 560px;
	margin-inline: auto;
}

.ce-support__grid--single::before {
	display: none;
}

.ce-support__column {
	min-width: 0;
}

.ce-support__column-title {
	font-family: 'CormorantInfant', serif;
	font-style: italic;
	font-weight: 400;
	font-size: clamp(22px, 2.5vw, 28px);
	line-height: 1.2;
	color: var(--ce-accent);
	margin: 0 0 16px;
}

.ce-support__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(24px, 4vw, 48px);
	margin-top: 28px;
}

.ce-support__logos--single {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ce-support__logo-img {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: 110px;
	object-fit: contain;
	margin-inline: auto;
}

.ce-newsletter {
	background: var(--ce-dark-2);
	padding-top: 60px;
}

.ce-newsletter__form {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	max-width: 640px;
	margin: 0 auto 16px;
}

.ce-newsletter__form input[type="email"] {
	flex: 1 1 280px;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: var(--ce-white);
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
}

.ce-newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.ce-newsletter__note {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	color: var(--ce-muted);
	margin: 0;
}

/* ========== Footer ========== */
.ce-footer {
	background: #0a0c00;
	padding: 80px 0 28px;
	border-top: 0;
}

.ce-footer__inner {
	width: min(100% - 48px, var(--ce-container));
	margin: 0 auto;
	position: relative;
}

.ce-footer__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 40px 48px;
	align-items: center;
	margin-bottom: 56px;
	min-height: 120px;
}

.ce-footer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ce-footer__nav li + li {
	margin-top: 14px;
}

.ce-footer__nav a {
	font-family: 'DM Sans', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ce-footer__nav a:hover {
	color: var(--ce-accent);
}

.ce-footer__nav--left {
	justify-self: start;
	text-align: left;
}

.ce-footer__nav--right {
	justify-self: end;
	text-align: right;
}

.ce-footer__brand {
	justify-self: center;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 18px;
}

.ce-footer__logo {
	display: inline-block;
	line-height: 0;
}

.ce-footer__logo img {
	display: block;
	width: auto;
	height: 78px;
	max-width: 200px;
	margin: 0 auto;
}

.ce-footer__payments {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.ce-footer__pay {
	display: inline-flex;
	line-height: 0;
}

.ce-footer__pay svg {
	display: block;
	width: 46px;
	height: 30px;
}

.ce-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 22px;
	text-align: center;
}

.ce-footer__bottom p {
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.85);
}

/* Back to top — lime square (XD) */
.body--chennai .progress-wrap {
	width: 42px !important;
	height: 42px !important;
	border-radius: 0 !important;
	background: #BCCF01 !important;
	box-shadow: none !important;
	right: 24px !important;
	bottom: 24px !important;
}

.body--chennai .progress-wrap path {
	stroke: transparent !important;
}

/* Admin bar */
.admin-bar .ce-header.header-fixed {
	top: 32px;
}

/* Responsive */
@media (max-width: 1100px) {
	.ce-header__nav {
		display: none !important;
	}

	.ce-locations__grid {
		grid-template-columns: 1fr;
	}

	.ce-dishes__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ce-dishes__slider {
		gap: 8px;
	}

	.ce-dishes__arrow {
		width: 32px;
	}

	.ce-ctas__actions {
		gap: 24px;
	}

	.ce-chefs {
		padding: 48px 0 64px;
	}

	.ce-chefs__grid {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 24px;
	}

	.ce-chefs__content {
		padding-bottom: 0;
		margin-left: 0;
	}

	.ce-chefs__media {
		margin-right: 0;
		margin-inline: auto;
		width: min(100%, 400px);
		line-height: 0;
	}

	.ce-chefs__media img {
		width: 100%;
		height: auto;
		display: block;
	}

	.ce-services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.ce-services__grid .box-event img {
		height: clamp(320px, 38vw, 520px);
	}
}

@media (max-width: 900px) {
	.ce-services__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ce-services__grid .box-event img {
		height: clamp(300px, 42vw, 460px);
	}
}

@media (max-width: 782px) {
	.admin-bar .ce-header.header-fixed {
		top: 46px;
	}

	.ce-opening-hours {
		padding: 40px 0;
	}

	.ce-opening-hours__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 24px;
	}

	.ce-about__grid,
	.ce-chefs__grid {
		grid-template-columns: 1fr;
	}

	.ce-chefs {
		padding: 40px 0 56px;
	}

	.ce-chefs__grid {
		align-items: start;
		gap: 20px;
	}

	.ce-chefs__content {
		max-width: none;
		padding-bottom: 0;
		margin-left: 0;
	}

	.ce-chefs__body {
		margin-top: 24px;
	}

	.ce-chefs__media {
		margin: 0 auto;
		width: min(100%, 340px);
		line-height: 0;
	}

	.ce-chefs__media img {
		width: 100%;
		height: auto;
		display: block;
	}

	.ce-fleet-about .ce-container {
		padding-block: 72px;
	}

	.ce-fleet-about__actions .ce-about__btn {
		flex: 1 1 100%;
	}

	.ce-fleet-menu {
		padding: 72px 20px;
	}

	.ce-fleet-menu__list {
		width: 100%;
		max-width: 320px;
	}

	.ce-find-us__grid {
		display: block !important; 
		gap: 56px;
	}

	.ce-find-us {
		padding-bottom: 72px;
	}

	.ce-food-truck {
		padding-bottom: 72px;
	}

	.ce-food-truck__row {
		flex-direction: column;
		align-items: flex-start;
	}

	.ce-food-truck__rule {
		margin-top: 36px;
	}

	.ce-footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
		text-align: center;
	}

	.ce-footer__nav--left,
	.ce-footer__nav--right,
	.ce-footer__brand {
		justify-self: center;
		text-align: center;
	}

	.ce-footer__logo img {
		margin: 0 auto;
	}

	.ce-dishes__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ce-dishes__slider {
		margin-top: 40px;
	}

	.ce-services__grid .box-event img {
		height: clamp(260px, 48vw, 380px);
	}

	.ce-about,
	.ce-dishes,
	.ce-support,
	.ce-newsletter,
	.ce-awards__body {
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.ce-support__grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.ce-support__grid::before {
		display: none;
	}
}

@media (max-width: 560px) {
	.ce-dishes__grid {
		grid-template-columns: 1fr;
	}

	.ce-dishes__slider {
		gap: 0;
	}

	.ce-dishes__arrow {
		display: none;
	}

	.ce-services__grid {
		grid-template-columns: 1fr;
	}

	.ce-services__grid .box-event img {
		height: clamp(260px, 55vw, 360px);
	}

	.ce-services__grid .box-event .content {
		bottom: 28px;
		transform: none;
	}

	.ce-services__grid .box-event .content .title {
		line-height: 1.3;
	}

	.ce-ctas {
		min-height: 320px;
		padding: 64px 20px;
	}

	.ce-ctas__actions {
		flex-direction: column;
		width: 100%;
		gap: 16px;
	}

	.ce-ctas__btn {
		width: 100%;
		max-width: 320px;
	}
}

.ce-customer-quote {
    /*padding: 44px clamp(20px, 10vw, 390px) 131px;*/
    background-color: var(--ce-dark);
}
.ce-ctas a.button-two-line{
    background-color: var(--ce-dark-2);
    color: #FFFFFF;
}
.ce-ctas a.button-two-line:hover {
	background-color: var(--ce-dark-2);
	color: #FFFFFF;
}

/* ========== Reservation page CTAs (header CTA style) ========== */
.reservation-content .wp-block-list {
	margin-bottom: 0;
}

.reservation-content .wp-block-paragraph:empty {
	display: none;
	margin: 0;
}

.reservation-content .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 18px;
	padding: 0 8px 8px 0;
	overflow: visible;
	--wp--style--block-gap: 18px;
}

.reservation-content .wp-block-button {
	overflow: visible;
	margin: 0 9px 10px 0;
	width: auto;
	flex: 0 0 auto;
}

.reservation-content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: auto;
	height: auto;
	padding: 5px 26px 5px 30px;
	border: 0;
	border-radius: 0;
	background-color: transparent;
	background-size: 300%;
	background-image: linear-gradient(340deg, var(--ce-dark-2) 50%, #BCCF01 50%);
	background-position: 0%;
	color: #12170A;
	font-family: 'DM Sans', sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	box-shadow: none !important;
	overflow: visible;
	box-sizing: border-box;
	transition: all 0.3s ease-in-out;
	padding: 16px 40px;
	margin-top: 30px;
}

.reservation-content .wp-block-button__link:hover,
.reservation-content .wp-block-button__link:focus-visible {
	background-image: none;
	background-color: #BCCF01;
	background-position: 0%;
	color: #12170A;
}

.reservation-content .wp-block-button__link::before {
	position: absolute;
	content: '';
	right: -9px;
	bottom: -10px;
	width: 100%;
	height: 1px;
	background-color: #BCCF01;
	transition: all 0.3s ease-in-out;
}

.reservation-content .wp-block-button__link::after {
	position: absolute;
	content: '';
	right: -9px;
	bottom: -9px;
	width: 1px;
	height: 100%;
	background-color: #BCCF01;
	transition: all 0.3s ease-in-out;
}

.reservation-content .wp-block-button__link:hover::before,
.reservation-content .wp-block-button__link:hover::after,
.reservation-content .wp-block-button__link:focus-visible::before,
.reservation-content .wp-block-button__link:focus-visible::after {
	right: 0;
	bottom: 0;
	opacity: 0;
}

@media (max-width: 720px) {
	.reservation-content .wp-block-buttons {
		padding: 0 0 4px;
	}

	.reservation-content .wp-block-button__link {
		min-height: 40px;
		padding: 10px 12px;
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.reservation-content .wp-block-button__link {
		font-size: 9px;
		padding: 9px 8px;
	}
}

/* ========== Catering enquiry form ========== */
.ce-catering .wp-block-gallery {
	justify-content: center;
	margin: 40px auto;
}

.ce-catering .wp-block-gallery figure.wp-block-image {
	width: 100%;
	/* max-width: 724px; */
	margin-inline: auto;
}

.ce-catering .wp-block-gallery img {
	width: 100%;
	height: auto;
	display: block;
}

.ce-catering .wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 48px;
	padding: 0 8px 10px 0;
	overflow: visible;
}

.ce-catering .enquiry-form {
	overflow: visible;
	margin: 0 9px 10px 0;
}

.ce-catering .enquiry-form .wp-block-button__link.button-two-line {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	height: 50px;
	padding: 0 25px;
	border: 1px solid #BCCF01;
	border-radius: 0 !important;
	background-color: var(--ce-dark-2);
	background-size: 300%;
	background-image: linear-gradient(340deg, #BCCF01 50%, transparent 50%);
	background-position: 0%;
	color: #fff;
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	line-height: 25px;
	letter-spacing: 2px;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	overflow: visible;
	box-shadow: none !important;
	transition: all 0.3s ease-in-out;
}

.ce-catering .enquiry-form .wp-block-button__link.button-two-line:hover,
.ce-catering .enquiry-form .wp-block-button__link.button-two-line:focus-visible {
	background-position: 98%;
	color: #fff;
}

.ce-catering .enquiry-form .wp-block-button__link.button-two-line::before {
	position: absolute;
	content: '';
	right: -9px;
	bottom: -10px;
	width: 100%;
	height: 1px;
	background-color: #BCCF01;
	transition: all 0.3s ease-in-out;
}

.ce-catering .enquiry-form .wp-block-button__link.button-two-line::after {
	position: absolute;
	content: '';
	right: -9px;
	bottom: -9px;
	width: 1px;
	height: 100%;
	background-color: #BCCF01;
	transition: all 0.3s ease-in-out;
}

.ce-catering .enquiry-form .wp-block-button__link.button-two-line:hover::before,
.ce-catering .enquiry-form .wp-block-button__link.button-two-line:hover::after,
.ce-catering .enquiry-form .wp-block-button__link.button-two-line:focus-visible::before,
.ce-catering .enquiry-form .wp-block-button__link.button-two-line:focus-visible::after {
	right: 0;
	bottom: 0;
	opacity: 0;
}

.ce-catering .enquiry-contact-form {
	display: none;
	margin-top: 48px;
}

.ce-catering .enquiry-contact-form.is-visible {
	display: block;
}

.ce-catering .enquiry-contact-form .wpcf7-form {
	margin-top: 0;
}

.ce-catering .enquiry-contact-form .row {
	--bs-gutter-x: 24px;
	--bs-gutter-y: 24px;
}

.ce-catering .enquiry-contact-form .form-control,
.ce-catering .enquiry-contact-form .form-select,
.ce-catering .enquiry-contact-form textarea.form-control {
	width: 100%;
	min-height: 48px;
	padding: 12px 16px;
	border: 1px solid rgba(188, 207, 1, 0.35);
	border-radius: 0;
	background: transparent;
	color: var(--ce-white);
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	box-shadow: none;
}

.ce-catering .enquiry-contact-form textarea.form-control {
	min-height: 120px;
	resize: vertical;
}

.ce-catering .enquiry-contact-form .form-control::placeholder,
.ce-catering .enquiry-contact-form textarea.form-control::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.ce-catering .enquiry-contact-form .form-control:focus,
.ce-catering .enquiry-contact-form .form-select:focus,
.ce-catering .enquiry-contact-form textarea.form-control:focus {
	border-color: var(--ce-accent);
	background: transparent;
	color: var(--ce-white);
	box-shadow: none;
	outline: none;
}

.ce-catering .enquiry-contact-form .form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23BCCF01' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
}

.ce-catering .enquiry-contact-form .form-select option {
	background: var(--ce-dark);
	color: var(--ce-white);
}

.ce-catering .enquiry-contact-form strong {
	display: block;
	margin-bottom: 16px;
	font-family: 'CormorantInfant', serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
	color: var(--ce-accent);
	letter-spacing: 0.06em;
}

.ce-catering .enquiry-contact-form .wpcf7-checkbox,
.ce-catering .enquiry-contact-form .wpcf7-form-control.wpcf7-checkbox.form-check-input {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 24px;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	appearance: none;
	float: none;
	position: static;
}

.ce-catering .enquiry-contact-form .wpcf7-list-item {
	margin: 0 !important;
	padding: 0 !important;
}

.ce-catering .enquiry-contact-form .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
	cursor: pointer;
}

.ce-catering .enquiry-contact-form .wpcf7-list-item-label {
	display: inline;
}

.ce-catering .enquiry-contact-form .wpcf7-list-item input[type='checkbox'] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--ce-accent);
}

.ce-catering .enquiry-contact-form .form-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.ce-catering .enquiry-contact-form .form-check .wpcf7-form-control.wpcf7-checkbox.form-check-input {
	display: inline-flex;
	width: auto;
	grid-template-columns: none;
}

.ce-catering .enquiry-contact-form .form-check .wpcf7-list-item-label {
	display: none;
}

.ce-catering .enquiry-contact-form .form-check > span:last-child,
.ce-catering .enquiry-contact-form .form-check > :not(.wpcf7-form-control-wrap) {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
}

.ce-catering .enquiry-contact-form .wpcf7-not-valid-tip {
	margin-top: 8px;
	font-size: 13px !important;
	color: #ff8a80;
}

.ce-catering .enquiry-contact-form .wpcf7-response-output.wpcf7-validation-errors,
.ce-catering .enquiry-contact-form .wpcf7-response-output.wpcf7-acceptance-missing {
	border-color: #ff8a80;
	color: #ffccc7;
}

.ce-catering .enquiry-contact-form .wpcf7-response-output.wpcf7-mail-sent-ok {
	border-color: var(--ce-accent);
	color: var(--ce-accent);
}

.ce-catering .enquiry-contact-form .button-two-line.wpcf7-submit-wrap,
.ce-catering .enquiry-contact-form .wpcf7-submit-wrap {
	display: inline-flex;
	margin-inline: auto;
}

.ce-catering .enquiry-contact-form .button-two-line.wpcf7-submit-wrap input[type='submit'],
.ce-catering .enquiry-contact-form .wpcf7-submit-wrap input[type='submit'] {
	width: auto;
	min-width: 220px;
	min-height: 50px;
	padding: 0 28px;
	border: 0;
	background: transparent;
	color: var(--ce-white);
	font-family: 'DM Sans', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
}

.ce-catering .enquiry-contact-form .button-two-line.wpcf7-submit-wrap:hover input[type='submit'] {
	color: var(--ce-dark);
}

@media (max-width: 782px) {
	.ce-catering .enquiry-contact-form .wpcf7-checkbox {
		grid-template-columns: 1fr;
	}
}

/* ========== Contact form ========== */
.ce-contact-form__notice {
	margin: 0 0 32px;
	padding: 16px 20px;
	border: 1px solid transparent;
	text-align: center;
}

.ce-contact-form__notice p {
	margin: 0;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.ce-contact-form__notice--success {
	border-color: rgba(188, 207, 1, 0.45);
	background: rgba(188, 207, 1, 0.12);
	color: #ffffff;
}

.ce-contact-form__notice--error {
	border-color: rgba(255, 120, 120, 0.45);
	background: rgba(120, 20, 20, 0.35);
	color: #ffffff;
}

.ce-contact-form__services {
	border: 0;
	margin: 0 0 28px;
	padding: 0;
}

.ce-contact-form__services legend {
	margin-bottom: 16px;
	font-family: 'DM Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #bccf01;
}

.ce-contact-form__service-options {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.ce-contact-form__service-option {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 10px 14px;
	border: 1px solid rgba(188, 207, 1, 0.35);
	cursor: pointer;
	text-align: center;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.ce-contact-form__service-option input {
	accent-color: #bccf01;
}

.ce-contact-form__service-option span {
	font-family: 'DM Sans', sans-serif;
	font-size: 14px;
	line-height: 1.3;
	color: #ffffff;
}

.ce-contact-form__service-option:has(input:checked) {
	border-color: #bccf01;
	background: rgba(188, 207, 1, 0.12);
}

.ce-contact-form .bot {
	overflow: visible;
	padding: 0 9px 10px 0;
}

.ce-contact-form.is-submitting .bot .button-two-line-1 {
	opacity: 0.7;
	cursor: wait;
}

.ce-contact-form__notice--placeholder {
	display: none;
}

@media (max-width: 900px) {
	.ce-contact-form__service-options {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.ce-contact-form__service-options {
		grid-template-columns: 1fr;
	}
}

/* Banner parallax uses .banner-page__bg — fixed attachment fails inside #swup / iOS */
#swup .banner-page {
	background-attachment: scroll;
}

.body--chennai .banner-page {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(var(--ce-header-h) + 320px);
	padding: var(--ce-header-h) 24px 0;
	box-sizing: border-box;
	overflow: hidden;
}

.body--chennai .banner-page .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
	margin: 0;
}

@media (max-width: 1100px) {
	.body--chennai .banner-page {
		min-height: calc(var(--ce-header-h) + 300px);
		padding: var(--ce-header-h) 15px 0;
	}
}

@media (max-width: 720px) {
	/*
	 * Keep a landscape crop similar to desktop so cover framing
	 * matches the desktop focal view (e.g. food-truck top crop).
	 * margin-top shows more banner image; padding-top only covers the
	 * remaining header overlap so the title stays vertically centered.
	 */
	.body--chennai .banner-page {
		min-height: calc(var(--ce-header-h) + clamp(200px, 56.25vw, 300px));
		padding: max(0px, calc(var(--ce-header-h) - 96px)) 15px 0;
		margin-top: 96px;
		align-items: center;
		justify-content: center;
	}

	.body--chennai .banner-page .content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex: 1 1 auto;
		align-self: stretch;
		width: 100%;
		min-height: 0;
		padding: 0;
		margin: 0;
		top: -18px;
	}

	.body--chennai .banner-page .banner-text {
		margin: 0;
	}

	.body--chennai .banner-page__bg {
		inset: 0;
		background-size: var(--ce-banner-fit, cover);
		background-position: var(--ce-banner-position, center center);
		transform: none !important;
	}
}

.ce-support-container .wg-blog .image img{
	height: 200px;
    object-fit: contain;
}
