/* The Menu — Main Styles */

:root {
	--tm-red: #D32F2F;
	--tm-brown: #8B4513;
	--tm-dark: #333;
	--tm-muted: #777;
	--tm-purple: #9C27B0;
	--tm-green: #28a745;
	--tm-orange: #fd7e14;
	--tm-white: #fff;
	--tm-bg: #f8f8f8;
	--tm-content-width: 1400px;
	--tm-menu-image-ratio: 4 / 3;
	--tm-radius: 12px;
	--tm-radius-pill: 4px;
	--tm-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	--tm-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	--tm-serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--tm-font);
	color: var(--tm-dark);
	background: var(--tm-bg);
	line-height: 1.6;
}

html {
	font-family: var(--tm-font);
}

.the-menu-site {
	min-height: 100vh;
	font-family: var(--tm-font);
}

.the-menu-site button,
.the-menu-site input,
.the-menu-site select,
.the-menu-site textarea {
	font-family: var(--tm-font);
}

.the-menu-site h1,
.the-menu-site h2,
.the-menu-site h3,
.the-menu-site h4,
.the-menu-site h5,
.the-menu-site h6,
.the-menu-category-title,
.the-menu-page-title,
.the-menu-single-title,
.the-menu-hero__title,
.the-menu-modal__title,
.the-menu-single-content-title,
.the-menu-header__logo-text,
.the-menu-footer__logo-text,
.the-menu-footer__info-title,
.the-menu-card__title,
.the-menu-content h1,
.the-menu-content h2,
.the-menu-content h3,
.the-menu-content h4,
.the-menu-content h5,
.the-menu-content h6 {
	font-family: var(--tm-serif);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Announcement Ticker */
.the-menu-ticker {
	display: flex;
	align-items: stretch;
	background: var(--tm-red);
	color: var(--tm-white);
	min-height: 36px;
	overflow: hidden;
}

.the-menu-ticker__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	padding: 0 14px;
	background: rgba(0, 0, 0, 0.18);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
	z-index: 2;
	box-shadow: 4px 0 12px rgba(0, 0, 0, 0.12);
}

.the-menu-ticker__badge-icon {
	font-size: 13px;
	line-height: 1;
}

.the-menu-ticker__viewport {
	flex: 1;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
}

.the-menu-ticker__viewport::before,
.the-menu-ticker__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 24px;
	z-index: 1;
	pointer-events: none;
}

.the-menu-ticker__viewport::before {
	left: 0;
	background: linear-gradient(to right, var(--tm-red), transparent);
}

.the-menu-ticker__viewport::after {
	right: 0;
	background: linear-gradient(to left, var(--tm-red), transparent);
}

.the-menu-ticker__track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	will-change: transform;
	animation: the-menu-ticker-scroll var(--ticker-duration, 25s) linear infinite;
}

.the-menu-ticker:hover .the-menu-ticker__track {
	animation-play-state: paused;
}

.the-menu-ticker__group {
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding-right: 48px;
}

.the-menu-ticker__item {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.the-menu-ticker__sep {
	margin: 0 18px;
	opacity: 0.65;
	font-size: 10px;
}

.the-menu-ticker__link {
	color: var(--tm-white);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.the-menu-ticker__link:hover {
	color: var(--tm-white);
	opacity: 0.85;
}

@keyframes the-menu-ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.the-menu-ticker__track {
		animation: none;
		transform: none;
		flex-wrap: wrap;
		white-space: normal;
		padding: 8px 16px;
	}

	.the-menu-ticker__group[aria-hidden="true"] {
		display: none;
	}

	.the-menu-ticker__group {
		padding-right: 0;
		flex-wrap: wrap;
		gap: 8px 0;
	}
}

/* Header */
.the-menu-header {
	background: var(--tm-white);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 100;
}
.the-menu-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 16px;
	max-width: var(--tm-content-width);
	margin: 0 auto;
}
.the-menu-header__logo {
	flex-shrink: 0;
}
.the-menu-header__nav {
	flex: 1;
	display: none;
	justify-content: flex-end;
	min-width: 0;
}
.the-menu-primary-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 4px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.the-menu-primary-nav__item {
	position: relative;
	margin: 0;
}
.the-menu-primary-nav__link {
	display: block;
	padding: 6px 0;
	color: var(--tm-dark);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
	white-space: nowrap;
}
.the-menu-primary-nav__link:hover,
.the-menu-primary-nav__item.current-menu-item > .the-menu-primary-nav__link,
.the-menu-primary-nav__item.current-menu-ancestor > .the-menu-primary-nav__link,
.the-menu-primary-nav__item.current_page_item > .the-menu-primary-nav__link {
	color: var(--tm-red);
}
.the-menu-primary-nav__item .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: auto;
	min-width: 180px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: var(--tm-white);
	border-radius: var(--tm-radius);
	box-shadow: var(--tm-shadow);
	z-index: 110;
}
.the-menu-primary-nav__item:hover > .sub-menu,
.the-menu-primary-nav__item:focus-within > .sub-menu {
	display: block;
}
.the-menu-primary-nav__subitem .the-menu-primary-nav__link {
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
}
.the-menu-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.the-menu-header__logo-text {
	font-size: 20px;
	font-weight: 700;
	color: var(--tm-red);
	text-decoration: none;
}
.the-menu-header__logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}
.the-menu-header__logo-img {
	display: block;
	max-height: 56px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}
.the-menu-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.the-menu-header__toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.the-menu-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tm-dark);
}

/* Buttons */
.the-menu-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: var(--tm-radius-pill);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s;
}
.the-menu-btn:hover { opacity: 0.85; }
.the-menu-btn--call,
.the-menu-btn--primary {
	background: var(--tm-red);
	color: var(--tm-white);
}
.the-menu-btn--dashboard {
	background: var(--tm-dark);
	color: var(--tm-white);
}
.the-menu-btn--register {
	background: var(--tm-red);
	color: var(--tm-white);
}
.the-menu-btn--map {
	background: var(--tm-white);
	color: var(--tm-red);
	margin-top: 16px;
}

/* Mobile Nav */
.the-menu-mobile-nav {
	background: var(--tm-white);
	padding: 16px;
	border-top: 1px solid #eee;
}
.the-menu-mobile-nav__link {
	display: block;
	padding: 10px 12px;
	color: var(--tm-dark);
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}
.the-menu-mobile-nav__link.is-active {
	background: var(--tm-brown);
	color: var(--tm-white);
	border-bottom-color: var(--tm-brown);
}
.the-menu-mobile-nav__divider {
	border-top: 2px solid #eee;
	margin: 12px 0 4px;
}
.the-menu-mobile-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.the-menu-mobile-nav__menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 12px;
}
.the-menu-mobile-nav__link--menu {
	text-transform: none;
}

/* Hero — full-width photos, no circular crop */
.the-menu-hero {
	position: relative;
	width: 100%;
	min-height: 500px;
	background: #1a100c;
	overflow: hidden;
	isolation: isolate;
}
.the-menu-hero.has-media {
	min-height: 0;
}
.the-menu-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}
.the-menu-hero.has-media .the-menu-hero__media {
	position: relative;
	inset: auto;
	width: 100%;
	line-height: 0;
}
.the-menu-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}
.the-menu-hero.has-media .the-menu-hero__media img {
	height: auto;
	max-height: min(85vh, 860px);
	object-fit: cover;
	object-position: center top;
}
.the-menu-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(0, 0, 0, 0.4);
	pointer-events: none;
}
.the-menu-hero.has-media .the-menu-hero__overlay {
	background: linear-gradient(90deg, rgba(12, 8, 6, 0.42) 0%, rgba(12, 8, 6, 0.18) 48%, rgba(12, 8, 6, 0.08) 100%);
}
.the-menu-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: var(--tm-content-width);
	min-height: 500px;
	margin: 0 auto;
	padding: 40px 16px;
}
.the-menu-hero.has-media .the-menu-hero__inner {
	position: absolute;
	inset: 0;
	min-height: 0;
}
.the-menu-hero__content {
	position: relative;
	z-index: 3;
	max-width: 600px;
	color: var(--tm-white);
}
.the-menu-hero__title {
	font-family: var(--tm-serif);
	font-size: 2.5rem;
	margin: 0 0 12px;
}
.the-menu-hero__description {
	font-size: 1rem;
	margin: 0 0 20px;
	opacity: 0.9;
}

/* Hero — Modern */
.the-menu-hero--modern {
	min-height: min(78vh, 720px);
}
.the-menu-hero--modern.has-media {
	min-height: 0;
}
.the-menu-hero--modern .the-menu-hero__glow {
	position: absolute;
	inset: auto -10% -30% 20%;
	height: 70%;
	background: radial-gradient(ellipse at center, color-mix(in srgb, var(--tm-red) 28%, transparent) 0%, transparent 70%);
	pointer-events: none;
	z-index: 1;
	opacity: 0.7;
	animation: tm-hero-glow 8s ease-in-out infinite alternate;
}
.the-menu-hero--modern .the-menu-hero__inner {
	min-height: min(78vh, 720px);
	padding: 56px 20px 64px;
}
.the-menu-hero--modern.has-media .the-menu-hero__inner {
	min-height: 0;
}
.the-menu-hero--modern .the-menu-hero__content {
	max-width: min(640px, 92%);
	padding: 8px 0;
	animation: tm-hero-content-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.the-menu-hero--modern .the-menu-hero__accent {
	display: block;
	width: 56px;
	height: 3px;
	margin: 0 0 18px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--tm-red), color-mix(in srgb, var(--tm-orange) 70%, var(--tm-red)));
	box-shadow: 0 0 18px color-mix(in srgb, var(--tm-red) 55%, transparent);
}
.the-menu-hero--modern .the-menu-hero__title {
	font-size: clamp(2.6rem, 6.5vw, 4.6rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	margin: 0 0 18px;
	max-width: 12ch;
	text-wrap: balance;
	text-shadow:
		0 2px 0 rgba(0, 0, 0, 0.15),
		0 18px 40px rgba(0, 0, 0, 0.45);
}
.the-menu-hero--modern .the-menu-hero__description {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.55;
	max-width: 36ch;
	margin: 0 0 28px;
	opacity: 0.92;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.the-menu-hero--modern .the-menu-hero__cta {
	position: relative;
	overflow: hidden;
	padding: 14px 28px;
	font-weight: 600;
	letter-spacing: 0.02em;
	box-shadow: 0 12px 28px color-mix(in srgb, var(--tm-red) 35%, transparent);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.the-menu-hero--modern .the-menu-hero__cta:hover,
.the-menu-hero--modern .the-menu-hero__cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px color-mix(in srgb, var(--tm-red) 45%, transparent);
}

@keyframes tm-hero-glow {
	0% { opacity: 0.45; transform: scale(1); }
	100% { opacity: 0.85; transform: scale(1.08); }
}
@keyframes tm-hero-content-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.the-menu-hero--modern .the-menu-hero__glow,
	.the-menu-hero--modern .the-menu-hero__content {
		animation: none;
	}
}

@media (max-width: 767px) {
	.the-menu-hero--modern {
		min-height: 420px;
	}
	.the-menu-hero--modern.has-media {
		min-height: 0;
	}
	.the-menu-hero--modern .the-menu-hero__inner {
		min-height: 420px;
		padding: 40px 16px 48px;
		align-items: end;
	}
	.the-menu-hero--modern.has-media .the-menu-hero__inner {
		min-height: 0;
		align-items: end;
	}
	.the-menu-hero--modern .the-menu-hero__content {
		max-width: 100%;
	}
	.the-menu-hero--modern .the-menu-hero__title {
		max-width: 12ch;
		font-size: clamp(2.2rem, 11vw, 3rem);
	}
	.the-menu-hero--modern .the-menu-hero__description {
		max-width: 28ch;
	}
}

@media (min-width: 1024px) {
	.the-menu-hero--modern .the-menu-hero__content {
		max-width: 680px;
	}
}

/* Category Nav */
.the-menu-category-nav-wrap {
	width: 100%;
	padding: 16px 0;
	background: var(--tm-white);
}
.the-menu-category-nav-wrap__inner {
	width: 100%;
	max-width: var(--tm-content-width);
	margin: 0 auto;
	padding: 0 16px;
}
.the-menu-category-select {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--tm-red);
	border-radius: var(--tm-radius-pill);
	font-size: 14px;
	color: var(--tm-dark);
}
.the-menu-category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 8px 0;
}
.the-menu-pill {
	display: inline-block;
	padding: 6px 12px;
	border: 1px solid var(--tm-red);
	color: var(--tm-red);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	border-radius: var(--tm-radius-pill);
	transition: all 0.2s;
}
.the-menu-pill:hover,
.the-menu-pill.is-active {
	background: var(--tm-brown);
	color: var(--tm-white);
	border-color: var(--tm-brown);
}

/* Sticky Nav */
.the-menu-sticky-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--tm-white);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
	z-index: 99;
	padding: 8px 0;
}
.the-menu-sticky-nav__scroll {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	padding: 0 12px;
	scrollbar-width: none;
}
.the-menu-sticky-nav__scroll::-webkit-scrollbar { display: none; }

/* Main Content */
.the-menu-main {
	max-width: var(--tm-content-width);
	margin: 0 auto;
	padding: 0 16px 100px;
}
.the-menu-page-title {
	font-family: var(--tm-serif);
	font-size: 2rem;
	text-align: center;
	margin: 24px 0;
	color: var(--tm-dark);
}
.the-menu-button {
	display: inline-block;
	margin: 8px 0 24px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--tm-red);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
.the-menu-button:hover,
.the-menu-button:focus {
	color: #fff;
	opacity: 0.92;
}
.the-menu-section { padding: 16px 0; }

/* Category Blocks */
.the-menu-category-block {
	margin-bottom: 40px;
	scroll-margin-top: 80px;
}
.the-menu-category-title {
	font-size: 1.5rem;
	margin: 0 0 16px;
	color: var(--tm-dark);
}
.the-menu-category-rule {
	display: block;
	height: 2px;
	background: repeating-linear-gradient(to right, var(--tm-muted) 0, var(--tm-muted) 4px, transparent 4px, transparent 8px);
	margin-top: 8px;
}
.the-menu-category-header--centered { text-align: center; }
.the-menu-category-header--underline .the-menu-category-title {
	border-bottom: 3px solid var(--tm-red);
	display: inline-block;
	padding-bottom: 4px;
}
.the-menu-category-title--lowercase { text-transform: lowercase; }
.the-menu-category-title--large { font-size: 2rem; text-align: center; }
.the-menu-category-preview {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin: 16px 0;
}
.the-menu-category-preview img {
	display: block;
	width: 112px;
	aspect-ratio: var(--tm-menu-image-ratio);
	height: auto;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	background: #ebe4dc;
}

/* Badge */
.the-menu-badge {
	display: inline-block;
	background: var(--tm-red);
	color: var(--tm-white);
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 3px;
	font-weight: 600;
	text-transform: uppercase;
}
.the-menu-badge--on-image,
.the-menu-badge--top,
.the-menu-badge--corner {
	position: absolute;
	z-index: 2;
}
.the-menu-badge--on-image { top: 8px; left: 8px; }
.the-menu-badge--top { top: 0; left: 0; right: 0; text-align: center; border-radius: 0; padding: 4px; }
.the-menu-badge--corner { top: 8px; right: 8px; }

/* Unavailable */
.the-menu-unavailable-label,
.the-menu-card__overlay-label {
	color: var(--tm-muted);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}
.the-menu-card__overlay-label {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	color: var(--tm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	z-index: 3;
}
.is-unavailable .the-menu-card__image,
.is-unavailable .the-menu-card__thumb { filter: grayscale(0.6); opacity: 0.7; }

/* Grids */
.the-menu-items-wrap--grid { display: grid; gap: 20px; }
.the-menu-grid--2 { grid-template-columns: repeat(2, 1fr); }
.the-menu-grid--3 { grid-template-columns: repeat(3, 1fr); }
.the-menu-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* Card Base */
.the-menu-card {
	background: var(--tm-white);
	border-radius: var(--tm-radius);
	overflow: hidden;
}
.the-menu-card__image-wrap,
.the-menu-card__thumb-link,
.the-menu-card__media {
	position: relative;
	overflow: hidden;
	background: #ebe4dc;
	isolation: isolate;
}
.the-menu-card__image-wrap,
.the-menu-card__thumb-link {
	aspect-ratio: var(--tm-menu-image-ratio);
	flex-shrink: 0;
}
.the-menu-card__thumb-link {
	display: block;
}
.the-menu-card__image,
.the-menu-card__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	max-width: none;
	transition: opacity 0.25s ease;
}
.the-menu-card__image.is-pending,
.the-menu-card__thumb.is-pending,
.the-menu-modal__image.is-pending,
.the-menu-single-image img.is-pending {
	opacity: 0;
}
.the-menu-card__image.is-loaded,
.the-menu-card__thumb.is-loaded,
.the-menu-modal__image.is-loaded,
.the-menu-single-image img.is-loaded {
	opacity: 1;
}

/* Spinner while menu images load */
.the-menu-card__image-wrap.is-loading::before,
.the-menu-card__thumb-link.is-loading::before,
.the-menu-card__media.is-loading::before,
.the-menu-modal__image-wrap.is-loading::before,
.the-menu-single-image.is-loading::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 1.75rem;
	height: 1.75rem;
	margin: -0.875rem 0 0 -0.875rem;
	border-radius: 50%;
	border: 2px solid rgba(51, 51, 51, 0.14);
	border-top-color: var(--tm-red);
	animation: the-menu-img-spin 0.7s linear infinite;
	pointer-events: none;
}
.the-menu-modal__image-wrap.is-loading::before,
.the-menu-single-image.is-loading::before {
	width: 2.25rem;
	height: 2.25rem;
	margin: -1.125rem 0 0 -1.125rem;
}

@keyframes the-menu-img-spin {
	to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
	.the-menu-card__image,
	.the-menu-card__thumb,
	.the-menu-modal__image,
	.the-menu-single-image img {
		transition: none;
	}
	.the-menu-card__image-wrap.is-loading::before,
	.the-menu-card__thumb-link.is-loading::before,
	.the-menu-card__media.is-loading::before,
	.the-menu-modal__image-wrap.is-loading::before,
	.the-menu-single-image.is-loading::before {
		animation: none;
		opacity: 0.65;
	}
}
.the-menu-card__title {
	margin: 0;
	font-size: 1rem;
}
.the-menu-card__title a {
	color: inherit;
	text-decoration: none;
}
.the-menu-card__title a:hover { color: var(--tm-red); }
.the-menu-card__price {
	font-weight: 700;
	color: var(--tm-red);
	margin: 4px 0;
}
.the-menu-price-variants {
	list-style: none;
	margin: 0;
	padding: 0;
}
.the-menu-price-variants__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}
.the-menu-price-variants__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--tm-dark);
}
.the-menu-price-variants__price {
	font-weight: 700;
	color: var(--tm-red);
	white-space: nowrap;
}
.the-menu-price-variants--leader {
	flex: 1 1 100%;
	width: 100%;
	margin-top: 6px;
}
.the-menu-price-variants--inline,
.the-menu-price-variants--bar {
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}
.the-menu-price-variants--block,
.the-menu-price-variants--centered {
	display: grid;
	gap: 4px;
}
.the-menu-price-variants--centered {
	text-align: center;
}
.the-menu-price-variants--centered .the-menu-price-variants__item {
	justify-content: center;
	gap: 8px;
}
.the-menu-price-variants--centered .the-menu-price-variants__price {
	color: var(--tm-green);
}
.the-menu-price-variants--modal .the-menu-price-variants__price {
	color: var(--tm-green);
}
.the-menu-modal__price--variants {
	margin: 0 0 8px;
}
.the-menu-single-price-card--variant {
	border-color: rgba(0, 0, 0, 0.08);
	background: var(--tm-white);
}
.the-menu-card__desc {
	color: var(--tm-muted);
	font-size: 14px;
	margin: 8px 0 0;
}
.the-menu-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.the-menu-card__image-wrap.is-placeholder,
.the-menu-card__thumb-link.is-placeholder,
.the-menu-card__media.is-placeholder,
.the-menu-single-image.is-placeholder {
	background: #ebe4dc;
}

.the-menu-card__image-wrap.is-placeholder .the-menu-card__image,
.the-menu-card__thumb-link.is-placeholder .the-menu-card__thumb,
.the-menu-card__media.is-placeholder .the-menu-card__image,
.the-menu-single-image.is-placeholder img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	max-width: none;
}

.the-menu-category-preview img.is-placeholder {
	object-fit: cover;
	object-position: center;
}

/* Footer */
.the-menu-footer {
	background: var(--tm-red);
	color: var(--tm-white);
	padding: 56px 20px 32px;
	margin-top: 48px;
}
.the-menu-footer__inner {
	max-width: var(--tm-content-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	text-align: center;
}
.the-menu-footer__logo-text {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--tm-white);
}
.the-menu-footer__logo-link {
	display: inline-block;
	text-decoration: none;
	line-height: 0;
}
.the-menu-footer__logo-img {
	display: block;
	max-height: 88px;
	width: auto;
	max-width: 300px;
	margin: 0 auto;
	object-fit: contain;
}
.the-menu-footer__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.the-menu-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	color: var(--tm-white);
	text-decoration: none;
	line-height: 0;
	transition: background 0.2s, transform 0.2s;
}
.the-menu-social-link svg {
	width: 20px;
	height: 20px;
	display: block;
	flex-shrink: 0;
}
.the-menu-social-link:hover {
	background: rgba(255, 255, 255, 0.32);
	transform: translateY(-2px);
	color: var(--tm-white);
}
.the-menu-footer__info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	width: 100%;
	max-width: 960px;
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.the-menu-footer__info-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.the-menu-footer__info-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.95;
}
.the-menu-footer__address,
.the-menu-footer__hours,
.the-menu-footer__payments,
.the-menu-footer__location {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
	opacity: 0.95;
}
.the-menu-footer__location {
	font-weight: 700;
	margin-bottom: 0.2rem;
}
.the-menu-footer__address {
	font-style: normal;
}
.the-menu-footer .the-menu-btn--map {
	margin-top: 4px;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 700;
	border: 2px solid var(--tm-white);
	background: transparent;
	color: var(--tm-white);
	transition: background 0.2s, color 0.2s;
}
.the-menu-footer .the-menu-btn--map:hover {
	background: var(--tm-white);
	color: var(--tm-red);
	opacity: 1;
}
.the-menu-footer__copyright {
	margin: 0;
	font-size: 0.95rem;
	opacity: 0.85;
	line-height: 1.5;
}
.the-menu-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	font-size: 0.9rem;
}
.the-menu-footer__legal a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.5);
	text-underline-offset: 0.22em;
}
.the-menu-footer__legal a:hover,
.the-menu-footer__legal a:focus-visible {
	color: inherit;
	text-decoration-color: currentColor;
}
.the-menu-footer__legal span {
	opacity: 0.55;
}

@media (min-width: 768px) {
	.the-menu-footer__info {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
		text-align: left;
	}
	.the-menu-footer__info-block:not(:last-child) {
		border-right: 1px solid rgba(255, 255, 255, 0.18);
		padding-right: 24px;
	}
}

/* Platform footer (homepage and public information pages) */
.the-menu-platform-footer {
	margin-top: 0;
	padding: clamp(3rem, 7vw, 5.5rem) 1.25rem 1.5rem;
	background: #0f172a;
	color: #cbd5e1;
}
.the-menu-platform-footer__inner {
	width: min(var(--tm-content-width), 100%);
	margin: 0 auto;
}
.the-menu-platform-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(260px, 0.85fr);
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: start;
	padding-bottom: 3rem;
}
.the-menu-platform-footer__brand p {
	max-width: 26rem;
	margin: 1rem 0 0;
	font-size: 0.94rem;
	line-height: 1.7;
	color: #94a3b8;
}
.the-menu-platform-footer .the-menu-footer__logo-text {
	color: #fff;
	font-family: var(--tm-serif);
	font-size: 2rem;
}
.the-menu-platform-footer .the-menu-footer__logo-img {
	max-width: 220px;
	max-height: 64px;
	margin: 0;
}
.the-menu-platform-footer__nav {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}
.the-menu-platform-footer__nav > div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.72rem;
}
.the-menu-platform-footer__nav h2 {
	margin: 0 0 0.35rem;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #fff;
}
.the-menu-platform-footer__nav a {
	color: #94a3b8;
	font-size: 0.9rem;
	text-decoration: none;
}
.the-menu-platform-footer__nav a:hover {
	color: #fff;
}
.the-menu-platform-footer__join {
	padding: 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.045);
}
.the-menu-platform-footer__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #34d399;
}
.the-menu-platform-footer__join h2 {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.35;
	color: #fff;
}
.the-menu-platform-footer__button {
	display: inline-flex;
	margin-top: 1rem;
	padding: 0.72rem 1rem;
	border-radius: 999px;
	background: var(--tm-red);
	color: #fff;
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
}
.the-menu-platform-footer__button:hover {
	background: color-mix(in srgb, var(--tm-red) 84%, #000);
	color: #fff;
}
.the-menu-platform-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 1rem 2rem;
	padding-top: 1.4rem;
	border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.the-menu-platform-footer__bottom p {
	margin: 0;
	font-size: 0.78rem;
	color: #64748b;
}

/* Platform About and Contact pages */
.the-menu-platform-page {
	padding-top: clamp(3rem, 7vw, 6rem);
	padding-bottom: clamp(4rem, 8vw, 7rem);
}
.the-menu-info-hero {
	max-width: 850px;
	margin: 0 auto clamp(3rem, 7vw, 5.5rem);
	text-align: center;
}
.the-menu-info-hero__eyebrow,
.the-menu-info-label {
	margin: 0 0 0.75rem;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--tm-red);
}
.the-menu-info-hero h1 {
	margin: 0;
	font-family: var(--tm-serif);
	font-size: clamp(2.25rem, 6vw, 4.6rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	color: #111827;
}
.the-menu-info-hero > p:last-child {
	max-width: 700px;
	margin: 1.4rem auto 0;
	font-size: clamp(1rem, 2vw, 1.18rem);
	line-height: 1.7;
	color: #6b7280;
}
.the-menu-info-split {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 7vw, 6rem);
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: 24px;
	background: #f3f4f6;
}
.the-menu-info-split h2 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	line-height: 1.15;
	color: #111827;
}
.the-menu-info-split__copy p {
	margin: 0;
	font-size: 1rem;
	line-height: 1.75;
	color: #4b5563;
}
.the-menu-info-split__copy p + p {
	margin-top: 1rem;
}
.the-menu-info-values,
.the-menu-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
	margin-top: 1.5rem;
}
.the-menu-info-values article,
.the-menu-contact-grid article {
	padding: clamp(1.5rem, 3vw, 2.2rem);
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	background: #fff;
}
.the-menu-info-values article > span {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: var(--tm-red);
}
.the-menu-info-values h3,
.the-menu-contact-grid h2 {
	margin: 1.1rem 0 0.55rem;
	font-size: 1.15rem;
	color: #111827;
}
.the-menu-info-values p,
.the-menu-contact-grid p {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.65;
	color: #6b7280;
}
.the-menu-info-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-top: clamp(3rem, 7vw, 5rem);
	padding: clamp(2rem, 5vw, 3.5rem);
	border-radius: 24px;
	background: #111827;
	color: #fff;
}
.the-menu-info-cta h2 {
	margin: 0;
	font-size: clamp(1.65rem, 3vw, 2.5rem);
	color: #fff;
}
.the-menu-info-cta div > p:last-child {
	max-width: 620px;
	margin: 0.7rem 0 0;
	line-height: 1.6;
	color: #9ca3af;
}
.the-menu-info-cta > a,
.the-menu-contact-grid a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0.82rem 1.15rem;
	border-radius: 999px;
	background: var(--tm-red);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}
.the-menu-contact-grid a {
	margin-top: 1.25rem;
}
.the-menu-info-cta > a:hover,
.the-menu-contact-grid a:hover {
	background: color-mix(in srgb, var(--tm-red) 84%, #000);
	color: #fff;
}
.the-menu-contact-grid {
	margin-top: 0;
}
.the-menu-contact-form-section {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(2rem, 6vw, 5rem);
	align-items: start;
	margin-bottom: 1.5rem;
	padding: clamp(2rem, 5vw, 4rem);
	border-radius: 24px;
	background: #f3f4f6;
}
.the-menu-contact-form-section h2 {
	margin: 0;
	font-size: clamp(1.65rem, 3vw, 2.4rem);
	line-height: 1.15;
	color: #111827;
}
.the-menu-contact-form-section > div > p:last-child {
	margin: 0.9rem 0 0;
	line-height: 1.65;
	color: #6b7280;
}
.the-menu-contact-form-section__form {
	padding: clamp(1.25rem, 3vw, 2rem);
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	background: #fff;
}
.the-menu-cf7-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.the-menu-cf7-grid label {
	display: grid;
	gap: 0.45rem;
	font-size: 0.8rem;
	font-weight: 700;
	color: #374151;
}
.the-menu-cf7-grid input:not([type="submit"]),
.the-menu-cf7-grid textarea {
	width: 100%;
	padding: 0.8rem 0.9rem;
	border: 1px solid #d1d5db;
	border-radius: 10px;
	background: #fff;
	font: inherit;
	font-weight: 400;
	color: #111827;
}
.the-menu-cf7-grid input:focus,
.the-menu-cf7-grid textarea:focus {
	outline: 2px solid color-mix(in srgb, var(--tm-red) 22%, transparent);
	border-color: var(--tm-red);
}
.the-menu-cf7-grid textarea {
	min-height: 130px;
	resize: vertical;
}
.the-menu-cf7-grid__message,
.the-menu-cf7-grid__submit {
	grid-column: 1 / -1;
}
.the-menu-cf7-grid input[type="submit"] {
	padding: 0.82rem 1.2rem;
	border: 0;
	border-radius: 999px;
	background: var(--tm-red);
	color: #fff;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 800;
	cursor: pointer;
}
.the-menu-cf7-grid input[type="submit"]:hover {
	background: color-mix(in srgb, var(--tm-red) 84%, #000);
}
.the-menu-contact-form-section .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.75rem 0.9rem;
	border-radius: 10px;
	font-size: 0.86rem;
}
.the-menu-contact-grid__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #ecfdf5;
	color: var(--tm-red);
	font-size: 1.2rem;
	font-weight: 800;
}
/* Contact page — platform support workspace */
.the-menu-contact-page {
	max-width: 1240px;
}
.the-menu-contact-hero {
	margin-bottom: clamp(2.25rem, 5vw, 4rem);
}
.the-menu-contact-hero__trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
	margin-top: 1.75rem;
}
.the-menu-contact-hero__trust span {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.58rem 0.85rem;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	background: #fff;
	color: #4b5563;
	font-size: 0.78rem;
	font-weight: 750;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.the-menu-contact-hero__trust span::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--tm-red);
}
.the-menu-contact-workspace {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	overflow: hidden;
	border: 1px solid #e5e7eb;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
}
.the-menu-contact-details {
	display: flex;
	flex-direction: column;
	padding: clamp(2rem, 4vw, 3.25rem);
	background:
		radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.11), transparent 32%),
		linear-gradient(145deg, #111827 0%, #172033 100%);
	color: #fff;
}
.the-menu-contact-details .the-menu-info-label {
	color: #6ee7b7;
}
.the-menu-contact-details__head h2,
.the-menu-contact-form-card__head h2 {
	margin: 0;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	line-height: 1.12;
	letter-spacing: -0.025em;
}
.the-menu-contact-details__head h2 {
	color: #fff;
}
.the-menu-contact-details__head > p:last-child,
.the-menu-contact-form-card__head > p:last-child {
	margin: 0.8rem 0 0;
	font-size: 0.93rem;
	line-height: 1.7;
}
.the-menu-contact-details__head > p:last-child {
	color: #aab4c5;
}
.the-menu-contact-details__list {
	display: grid;
	gap: 0.35rem;
	margin-top: 2rem;
}
.the-menu-contact-detail {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 0.9rem;
	padding: 0.85rem;
	border-radius: 14px;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}
a.the-menu-contact-detail:hover {
	transform: translateX(3px);
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
}
.the-menu-contact-detail__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: #6ee7b7;
}
.the-menu-contact-detail__icon svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.the-menu-contact-detail > span:last-child {
	display: grid;
	gap: 0.2rem;
	min-width: 0;
}
.the-menu-contact-detail small {
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #8591a5;
}
.the-menu-contact-detail strong {
	overflow-wrap: anywhere;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #f8fafc;
}
.the-menu-contact-details__map {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: auto;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none;
}
.the-menu-contact-details__map:hover {
	background: var(--tm-red);
	border-color: var(--tm-red);
	color: #fff;
}
.the-menu-contact-form-card {
	padding: clamp(2rem, 5vw, 4rem);
	background: #fff;
}
.the-menu-contact-form-card__head h2 {
	color: #111827;
}
.the-menu-contact-form-card__head > p:last-child {
	color: #6b7280;
}
.the-menu-contact-form-card .the-menu-contact-form-section__form {
	margin-top: 1.7rem;
	padding: 0;
	border: 0;
	border-radius: 0;
}
.the-menu-contact-form-card .the-menu-cf7-grid {
	gap: 1.15rem;
}
.the-menu-contact-form-card .the-menu-cf7-grid > p:first-child {
	display: contents;
}
.the-menu-contact-form-card .the-menu-cf7-grid > p:first-child > label:nth-of-type(3),
.the-menu-contact-form-card .the-menu-cf7-grid > p:first-child > .the-menu-cf7-grid__message {
	grid-column: 1 / -1;
}
.the-menu-contact-form-card .wpcf7-form-control-wrap {
	display: block;
}
.the-menu-contact-form-card .the-menu-cf7-grid label {
	gap: 0.55rem;
	font-size: 0.77rem;
	letter-spacing: 0.015em;
}
.the-menu-contact-form-card .the-menu-cf7-grid input:not([type="submit"]),
.the-menu-contact-form-card .the-menu-cf7-grid textarea {
	min-height: 48px;
	padding: 0.88rem 1rem;
	border-color: #dfe3e8;
	border-radius: 12px;
	background: #f9fafb;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.the-menu-contact-form-card .the-menu-cf7-grid input:focus,
.the-menu-contact-form-card .the-menu-cf7-grid textarea:focus {
	outline: none;
	border-color: var(--tm-red);
	background: #fff;
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--tm-red) 12%, transparent);
}
.the-menu-contact-form-card .the-menu-cf7-grid textarea {
	height: 160px;
	min-height: 160px;
}
.the-menu-contact-form-card .the-menu-cf7-grid input[type="submit"] {
	width: 100%;
	min-height: 50px;
	border-radius: 12px;
	box-shadow: 0 10px 24px color-mix(in srgb, var(--tm-red) 20%, transparent);
}
.the-menu-contact-form-card .wpcf7-spinner {
	display: block;
	margin: 0.65rem auto 0;
}
.the-menu-contact-form-card .wpcf7-not-valid-tip {
	margin-top: 0.35rem;
	font-size: 0.72rem;
	font-weight: 650;
}
.the-menu-contact-form-card__privacy {
	margin: 0.85rem 0 0;
	font-size: 0.73rem;
	line-height: 1.5;
	text-align: center;
	color: #9ca3af;
}
.the-menu-contact-form-unavailable {
	display: grid;
	gap: 0.8rem;
	padding: 1.25rem;
	border: 1px solid #fde68a;
	border-radius: 14px;
	background: #fffbeb;
	color: #78350f;
}
.the-menu-contact-form-unavailable a {
	color: var(--tm-red);
	font-weight: 800;
}
.the-menu-contact-paths {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	margin-top: 1.5rem;
}
.the-menu-contact-paths article {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1.1rem;
	padding: clamp(1.5rem, 3vw, 2.2rem);
	border: 1px solid #e5e7eb;
	border-radius: 20px;
	background: #fff;
}
.the-menu-contact-paths .the-menu-info-label {
	margin-bottom: 0.35rem;
}
.the-menu-contact-paths h2 {
	margin: 0;
	font-size: 1.2rem;
	color: #111827;
}
.the-menu-contact-paths p:not(.the-menu-info-label) {
	margin: 0.55rem 0 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: #6b7280;
}
.the-menu-contact-paths article > a {
	grid-column: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	width: fit-content;
	color: var(--tm-red);
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
}
.the-menu-contact-paths article > a:hover {
	color: color-mix(in srgb, var(--tm-red) 78%, #000);
}
.the-menu-legal-page {
	max-width: 900px;
}
.the-menu-legal-page .the-menu-info-hero {
	margin-bottom: 3rem;
}
.the-menu-legal-content {
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid #e5e7eb;
	border-radius: 22px;
	background: #fff;
}
.the-menu-legal-content section + section {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #f1f5f9;
}
.the-menu-legal-content h2 {
	margin: 0 0 0.7rem;
	font-size: 1.25rem;
	color: #111827;
}
.the-menu-legal-content p,
.the-menu-legal-content li {
	font-size: 0.96rem;
	line-height: 1.75;
	color: #4b5563;
}
.the-menu-legal-content p {
	margin: 0;
}
.the-menu-legal-content ul {
	margin: 0.7rem 0 0;
	padding-left: 1.25rem;
}

@media (max-width: 900px) {
	.the-menu-platform-footer__top {
		grid-template-columns: 1fr;
	}
	.the-menu-platform-footer__join {
		grid-column: auto;
	}
	.the-menu-contact-workspace {
		grid-template-columns: 1fr;
	}
	.the-menu-contact-details__map {
		margin-top: 1.5rem;
	}
}

@media (max-width: 700px) {
	.the-menu-platform-footer__top,
	.the-menu-info-split,
	.the-menu-info-values,
	.the-menu-contact-grid,
	.the-menu-contact-form-section {
		grid-template-columns: 1fr;
	}
	.the-menu-contact-paths {
		grid-template-columns: 1fr;
	}
	.the-menu-platform-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.the-menu-cf7-grid {
		grid-template-columns: 1fr;
	}
	.the-menu-cf7-grid__message,
	.the-menu-cf7-grid__submit {
		grid-column: auto;
	}
	.the-menu-contact-form-card .the-menu-cf7-grid > p:first-child > label,
	.the-menu-contact-form-card .the-menu-cf7-grid > p:first-child > label:nth-of-type(3),
	.the-menu-contact-form-card .the-menu-cf7-grid > p:first-child > .the-menu-cf7-grid__message,
	.the-menu-contact-form-card .the-menu-cf7-grid__submit {
		grid-column: 1 / -1;
	}
	.the-menu-platform-footer__join {
		grid-column: auto;
	}
	.the-menu-platform-footer__bottom,
	.the-menu-info-cta {
		align-items: flex-start;
		flex-direction: column;
	}
	.the-menu-platform-footer__bottom p:last-child {
		display: none;
	}
	.the-menu-contact-workspace {
		border-radius: 20px;
	}
	.the-menu-contact-details,
	.the-menu-contact-form-card {
		padding: 1.5rem;
	}
	.the-menu-contact-detail {
		padding-inline: 0;
	}
}

/* Scroll Top */
.the-menu-scroll-top {
	position: fixed;
	bottom: 90px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--tm-red);
	color: var(--tm-white);
	border: none;
	cursor: pointer;
	font-size: 18px;
	z-index: 98;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.the-menu-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Modal */
.the-menu-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
}
.the-menu-modal[hidden] { display: none; }
.the-menu-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}
.the-menu-modal__content {
	position: relative;
	background: var(--tm-white);
	border-radius: var(--tm-radius);
	max-width: 480px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 1;
}
.the-menu-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: var(--tm-dark);
	z-index: 2;
}
.the-menu-modal__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: var(--tm-menu-image-ratio);
	background: #f0ebe6;
}
.the-menu-modal__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: opacity 0.25s ease;
}
.the-menu-modal__unavailable {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--tm-red);
	color: var(--tm-white);
	padding: 8px 16px;
	font-weight: 700;
}
.the-menu-modal__body { padding: 20px; }
.the-menu-modal__title { margin: 0 0 8px; font-size: 1.5rem; }
.the-menu-modal__price { color: var(--tm-green); font-weight: 700; font-size: 1.2rem; }
.the-menu-modal__group-price { color: var(--tm-orange); font-weight: 600; }
.the-menu-modal__description { color: var(--tm-muted); }

/* Single Item */
.the-menu-single {
	padding-top: 24px;
}

.the-menu-single-breadcrumb {
	margin-bottom: 20px;
}

.the-menu-single-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--tm-red);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: opacity 0.2s;
}

.the-menu-single-back:hover {
	opacity: 0.8;
}

.the-menu-single-item {
	width: 100%;
}

.the-menu-single-layout {
	display: grid;
	gap: 28px;
	background: var(--tm-white);
	border-radius: calc(var(--tm-radius) + 4px);
	box-shadow: var(--tm-shadow);
	overflow: hidden;
}

.the-menu-single-media {
	position: relative;
}

.the-menu-single-image {
	position: relative;
	overflow: hidden;
	background: #ebe4dc;
	aspect-ratio: var(--tm-menu-image-ratio);
	border-radius: calc(var(--tm-radius) + 2px);
}

.the-menu-single-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	max-width: none;
	transition: opacity 0.25s ease;
}

.the-menu-single-image.is-unavailable img {
	filter: grayscale(0.6);
}

.the-menu-single-image.is-unavailable img.is-loaded {
	opacity: 0.75;
}

.the-menu-single-badge {
	top: 16px;
	right: 16px;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 999px;
}

.the-menu-single-details {
	padding: 24px 20px 28px;
}

.the-menu-single-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.the-menu-single-category {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--tm-red);
	color: var(--tm-red);
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 999px;
	transition: all 0.2s;
}

.the-menu-single-category:hover {
	background: var(--tm-brown);
	border-color: var(--tm-brown);
	color: var(--tm-white);
}

.the-menu-single-title {
	font-family: var(--tm-serif);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.2;
	margin: 0 0 12px;
	color: var(--tm-dark);
}

.the-menu-single-excerpt {
	font-size: 1.05rem;
	color: var(--tm-muted);
	margin: 0 0 20px;
	line-height: 1.7;
}

.the-menu-single-prices {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
}

.the-menu-single-price-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	border-radius: var(--tm-radius);
	background: var(--tm-bg);
	border: 1px solid #eee;
}

.the-menu-single-price-card--solo {
	border-left: 4px solid var(--tm-green);
}

.the-menu-single-price-card--sharing {
	border-left: 4px solid var(--tm-purple);
}

.the-menu-single-price-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--tm-muted);
}

.the-menu-single-price-value {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
}

.the-menu-price--solo {
	color: var(--tm-green);
}

.the-menu-price--group {
	color: var(--tm-purple);
}

.the-menu-single-content {
	margin-bottom: 28px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.the-menu-single-content-title {
	font-size: 1.1rem;
	margin: 0 0 12px;
	color: var(--tm-dark);
}

.the-menu-single-content p,
.the-menu-single-content ul,
.the-menu-single-content ol {
	color: var(--tm-dark);
	line-height: 1.8;
}

.the-menu-single-content p:last-child {
	margin-bottom: 0;
}

.the-menu-single-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.the-menu-btn--outline {
	background: transparent;
	color: var(--tm-red);
	border: 2px solid var(--tm-red);
}

.the-menu-btn--outline:hover {
	opacity: 0.85;
}

@media (min-width: 768px) {
	.the-menu-single-layout {
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}

	.the-menu-single-details {
		padding: 36px 32px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.the-menu-single-prices {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.the-menu-single-layout {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.the-menu-single-details {
		padding: 48px 40px;
	}
}

/* Empty state */
.the-menu-empty {
	text-align: center;
	padding: 40px;
	color: var(--tm-muted);
}

/* Responsive */
.the-menu-hide-mobile { display: none; }
.the-menu-hide-desktop { display: block; }

@media (min-width: 768px) {
	.the-menu-hide-mobile { display: block; }
	.the-menu-hide-desktop { display: none; }
	.the-menu-header__toggle { display: none; }
	.the-menu-header__nav.the-menu-hide-mobile { display: flex; }
	.the-menu-grid--2 { grid-template-columns: repeat(2, 1fr); }
	.the-menu-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.the-menu-grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
	.the-menu-grid--5 { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 767px) {
	.the-menu-grid--2,
	.the-menu-grid--3,
	.the-menu-grid--5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.the-menu-hero__title { font-size: 1.8rem; }
}

/* App-style bottom tab bar (mobile only) */
.the-menu-tabbar {
	position: fixed;
	inset: auto 0 0;
	z-index: 110;
	display: none;
	align-items: stretch;
	justify-content: space-around;
	gap: 0.15rem;
	padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
	background: color-mix(in srgb, var(--tm-white) 92%, transparent);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
}

.the-menu-tabbar__item {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	padding: 0.35rem 0.2rem 0.25rem;
	border: 0;
	border-radius: 0.85rem;
	background: transparent;
	color: var(--tm-muted);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.the-menu-tabbar__item svg {
	flex-shrink: 0;
}

.the-menu-tabbar__item span {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.the-menu-tabbar__item.is-active {
	color: var(--tm-red);
	background: color-mix(in srgb, var(--tm-red) 9%, transparent);
}

.the-menu-tabbar__fab {
	display: grid;
	place-items: center;
	width: 2.65rem;
	height: 2.65rem;
	margin-top: -1.15rem;
	margin-bottom: 0.05rem;
	border-radius: 999px;
	background: var(--tm-red);
	color: var(--tm-white);
	box-shadow: 0 6px 16px color-mix(in srgb, var(--tm-red) 40%, transparent);
}

.the-menu-tabbar__item--primary {
	color: var(--tm-red);
}

.the-menu-tabbar__item--primary:active .the-menu-tabbar__fab {
	transform: scale(0.96);
}

/* Mobile app-style layout */
@media (max-width: 767px) {
	.the-menu-tabbar {
		display: flex;
	}

	.the-menu-main {
		padding: 0 14px calc(90px + env(safe-area-inset-bottom, 0px));
	}

	.the-menu-footer {
		padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
	}

	.the-menu-header__inner {
		padding: 8px 14px;
		min-height: 3.5rem;
	}

	.the-menu-header__logo img,
	.the-menu-header__logo .custom-logo {
		max-height: 36px;
		width: auto;
	}

	.the-menu-btn--call {
		padding: 8px 12px;
		font-size: 0.8rem;
	}

	/* Call lives in the tab bar FAB on mobile */
	.the-menu-header .the-menu-btn--call {
		display: none;
	}

	.the-menu-page-title {
		font-size: 1.5rem;
		margin: 18px 0 14px;
	}

	.the-menu-section {
		padding: 8px 0;
	}

	.the-menu-hero {
		min-height: 320px;
	}

	.the-menu-hero.has-media {
		min-height: 0;
	}

	.the-menu-hero__inner {
		min-height: 320px;
		padding: 28px 16px;
	}

	.the-menu-hero.has-media .the-menu-hero__inner {
		min-height: 0;
	}

	.the-menu-hero__description {
		font-size: 0.95rem;
	}

	.the-menu-category-block {
		scroll-margin-top: 70px;
	}

	.the-menu-items-wrap--grid {
		gap: 12px;
	}

	.the-menu-card {
		border-radius: 16px;
	}

	.the-menu-card__desc {
		font-size: 13px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	/* Category sticky strip sits above the app tab bar */
	.the-menu-sticky-nav {
		bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
		padding: 10px 0;
		border-radius: 18px 18px 0 0;
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
		z-index: 105;
	}

	.the-menu-sticky-nav .the-menu-pill {
		border-radius: 999px;
		padding: 7px 14px;
		white-space: nowrap;
	}

	/* Swipeable category pills strip */
	.the-menu-category-pills {
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		scrollbar-width: none;
		padding: 8px 14px;
		margin: 0 -16px;
		scroll-padding-left: 14px;
	}

	.the-menu-category-pills::-webkit-scrollbar {
		display: none;
	}

	.the-menu-category-pills .the-menu-pill {
		border-radius: 999px;
		padding: 8px 16px;
		flex-shrink: 0;
		white-space: nowrap;
		scroll-snap-align: start;
	}

	.the-menu-category-dropdown + .the-menu-category-pills {
		padding-top: 12px;
	}

	.the-menu-category-select {
		border-radius: 999px;
		padding: 12px 16px;
		background: var(--tm-white);
	}

	.the-menu-scroll-top {
		bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
	}

	body.the-menu-sticky-nav-visible .the-menu-scroll-top {
		bottom: calc(8.25rem + env(safe-area-inset-bottom, 0px));
	}
}

/* Tenant directory (homepage) */
body.the-menu-platform {
	background: #f4f1ec;
}
body.the-menu-platform .the-menu-ticker {
	background: #1c1917;
	min-height: 34px;
}
body.the-menu-platform .the-menu-ticker__badge {
	background: rgba(255, 255, 255, 0.08);
	letter-spacing: 0.12em;
}
body.the-menu-platform .the-menu-ticker__viewport::before {
	background: linear-gradient(to right, #1c1917, transparent);
}
body.the-menu-platform .the-menu-ticker__viewport::after {
	background: linear-gradient(to left, #1c1917, transparent);
}
body.the-menu-platform .the-menu-header {
	background: rgba(255, 255, 255, 0.92);
	box-shadow: none;
	border-bottom: 1px solid rgba(28, 25, 23, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}
body.the-menu-platform .the-menu-header__inner {
	padding: 14px 20px;
}
body.the-menu-platform .the-menu-btn--dashboard {
	background: transparent;
	color: #1c1917;
	border: 1px solid rgba(28, 25, 23, 0.16);
	border-radius: 999px;
	padding: 9px 16px;
}
body.the-menu-platform .the-menu-btn--dashboard:hover {
	opacity: 1;
	background: #1c1917;
	color: #fff;
}
body.the-menu-platform .the-menu-btn--call {
	border-radius: 999px;
	padding: 9px 16px;
}
body.the-menu-platform .the-menu-hero--platform .the-menu-hero__overlay {
	background: linear-gradient(90deg, rgba(16, 12, 10, 0.62) 0%, rgba(16, 12, 10, 0.28) 48%, rgba(16, 12, 10, 0.12) 100%);
}
body.the-menu-platform .the-menu-hero--platform .the-menu-hero__title {
	color: #fff;
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
body.the-menu-platform .the-menu-hero--platform .the-menu-hero__description {
	color: rgba(255, 255, 255, 0.92);
}
body.the-menu-platform .the-menu-hero--platform .the-menu-hero__cta,
body.the-menu-platform .the-menu-hero--platform .the-menu-btn--primary {
	background: #fff;
	color: #1c1917;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
body.the-menu-platform .the-menu-hero--platform .the-menu-hero__cta:hover,
body.the-menu-platform .the-menu-hero--platform .the-menu-btn--primary:hover {
	opacity: 1;
	background: #f4f1ec;
}

.the-menu-directory {
	padding: 0 0 5rem;
	background: #f4f1ec;
}
.the-menu-directory__toolbar {
	width: min(920px, calc(100% - 2rem));
	margin: -2.25rem auto 0;
	position: relative;
	z-index: 4;
}
.the-menu-directory__toolbar--solo {
	margin: 0 auto;
	padding: 2.75rem 0 0;
	width: min(var(--tm-content-width), calc(100% - 2rem));
}
.the-menu-directory__intro {
	max-width: 38rem;
	margin: 0 auto 1.5rem;
	text-align: center;
}
.the-menu-directory__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #8a7d72;
}
.the-menu-directory__title {
	margin: 0 auto 0.65rem;
	font-family: var(--tm-serif);
	font-size: clamp(1.9rem, 4vw, 2.7rem);
	line-height: 1.12;
	color: #1c1917;
}
.the-menu-directory__lead {
	margin: 0 auto;
	color: #6b6158;
	font-size: 1.02rem;
	line-height: 1.55;
}
.the-menu-directory__search {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.45rem 0.45rem 0.45rem 1rem;
	background: #fff;
	border: 1px solid rgba(28, 25, 23, 0.08);
	border-radius: 999px;
	box-shadow: 0 18px 40px -24px rgba(28, 25, 23, 0.45);
}
.the-menu-directory__search-icon {
	display: inline-flex;
	color: #8a7d72;
	flex-shrink: 0;
}
.the-menu-directory__search input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0.7rem 0.25rem;
	border: 0;
	background: transparent;
	font: inherit;
	font-size: 0.98rem;
	color: #1c1917;
}
.the-menu-directory__search input:focus {
	outline: none;
}
.the-menu-directory__search:focus-within {
	border-color: color-mix(in srgb, var(--tm-red) 45%, #d7cfc6);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--tm-red) 12%, transparent), 0 18px 40px -24px rgba(28, 25, 23, 0.45);
}
.the-menu-directory__search-btn {
	flex-shrink: 0;
	padding: 0.78rem 1.2rem;
	border: 0;
	border-radius: 999px;
	background: var(--tm-red);
	color: #fff;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
}
.the-menu-directory__search-btn:hover {
	filter: brightness(0.95);
}

.the-menu-directory__listing {
	width: min(var(--tm-content-width), calc(100% - 2rem));
	margin: 2.5rem auto 0;
}
.the-menu-directory__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.35rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}
.the-menu-directory__heading {
	margin: 0;
	font-family: var(--tm-serif);
	font-size: clamp(1.55rem, 2.6vw, 2rem);
	line-height: 1.15;
	color: #1c1917;
}
.the-menu-directory__count {
	margin: 0;
	color: #8a7d72;
	font-size: 0.88rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}
.the-menu-directory__empty {
	margin: 0;
	padding: 2.25rem 1.5rem;
	text-align: center;
	color: #6b6158;
	background: #fff;
	border-radius: 18px;
	border: 1px dashed #ddd4cb;
}
.the-menu-directory__empty--filter {
	margin-top: 1rem;
}
.the-menu-directory__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
}
.the-menu-directory__more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}
.the-menu-directory__more-wrap[hidden] {
	display: none;
}
.the-menu-directory__more {
	min-width: 13rem;
	padding: 0.82rem 1.3rem;
	border: 1px solid rgba(28, 25, 23, 0.14);
	border-radius: 999px;
	background: #fff;
	color: #1c1917;
	font: inherit;
	font-size: 0.9rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 8px 24px -18px rgba(28, 25, 23, 0.45);
}
.the-menu-directory__more:hover:not(:disabled) {
	border-color: var(--tm-red);
	color: var(--tm-red);
}
.the-menu-directory__more:focus-visible {
	outline: 2px solid var(--tm-red);
	outline-offset: 3px;
}
.the-menu-directory__more:disabled {
	cursor: wait;
	opacity: 0.65;
}
.the-menu-tenant-card {
	position: relative;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid rgba(28, 25, 23, 0.08);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.the-menu-tenant-card:hover,
.the-menu-tenant-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(28, 25, 23, 0.14);
	box-shadow: 0 18px 36px -22px rgba(28, 25, 23, 0.35);
}
.the-menu-tenant-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none;
}
.the-menu-tenant-card__media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #ece6de;
}
.the-menu-tenant-card.has-fallback .the-menu-tenant-card__media {
	background:
		linear-gradient(160deg, #2a2320 0%, #1c1917 70%);
}
.the-menu-tenant-card__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 1.35rem 1.5rem;
	display: block;
	background: #f7f3ee;
}
.the-menu-tenant-card__mark {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--tm-serif);
	font-size: 2.6rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: #f7f3ee;
}
.the-menu-tenant-card__chip {
	position: absolute;
	left: 0.85rem;
	bottom: 0.85rem;
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #1c1917;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.the-menu-tenant-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	flex: 1;
	padding: 1.05rem 1.15rem 1.15rem;
}
.the-menu-tenant-card__name {
	margin: 0;
	font-family: var(--tm-serif);
	font-size: 1.22rem;
	line-height: 1.25;
	color: #1c1917;
}
.the-menu-tenant-card__address {
	margin: 0;
	font-size: 0.9rem;
	color: #6b6158;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.the-menu-tenant-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	align-self: flex-start;
	margin-top: auto;
	padding: 0.55rem 0.85rem 0.55rem 0;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--tm-red);
}
.the-menu-tenant-card__cta svg {
	transition: transform 0.2s ease;
}
.the-menu-tenant-card:hover .the-menu-tenant-card__cta svg,
.the-menu-tenant-card:focus-within .the-menu-tenant-card__cta svg {
	transform: translateX(3px);
}
.the-menu-tenant-card.is-hidden {
	display: none;
}
.the-menu-tenant-back {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	width: min(var(--tm-content-width), calc(100% - 2rem));
	margin: 1rem auto 0;
	font-size: 0.92rem;
}
.the-menu-tenant-back a {
	color: var(--tm-muted);
	font-weight: 600;
	text-decoration: none;
}
.the-menu-tenant-back a:hover {
	color: var(--tm-red);
}
.the-menu-tenant-back__meta {
	color: var(--tm-muted);
}

.the-menu-tenant-home-cta {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(1rem, 3vw, 2rem);
	max-width: var(--tm-content-width);
	margin: clamp(3rem, 7vw, 5rem) auto 0;
	padding: clamp(1.35rem, 3vw, 2rem);
	border: 1px solid color-mix(in srgb, var(--tm-red) 22%, transparent);
	border-radius: 24px;
	background:
		radial-gradient(circle at 8% 15%, color-mix(in srgb, var(--tm-red) 14%, transparent), transparent 30%),
		linear-gradient(135deg, color-mix(in srgb, var(--tm-red) 7%, #fff) 0%, #fff 58%, color-mix(in srgb, var(--tm-green) 7%, #fff) 100%);
	box-shadow: 0 22px 48px -34px rgba(20, 15, 12, 0.45);
	overflow: hidden;
}

.the-menu-tenant-home-cta__art {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(4rem, 8vw, 5.25rem);
	height: clamp(4rem, 8vw, 5.25rem);
	border-radius: 20px;
	background: var(--tm-red);
	color: #fff;
	box-shadow: 0 14px 30px -18px color-mix(in srgb, var(--tm-red) 85%, #000);
}

.the-menu-tenant-home-cta__icon {
	display: grid;
	place-items: center;
}

.the-menu-tenant-home-cta__spark {
	position: absolute;
	width: 0.42rem;
	height: 0.42rem;
	border-radius: 50%;
	background: #fff;
	opacity: 0.7;
}

.the-menu-tenant-home-cta__spark--one { top: 0.8rem; right: 0.75rem; }
.the-menu-tenant-home-cta__spark--two { bottom: 0.85rem; left: 0.8rem; width: 0.28rem; height: 0.28rem; }

.the-menu-tenant-home-cta__copy { min-width: 0; }
.the-menu-tenant-home-cta__eyebrow {
	margin: 0 0 0.35rem;
	color: var(--tm-red);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.the-menu-tenant-home-cta__copy h2 {
	margin: 0;
	font-family: var(--tm-serif);
	font-size: clamp(1.35rem, 3vw, 2rem);
	line-height: 1.15;
	color: var(--tm-dark);
}

.the-menu-tenant-home-cta__copy > p:last-child {
	max-width: 42rem;
	margin: 0.55rem 0 0;
	color: var(--tm-muted);
	font-size: 0.94rem;
	line-height: 1.65;
}

.the-menu-tenant-home-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	min-height: 3rem;
	padding: 0.8rem 1.15rem;
	border-radius: 999px;
	background: var(--tm-red);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 12px 24px -16px color-mix(in srgb, var(--tm-red) 85%, #000);
	transition: transform 0.18s ease, filter 0.18s ease;
}

.the-menu-tenant-home-cta__button:hover {
	color: #fff;
	filter: brightness(1.06);
	transform: translateY(-2px);
}

@media (max-width: 760px) {
	.the-menu-tenant-home-cta {
		grid-template-columns: auto minmax(0, 1fr);
		border-radius: 20px;
	}
	.the-menu-tenant-home-cta__button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 480px) {
	.the-menu-tenant-home-cta {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.the-menu-tenant-home-cta__art { margin: 0 auto; }
	.the-menu-tenant-home-cta__copy > p:last-child { margin-inline: auto; }
}

.the-menu-directory__steps {
	width: min(var(--tm-content-width), calc(100% - 2rem));
	margin: 3rem auto 0;
}
.the-menu-directory__steps-list {
	list-style: none;
	margin: 0;
	padding: 1.25rem 0 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	border-top: 1px solid rgba(28, 25, 23, 0.08);
}
.the-menu-directory__steps-list li {
	display: grid;
	gap: 0.3rem;
}
.the-menu-directory__step-num {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--tm-red);
}
.the-menu-directory__steps-list strong {
	font-family: var(--tm-serif);
	font-size: 1.08rem;
	color: #1c1917;
}
.the-menu-directory__steps-list span:last-child {
	font-size: 0.92rem;
	color: #6b6158;
	line-height: 1.45;
}

.the-menu-directory__cta {
	width: min(var(--tm-content-width), calc(100% - 2rem));
	margin: 3rem auto 0;
}
.the-menu-directory__cta-inner {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1.5rem 2.5rem;
	align-items: center;
	padding: clamp(1.6rem, 3.5vw, 2.4rem);
	border-radius: 22px;
	background: #1c1917;
	color: #f4f1ec;
}
.the-menu-directory__cta-eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(244, 241, 236, 0.55);
}
.the-menu-directory__cta-title {
	margin: 0 0 0.7rem;
	max-width: 14ch;
	font-family: var(--tm-serif);
	font-size: clamp(1.6rem, 3vw, 2.15rem);
	line-height: 1.12;
	color: #fff;
}
.the-menu-directory__cta-lead {
	margin: 0;
	max-width: 34rem;
	font-size: 0.98rem;
	line-height: 1.55;
	color: rgba(244, 241, 236, 0.74);
}
.the-menu-directory__cta-side {
	display: grid;
	gap: 1rem;
}
.the-menu-directory__cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}
.the-menu-directory__cta-primary,
.the-menu-directory__cta-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.8rem 1.2rem;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.92rem;
}
.the-menu-directory__cta-primary {
	background: #fff;
	color: #1c1917 !important;
}
.the-menu-directory__cta-primary:hover {
	background: #f4f1ec;
}
.the-menu-directory__cta-secondary {
	border: 1px solid rgba(255, 255, 255, 0.22);
	background: transparent;
	color: #fff !important;
}
.the-menu-directory__cta-secondary:hover {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.06);
}
.the-menu-directory__cta-points {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
	font-size: 0.88rem;
	color: rgba(244, 241, 236, 0.68);
}
.the-menu-directory__cta-points li {
	position: relative;
	padding-left: 1rem;
}
.the-menu-directory__cta-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--tm-red);
}

@media (max-width: 767px) {
	.the-menu-directory__toolbar {
		margin-top: -1.35rem;
	}
	.the-menu-directory__search {
		border-radius: 16px;
		flex-wrap: wrap;
		padding: 0.65rem;
	}
	.the-menu-directory__search-icon {
		margin-left: 0.35rem;
	}
	.the-menu-directory__search input[type="search"] {
		flex: 1 1 12rem;
	}
	.the-menu-directory__search-btn {
		width: 100%;
	}
	.the-menu-directory__head {
		align-items: flex-start;
		flex-direction: column;
	}
	.the-menu-directory__steps-list,
	.the-menu-directory__cta-inner {
		grid-template-columns: 1fr;
	}
	.the-menu-directory__cta-title {
		max-width: none;
	}
}

/* Homepage directory refresh */
body.the-menu-platform {
	background: #f4f5f7;
}
body.the-menu-platform .the-menu-ticker {
	background: #111827;
}
body.the-menu-platform .the-menu-ticker__viewport::before {
	background: linear-gradient(to right, #111827, transparent);
}
body.the-menu-platform .the-menu-ticker__viewport::after {
	background: linear-gradient(to left, #111827, transparent);
}
body.the-menu-platform .the-menu-header {
	background: #fff;
	border-bottom: 1px solid #eef0f3;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
body.the-menu-platform .the-menu-header__logo-text {
	color: #111827;
}
body.the-menu-platform .the-menu-directory h1,
body.the-menu-platform .the-menu-directory h2,
body.the-menu-platform .the-menu-directory h3,
body.the-menu-platform .the-menu-directory__title,
body.the-menu-platform .the-menu-directory__heading,
body.the-menu-platform .the-menu-directory__cta-title,
body.the-menu-platform .the-menu-directory__steps-list strong,
body.the-menu-platform .the-menu-tenant-card__name {
	font-family: var(--tm-font);
}
body.the-menu-platform .the-menu-primary-nav__link:hover,
body.the-menu-platform .the-menu-primary-nav__item.current-menu-item > .the-menu-primary-nav__link {
	color: var(--tm-red);
}
body.the-menu-platform .the-menu-btn--dashboard {
	background: var(--tm-red);
	color: #fff;
	border-color: var(--tm-red);
}
body.the-menu-platform .the-menu-btn--dashboard:hover {
	background: color-mix(in srgb, var(--tm-red) 84%, #000);
	border-color: color-mix(in srgb, var(--tm-red) 84%, #000);
	color: #fff;
}
body .the-menu-btn--login,
body.the-menu-platform .the-menu-btn--login {
	background: transparent;
	color: var(--tm-dark);
	border: 1px solid color-mix(in srgb, var(--tm-dark) 20%, transparent);
}
body .the-menu-btn--login:hover,
body.the-menu-platform .the-menu-btn--login:hover {
	background: var(--tm-dark);
	border-color: var(--tm-dark);
	color: #fff;
}
body.the-menu-platform .the-menu-header__toggle span {
	background: #111827;
}
body.the-menu-platform .the-menu-hero--modern {
	min-height: min(48vh, 420px);
}
body.the-menu-platform .the-menu-hero--modern.has-media {
	min-height: 0;
}
body.the-menu-platform .the-menu-hero--modern .the-menu-hero__inner {
	min-height: min(48vh, 420px);
	padding: 40px 20px 48px;
}
body.the-menu-platform .the-menu-hero--modern.has-media .the-menu-hero__inner {
	min-height: 0;
}
body.the-menu-platform .the-menu-hero.has-media .the-menu-hero__media img {
	max-height: min(52vh, 520px);
}
body.the-menu-platform .the-menu-hero--modern .the-menu-hero__title {
	font-size: clamp(2.05rem, 5vw, 3.35rem);
}
body.the-menu-platform .the-menu-hero--modern .the-menu-hero__accent {
	width: 40px;
	background: var(--tm-red);
	box-shadow: none;
}
body.the-menu-platform .the-menu-hero--modern .the-menu-hero__glow {
	display: none;
}
body.the-menu-platform .the-menu-hero--platform .the-menu-hero__cta,
body.the-menu-platform .the-menu-hero--platform .the-menu-btn--primary {
	background: var(--tm-red);
	color: #fff;
	box-shadow: 0 10px 24px color-mix(in srgb, var(--tm-red) 28%, transparent);
}
body.the-menu-platform .the-menu-hero--platform .the-menu-hero__cta:hover,
body.the-menu-platform .the-menu-hero--platform .the-menu-btn--primary:hover {
	background: color-mix(in srgb, var(--tm-red) 84%, #000);
}
body.the-menu-platform .the-menu-footer {
	background: #111827;
}
body.the-menu-platform .the-menu-footer .the-menu-btn--map:hover {
	color: #111827;
}

.the-menu-directory {
	background: transparent;
	padding-bottom: 4.5rem;
}
.the-menu-directory__toolbar,
.the-menu-directory__toolbar--solo {
	width: min(var(--tm-content-width), calc(100% - 2rem));
}
.the-menu-directory__intro {
	max-width: 36rem;
	margin: 0 0 1.35rem;
	text-align: left;
}
.the-menu-directory__eyebrow {
	color: #9ca3af;
}
.the-menu-directory__title {
	margin: 0 0 0.5rem;
	font-family: var(--tm-font);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #111827;
	text-align: left;
}
.the-menu-directory__lead {
	margin: 0;
	color: #6b7280;
}
.the-menu-directory__search {
	border-color: #e5e7eb;
	box-shadow: 0 8px 24px -18px rgba(17, 24, 39, 0.35);
}
.the-menu-directory__search-icon {
	color: #9ca3af;
}
.the-menu-directory__search input[type="search"] {
	color: #111827;
}
.the-menu-directory__search:focus-within {
	border-color: var(--tm-red);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--tm-red) 14%, transparent);
}
.the-menu-directory__search-btn {
	background: var(--tm-red);
}
.the-menu-directory__search-btn:hover {
	filter: none;
	background: color-mix(in srgb, var(--tm-red) 84%, #000);
}
.the-menu-directory__listing {
	margin-top: 2rem;
}
.the-menu-directory__head {
	align-items: baseline;
	margin-bottom: 1.15rem;
	padding-bottom: 0;
	border-bottom: 0;
}
.the-menu-directory__heading {
	font-family: var(--tm-font);
	font-size: clamp(1.4rem, 2.4vw, 1.8rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #111827;
}
.the-menu-directory__count {
	color: #9ca3af;
	font-weight: 500;
	white-space: nowrap;
}
.the-menu-directory__empty {
	border-color: #e5e7eb;
	color: #6b7280;
}
.the-menu-directory__grid {
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 1.35rem;
	align-items: stretch;
}

.the-menu-tenant-card {
	border-color: #eceff3;
	border-radius: 18px;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}
.the-menu-tenant-card:hover,
.the-menu-tenant-card:focus-within {
	transform: translateY(-2px);
	border-color: #e5e7eb;
	box-shadow: 0 14px 28px -18px rgba(17, 24, 39, 0.28);
}
.the-menu-tenant-card.is-hidden,
.the-menu-tenant-card.is-hidden {
	display: none !important;
}
.the-menu-tenant-card__link:focus-visible {
	outline: 2px solid var(--tm-red);
	outline-offset: 3px;
}
.the-menu-tenant-card__media {
	background: #e5e7eb;
}
.the-menu-tenant-card__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 46%;
	background: linear-gradient(to top, rgba(17, 24, 39, 0.5), transparent);
	pointer-events: none;
	z-index: 1;
}
.the-menu-tenant-card.has-fallback .the-menu-tenant-card__media {
	background: linear-gradient(160deg, #f3f4f6 0%, #e5e7eb 72%);
}
.the-menu-tenant-card__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0;
	background: #e5e7eb;
}
.the-menu-tenant-card__mark {
	font-family: var(--tm-font);
	font-size: 2.4rem;
	font-weight: 700;
	color: #9ca3af;
}
.the-menu-tenant-card__promo,
.the-menu-tenant-card__hours,
.the-menu-tenant-card__place,
.the-menu-tenant-card__status {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	max-width: 70%;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.the-menu-tenant-card__promo {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	background: #f97316;
	color: #fff;
}
.the-menu-tenant-card__hours {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	max-width: 48%;
	background: rgba(255, 255, 255, 0.95);
	color: #111827;
}
.the-menu-tenant-card__media-bottom {
	position: absolute;
	left: 0.75rem;
	right: 0.75rem;
	bottom: 0.75rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
}
.the-menu-tenant-card__identity {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-width: 0;
}
.the-menu-tenant-card__logo {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #fff;
	border: 2px solid #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.the-menu-tenant-card__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	padding: 0;
	display: block;
}
.the-menu-tenant-card__logo-mark {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: #111827;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
}
.the-menu-tenant-card__status {
	max-width: none;
	background: #10b981;
	color: #fff;
}
.the-menu-tenant-card__status::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
	flex-shrink: 0;
}
.the-menu-tenant-card__status--closed {
	background: rgba(255, 255, 255, 0.92);
	color: #6b7280;
}
.the-menu-tenant-card__status--closed::before {
	background: #9ca3af;
}
.the-menu-tenant-card__place {
	max-width: 46%;
	background: rgba(17, 24, 39, 0.72);
	color: #fff;
}
.the-menu-tenant-card__body {
	gap: 0;
	padding: 1rem 1.05rem 1rem;
}
.the-menu-tenant-card__name {
	font-family: var(--tm-font);
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #111827;
}
.the-menu-tenant-card__meta {
	margin: 0.32rem 0 0;
	font-size: 0.82rem;
	color: #6b7280;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.the-menu-tenant-card__dishes {
	list-style: none;
	margin: 0.85rem 0 0;
	padding: 0;
}
.the-menu-tenant-card__dish {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) auto;
	gap: 0.7rem;
	align-items: center;
	padding: 0.55rem 0;
}
.the-menu-tenant-card__dish + .the-menu-tenant-card__dish {
	border-top: 1px solid #f3f4f6;
}
.the-menu-tenant-card__dish-thumb {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	object-fit: cover;
	background: #f3f4f6;
}
.the-menu-tenant-card__dish-name {
	min-width: 0;
	font-size: 0.9rem;
	color: #111827;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.the-menu-tenant-card__price {
	font-size: 0.9rem;
	font-weight: 700;
	color: #111827;
	white-space: nowrap;
}
.the-menu-tenant-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
	padding-top: 0.85rem;
}
.the-menu-tenant-card__count {
	font-size: 0.78rem;
	color: #9ca3af;
}
.the-menu-tenant-card__cta {
	margin-top: 0;
	padding: 0;
	align-self: auto;
	color: var(--tm-red);
}
.the-menu-tenant-card:hover .the-menu-tenant-card__cta,
.the-menu-tenant-card:focus-within .the-menu-tenant-card__cta {
	color: color-mix(in srgb, var(--tm-red) 78%, #000);
}

.the-menu-directory__steps-list {
	padding-top: 0;
	border-top: 0;
}
.the-menu-directory__step-num {
	color: var(--tm-red);
}
.the-menu-directory__steps-list strong {
	font-family: var(--tm-font);
	color: #111827;
}
.the-menu-directory__steps-list span:last-child {
	color: #6b7280;
}
.the-menu-directory__cta-inner {
	background: #fff;
	color: #111827;
	border: 1px solid #eef0f3;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}
.the-menu-directory__cta-eyebrow {
	color: var(--tm-red);
}
.the-menu-directory__cta-title {
	max-width: 16ch;
	font-family: var(--tm-font);
	color: #111827;
}
.the-menu-directory__cta-lead {
	color: #6b7280;
}
.the-menu-directory__cta-primary {
	background: var(--tm-red);
	color: #fff !important;
}
.the-menu-directory__cta-primary:hover {
	background: color-mix(in srgb, var(--tm-red) 84%, #000);
}
.the-menu-directory__cta-secondary {
	border: 1px solid #e5e7eb;
	color: #111827 !important;
}
.the-menu-directory__cta-secondary:hover {
	border-color: #d1d5db;
	background: #f9fafb;
}
.the-menu-directory__cta-points {
	color: #6b7280;
}
.the-menu-directory__cta-points li::before {
	background: var(--tm-red);
}

@media (max-width: 767px) {
	.the-menu-tenant-card__hours {
		max-width: 44%;
	}
	.the-menu-directory__cta-title {
		max-width: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.the-menu-tenant-card,
	.the-menu-tenant-card__cta svg {
		transition: none;
	}
	.the-menu-tenant-card:hover,
	.the-menu-tenant-card:focus-within {
		transform: none;
	}
}
