﻿/* =========================================================
   Sanjha Chulha — main stylesheet
   White, professional, conversion-focused restaurant theme.
   Deliciko-inspired animations & visual polish.
   ========================================================= */

/* ---- Scroll-reveal keyframes ---- */
@keyframes scFadeUp {
	from { opacity: 0; transform: translateY(36px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes scFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes scFadeLeft {
	from { opacity: 0; transform: translateX(-40px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes scFadeRight {
	from { opacity: 0; transform: translateX(40px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes scZoomIn {
	from { opacity: 0; transform: scale(.92); }
	to   { opacity: 1; transform: scale(1); }
}
@keyframes scCountUp {
	from { opacity: 0; transform: translateY(12px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes scFloatY {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-12px); }
}
@keyframes scPulseRing {
	0%   { box-shadow: 0 0 0 0 rgba(200,71,44,.35); }
	70%  { box-shadow: 0 0 0 14px rgba(200,71,44,0); }
	100% { box-shadow: 0 0 0 0 rgba(200,71,44,0); }
}
@keyframes scSpinSlow {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
@keyframes scHeroBgPan {
	0%   { background-position: center 0%; }
	100% { background-position: center 8%; }
}
@keyframes scSlideInHero {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes scUnderlineGrow {
	from { transform: scaleX(0); }
	to   { transform: scaleX(1); }
}

/* ---- Scroll reveal system ---- */
.sc-reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .65s cubic-bezier(.22,.61,.36,1), transform .65s cubic-bezier(.22,.61,.36,1);
}
.sc-reveal.from-left  { transform: translateX(-40px); }
.sc-reveal.from-right { transform: translateX(40px); }
.sc-reveal.zoom-in    { transform: scale(.93); }
.sc-reveal.is-visible {
	opacity: 1;
	transform: none;
}
.sc-reveal.d1 { transition-delay: .1s; }
.sc-reveal.d2 { transition-delay: .2s; }
.sc-reveal.d3 { transition-delay: .3s; }
.sc-reveal.d4 { transition-delay: .4s; }
.sc-reveal.d5 { transition-delay: .5s; }
.sc-reveal.d6 { transition-delay: .6s; }

:root {
	/* Sanjha Chulha brand — deep wine/maroon primary */
	--sc-red:       #8E2A2C;   /* primary brand red (deep wine) */
	--sc-red-d:     #6E1E20;   /* hover / pressed state */
	--sc-saffron:   #8E2A2C;   /* alias kept for legacy classes */
	--sc-saffron-d: #6E1E20;
	--sc-maroon:    #5a1414;
	--sc-gold:      #f5b301;
	--sc-cream:     #fbf6ef;
	--sc-warm:      #f7f4f0;
	--sc-dark:      #0d0d0d;
	--sc-dark-2:    #1a1a1a;
	--sc-charcoal:  #1f1f1f;
	--sc-text:      #444444;
	--sc-muted:     #8a8a8a;
	--sc-border:    #ebe8e3;
	--sc-white:     #ffffff;
	--sc-shadow:    0 6px 24px rgba(31,31,31,.08);
	--sc-shadow-lg: 0 18px 50px rgba(31,31,31,.12);
	--radius:       4px;
	--radius-sm:    2px;
	--container:    1240px;
	--font-display: 'Playfair Display', Georgia, serif;
	--font-body:    'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--font-script:  'Dancing Script', 'Playfair Display', cursive;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--sc-text);
	background: var(--sc-white);
	line-height: 1.7;
	font-size: 15px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--sc-red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--sc-red-d); }
h1, h2, h3, h4 {
	font-family: var(--font-display);
	color: var(--sc-charcoal);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 .8rem;
	letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; }
ul, ol { padding-left: 1.25rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container--narrow { max-width: 820px; }
.text-center { text-align: center; }
.muted { color: var(--sc-muted); }
/* Accessibility — hide off-screen until focused (WP standard) */
.screen-reader-text {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	white-space: nowrap !important;
	word-wrap: normal !important;
}
.skip-link {
	position: absolute;
	top: -200px;
	left: 0;
	background: var(--sc-charcoal);
	color: #fff;
	padding: .6rem 1rem;
	z-index: 9999;
}
.skip-link:focus {
	top: 0;
	clip: auto !important;
	clip-path: none !important;
	width: auto !important;
	height: auto !important;
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .85rem 1.6rem;
	border-radius: 0;
	font-weight: 600;
	font-size: .8rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background .25s, color .25s, border-color .25s;
	text-decoration: none;
	white-space: nowrap;
	line-height: 1;
	font-family: var(--font-body);
}
.btn-primary { background: var(--sc-red); color: #fff; border-color: var(--sc-red); }
.btn-primary:hover { background: var(--sc-red-d); border-color: var(--sc-red-d); color: #fff; }
.btn-outline { background: transparent; color: var(--sc-red); border-color: var(--sc-red); }
.btn-outline:hover { background: var(--sc-red); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost:hover { background: #fff; color: var(--sc-charcoal); border-color: #fff; }
.btn-lg { padding: 1.05rem 2rem; font-size: .85rem; }
.btn-sm { padding: .55rem 1rem; font-size: .72rem; }
.btn-block { width: 100%; justify-content: center; }

.eyebrow {
	display: inline-block;
	color: var(--sc-red);
	font-family: var(--font-script);
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	margin-bottom: .25rem;
	font-style: italic;
}
.eyebrow i { display: none; }

.link-arrow {
	display: inline-flex; align-items: center; gap: .35rem;
	font-weight: 600;
	color: var(--sc-saffron);
}
.link-arrow:hover { color: var(--sc-saffron-d); }

/* ---------- Topbar (above main header) ---------- */
.topbar {
	background: var(--sc-charcoal);
	color: #fff;
	font-size: .85rem;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--sc-gold); }
.topbar__inner {
	display: flex; justify-content: space-between; align-items: center;
	padding: .6rem 1.25rem;
	flex-wrap: wrap;
	gap: .5rem;
}
.topbar__contact { display: flex; gap: 1.2rem; }
.topbar__contact a, .topbar__tagline { display: inline-flex; align-items: center; gap: .35rem; }

@media (max-width: 720px) {
	.topbar__tagline { display: none; }
	.topbar__inner { justify-content: center; }
	.topbar__contact { gap: .8rem; font-size: .8rem; }
}

/* ---------- Header — original white professional ---------- */
.site-header {
	position: sticky; top: 0;
	background: #fff;
	z-index: 100;
	border-bottom: 1px solid var(--sc-border);
	box-shadow: 0 2px 12px rgba(0,0,0,.03);
	transition: padding .3s, box-shadow .3s;
}
.site-header.is-scrolled {
	box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem;
	padding: .55rem 1.25rem;
	transition: padding .3s;
}
.site-header.is-scrolled .site-header__inner { padding: .4rem 1.25rem; }

/* Logo — transparent PNG, displays cleanly on any background */
.sc-logo--img {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}
.site-header .sc-logo__img {
	height: 95px !important;
	width: auto !important;
	max-height: 95px !important;
	max-width: none !important;
	display: block;
	background: transparent;
	padding: 0;
	border: 0;
	border-radius: 0;
	transition: height .3s;
}
.site-header.is-scrolled .sc-logo__img {
	height: 72px !important;
	max-height: 72px !important;
}

/* Mobile drawer */
.mobile-drawer__logo { max-height: 64px; }

/* Footer */
.site-footer .sc-logo__img,
.sc-logo--footer {
	max-height: 64px;
	height: auto !important;
}

@media (max-width: 980px) {
	.site-header .sc-logo__img { height: 72px !important; max-height: 72px !important; }
	.site-header.is-scrolled .sc-logo__img { height: 60px !important; max-height: 60px !important; }
}
@media (max-width: 640px) {
	.site-header .sc-logo__img { height: 58px !important; max-height: 58px !important; }
}

/* Nav — white header */
.site-header .main-navigation > ul,
.site-header .main-navigation .menu {
	display: flex;
	gap: 0;
	align-items: center;
	flex-wrap: nowrap;
}
.site-header .main-navigation > ul > li,
.site-header .main-navigation .menu > li {
	flex-shrink: 0;
	white-space: nowrap;
}
.site-header .main-navigation a {
	color: var(--sc-charcoal);
	font-size: .88rem;
	font-weight: 600;
	padding: .55rem .7rem;
	border-radius: 0;
	letter-spacing: .01em;
	transition: color .2s;
	position: relative;
	white-space: nowrap;
	display: inline-block;
}
.site-header .main-navigation a::after {
	content: '';
	position: absolute; bottom: -2px; left: 50%; right: 50%;
	height: 2px;
	background: var(--sc-red);
	transition: left .25s, right .25s;
}
.site-header .main-navigation a:hover,
.site-header .main-navigation .current-menu-item > a {
	color: var(--sc-red);
	background: transparent;
}
.site-header .main-navigation a:hover::after,
.site-header .main-navigation .current-menu-item > a::after {
	left: .85rem; right: .85rem;
}

/* Dropdown in white header */
.site-header .main-navigation .sub-menu {
	background: #fff;
	border: 1px solid var(--sc-border);
	box-shadow: var(--sc-shadow);
}
.site-header .main-navigation .sub-menu a { color: var(--sc-text); }
.site-header .main-navigation .sub-menu a:hover { color: var(--sc-red); background: var(--sc-cream); }

/* Header CTA */
.site-header__cta { flex-shrink: 0; }

/* Mobile toggle */
.site-header .nav-toggle span { background: var(--sc-charcoal); }

@media (max-width: 1100px) {
	.site-header .main-navigation { display: none; }
}
.sc-logo img { max-height: 56px; width: auto; }
.sc-logo--text {
	display: inline-flex; align-items: center; gap: .65rem;
	font-family: var(--font-display);
	color: var(--sc-charcoal);
	font-weight: 700;
	font-size: 1.5rem;
	letter-spacing: .01em;
	text-decoration: none;
}
.sc-logo--text:hover { color: var(--sc-saffron-d); }
.sc-logo__icon {
	width: 44px; height: 44px;
	flex-shrink: 0;
	filter: drop-shadow(0 2px 6px rgba(200,71,44,.25));
}
.sc-logo__name {
	line-height: 1.05;
	display: inline-block;
	font-style: italic;
}
.sc-logo--footer { color: #fff; }
.sc-logo--footer .sc-logo__name { color: #fff; }
.sc-logo--footer { font-size: 1.4rem; }

.main-navigation > ul, .main-navigation .menu {
	list-style: none; margin: 0; padding: 0;
	display: flex; gap: .25rem;
	align-items: center;
}
.main-navigation a {
	display: inline-flex; align-items: center; gap: .3rem;
	color: var(--sc-charcoal);
	font-weight: 600;
	padding: .55rem .9rem;
	border-radius: 8px;
	transition: background .2s, color .2s;
	font-size: .95rem;
}
.main-navigation a:hover, .main-navigation .current-menu-item > a {
	background: var(--sc-cream);
	color: var(--sc-saffron-d);
}
.main-navigation .has-dropdown { position: relative; }
.main-navigation .sub-menu {
	position: absolute; top: 100%; left: 0;
	background: #fff;
	min-width: 220px;
	border: 1px solid var(--sc-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--sc-shadow);
	padding: .4rem;
	list-style: none;
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s, transform .2s, visibility .2s;
}
.main-navigation .has-dropdown:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-navigation .sub-menu a { display: block; }

.nav-toggle {
	display: none;
	width: 44px; height: 44px;
	background: transparent;
	border: 0;
	cursor: pointer;
	flex-direction: column; justify-content: center; gap: 5px;
	padding: 0;
}
.nav-toggle span {
	width: 24px; height: 2px;
	background: var(--sc-charcoal);
	display: block;
	transition: transform .2s;
}

@media (max-width: 980px) {
	.main-navigation, .site-header__cta { display: none; }
	.nav-toggle { display: inline-flex; }
}

/* ---------- Mobile drawer ---------- */
.drawer-overlay {
	position: fixed; inset: 0;
	background: rgba(0,0,0,.5);
	opacity: 0; visibility: hidden;
	transition: opacity .25s, visibility .25s;
	z-index: 200;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; }
.mobile-drawer {
	position: fixed; top: 0; right: 0; height: 100vh;
	width: min(360px, 90vw);
	background: #fff;
	z-index: 210;
	transform: translateX(100%);
	transition: transform .3s;
	display: flex; flex-direction: column;
	overflow-y: auto;
	padding-bottom: 2rem;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__header {
	display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--sc-border);
}
.drawer-close { background: transparent; border: 0; font-size: 1.4rem; cursor: pointer; padding: .5rem; }
.mobile-drawer__nav { padding: 1rem 0; }
.mobile-drawer__nav ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer__nav a {
	display: block;
	padding: .9rem 1.25rem;
	color: var(--sc-charcoal);
	font-weight: 600;
	border-bottom: 1px solid var(--sc-border);
}
.mobile-drawer__nav a:hover { background: var(--sc-cream); color: var(--sc-saffron-d); }
.mobile-drawer__contact {
	padding: 1.25rem;
	display: flex; flex-direction: column; gap: .6rem;
	border-top: 1px solid var(--sc-border);
}
.mobile-drawer__contact-title {
	font-weight: 700; font-size: .85rem;
	letter-spacing: .1em; text-transform: uppercase;
	color: var(--sc-muted);
}
.mobile-drawer__contact a { display: inline-flex; align-items: center; gap: .5rem; color: var(--sc-charcoal); }
.mobile-drawer__hours { font-size: .9rem; }
.mobile-drawer__hours strong { display: block; margin-bottom: .2rem; }
.mobile-drawer__social { display: flex; gap: .5rem; }
.mobile-drawer__social a {
	width: 38px; height: 38px;
	display: inline-grid; place-items: center;
	background: var(--sc-cream); color: var(--sc-saffron-d);
	border-radius: 50%;
}
.mobile-drawer__social a:hover { background: var(--sc-saffron); color: #fff; }

/* =========================================================
   HERO — original professional design (white-friendly)
   ========================================================= */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex; align-items: center;
	overflow: hidden;
	color: #fff;
}
.hero__bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center top;
	z-index: 0;
	will-change: transform;
	animation: scHeroBgPan 18s ease-in-out infinite alternate;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(120deg, rgba(20,8,5,.82) 0%, rgba(31,14,8,.62) 55%, rgba(31,14,8,.38) 100%);
}
.hero::after {
	content: '';
	position: absolute; bottom: -60px; right: -60px;
	width: 380px; height: 380px;
	background: radial-gradient(circle, rgba(142, 42, 44,.22) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none; z-index: 1;
	animation: scFloatY 7s ease-in-out infinite;
}
.hero__inner {
	position: relative; z-index: 2;
	padding: 5rem 1.25rem;
}
.hero__text { max-width: 760px; }
.hero__eyebrow {
	display: inline-flex; align-items: center; gap: .4rem;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.28);
	padding: .4rem 1.1rem;
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--sc-gold);
	margin-bottom: 1.25rem;
	opacity: 0;
	animation: scSlideInHero .7s .1s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__title {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4.2rem);
	color: #fff;
	margin: 0 0 1rem;
	line-height: 1.1;
	font-weight: 600;
	opacity: 0;
	animation: scSlideInHero .8s .3s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__title em {
	font-style: italic;
	color: var(--sc-gold);
}
.hero__subtitle {
	font-size: clamp(1rem, 1.7vw, 1.18rem);
	color: rgba(255,255,255,.88);
	max-width: 620px;
	margin-bottom: 2rem;
	opacity: 0;
	animation: scSlideInHero .8s .5s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__actions {
	display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem;
	opacity: 0;
	animation: scSlideInHero .8s .65s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); background: transparent; }
.hero__actions .btn-outline:hover { background: #fff; color: var(--sc-charcoal); border-color: #fff; }
.hero__badges {
	list-style: none; padding: 0; margin: 0;
	display: flex; gap: 1.6rem; flex-wrap: wrap;
	font-size: .9rem;
	opacity: 0;
	animation: scSlideInHero .8s .8s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__badges li {
	display: inline-flex; align-items: center; gap: .45rem;
	color: rgba(255,255,255,.9);
	padding: .3rem .8rem;
	background: rgba(255,255,255,.08);
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.14);
}
.hero__badges i { color: var(--sc-gold); }

/* ---------- Stats bar ---------- */
.stats-bar {
	background: var(--sc-saffron);
	color: #fff;
	padding: 2.2rem 0;
}
.stats-bar__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	text-align: center;
}
.stat-item { padding: .5rem 1rem; }
.stat-item__number {
	font-family: var(--font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1;
	display: block;
}
.stat-item__label {
	font-size: .88rem;
	opacity: .9;
	margin-top: .25rem;
	display: block;
	letter-spacing: .04em;
}
.stat-item + .stat-item {
	border-left: 1px solid rgba(255,255,255,.25);
}
@media (max-width: 640px) {
	.stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
	.stat-item + .stat-item { border-left: 0; }
	.stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.25); }
}

/* ---------- Page hero ---------- */
.page-hero {
	background: var(--sc-cream);
	padding: 3.5rem 0 2.5rem;
	border-bottom: 1px solid var(--sc-border);
	text-align: center;
}
.page-hero__title { margin-bottom: .5rem; }
.page-hero__subtitle { color: var(--sc-muted); font-size: 1.1rem; max-width: 720px; margin: 0 auto 1rem; }
.breadcrumbs {
	display: inline-flex; align-items: center; gap: .35rem;
	font-size: .85rem; color: var(--sc-muted);
}
.breadcrumbs a { color: var(--sc-muted); }
.breadcrumbs a:hover { color: var(--sc-saffron-d); }

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section__header { margin-bottom: 3.5rem; }
.section__header h2 { margin-top: .25rem; }
.section__header p { max-width: 680px; margin: 1rem auto 0; color: var(--sc-muted); font-size: 1rem; line-height: 1.7; }
.section__header.text-center .eyebrow { display: block; }

/* ---------- Trustbar ticker ---------- */
@keyframes scTicker {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
.trustbar {
	background: var(--sc-cream);
	border-top: 1px solid var(--sc-border);
	border-bottom: 1px solid var(--sc-border);
	overflow: hidden;
	padding: 0;
}
.trustbar__ticker {
	overflow: hidden;
	padding: .85rem 0;
}
.trustbar__track {
	display: flex;
	width: max-content;
	animation: scTicker 28s linear infinite;
}
.trustbar__track:hover { animation-play-state: paused; }
.trustbar__list {
	list-style: none; padding: 0; margin: 0;
	display: flex; align-items: center;
	gap: 1.4rem;
	font-size: .9rem;
	font-weight: 600;
	color: var(--sc-charcoal);
	white-space: nowrap;
	padding-right: 1.4rem;
}
.trustbar__list li { display: inline-flex; align-items: center; gap: .45rem; }
.trustbar__list .bi-dot { color: var(--sc-saffron); font-size: 1.5rem; opacity: .5; }
.trustbar__list i:not(.bi-dot) { color: var(--sc-saffron); font-size: 1rem; }

/* ---------- About section ---------- */
.about-grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about-grid__media { position: relative; }
.about-grid__media img {
	border-radius: var(--radius);
	box-shadow: var(--sc-shadow-lg);
	width: 100%; height: 100%;
	object-fit: cover; max-height: 540px;
}
.about-grid__badge {
	position: absolute; bottom: -22px; left: -22px;
	background: var(--sc-saffron);
	color: #fff;
	padding: 1.2rem 1.5rem;
	border-radius: var(--radius);
	box-shadow: var(--sc-shadow-lg);
}
.about-grid__badge strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.about-grid__badge span { font-size: .85rem; letter-spacing: .04em; }
.about-grid__list {
	list-style: none; padding: 0;
	margin: 1.5rem 0;
	display: grid; grid-template-columns: 1fr 1fr;
	gap: .6rem;
}
.about-grid__list li { display: flex; align-items: center; gap: .5rem; }
.about-grid__list i { color: var(--sc-saffron); }

@media (max-width: 880px) {
	.about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
	.about-grid__list { grid-template-columns: 1fr; }
}

/* ---------- Menu tabs — horizontal scroll with arrows ---------- */
.menu-tabs {
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	margin-bottom: 3.5rem;
	border-bottom: 1px solid rgba(255,255,255,.1);
	padding: 0 0 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: thin;
	scrollbar-color: var(--sc-red) transparent;
	-webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { height: 4px; }
.menu-tabs::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--sc-red); border-radius: 2px; }
/* Center if they fit, scroll if they don't */
.menu-tabs { justify-content: center; }
@media (max-width: 1400px) { .menu-tabs { justify-content: flex-start; } }
.menu-tab-btn {
	padding: .7rem 1.1rem;
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	font-family: var(--font-body);
	font-size: .8rem; font-weight: 700;
	color: rgba(255,255,255,.7);
	cursor: pointer;
	letter-spacing: .1em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color .2s, border-color .2s;
	position: relative;
	display: inline-flex; flex-direction: column;
	align-items: center; gap: .3rem;
}
.menu-tab-btn::before {
	content: '';
	display: block;
	width: 28px; height: 28px;
	background: #fff;
	-webkit-mask: var(--tab-icon, none) center/contain no-repeat;
	        mask: var(--tab-icon, none) center/contain no-repeat;
	margin-bottom: .25rem;
	transition: background .2s;
}
/* All — 4 square grid */
.menu-tab-btn[data-tab="all"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><rect x='4' y='4' width='10' height='10'/><rect x='18' y='4' width='10' height='10'/><rect x='4' y='18' width='10' height='10'/><rect x='18' y='18' width='10' height='10'/></svg>");
}
/* Starters — kebab skewers */
.menu-tab-btn[data-tab*="appetiz"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><line x1='10' y1='3' x2='10' y2='29'/><line x1='22' y1='3' x2='22' y2='29'/><circle cx='10' cy='9' r='3'/><circle cx='22' cy='9' r='3'/><circle cx='10' cy='17' r='3'/><circle cx='22' cy='17' r='3'/><circle cx='10' cy='25' r='3'/><circle cx='22' cy='25' r='3'/></svg>");
}
/* Mains (Non-Veg) — drumstick/chicken */
.menu-tab-btn[data-tab*="mains-non"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M21 5c4 0 7 3 7 7 0 3-2 5-4 6l-1 1c-1 3-3 5-6 6l-2 1-3 3-2-2 3-3 1-2c1-3 3-5 6-6l1-1c1-2 3-4 6-4'/><line x1='10' y1='22' x2='3' y2='29'/></svg>");
}
/* Veg Mains — leaf */
.menu-tab-btn[data-tab*="mains-veg"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 27c0-13 9-22 22-22 0 13-9 22-22 22z'/><line x1='5' y1='27' x2='17' y2='15'/></svg>");
}
/* Rice — bowl with steam */
.menu-tab-btn[data-tab*="rice"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 17c0 6 6 10 13 10s13-4 13-10z'/><line x1='3' y1='17' x2='29' y2='17'/><path d='M10 12c0-1 1-2 1-3s-1-2-1-3'/><path d='M16 12c0-1 1-2 1-3s-1-2-1-3'/><path d='M22 12c0-1 1-2 1-3s-1-2-1-3'/></svg>");
}
/* Breads — round flatbread with hatch */
.menu-tab-btn[data-tab*="bread"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='16' cy='16' rx='13' ry='10'/><path d='M9 12c2 0 3 1 4 2'/><path d='M18 11c2 1 3 2 4 4'/><path d='M12 19c1 1 3 2 5 2'/></svg>");
}
/* Desserts — cupcake */
.menu-tab-btn[data-tab*="dessert"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 16h20l-3 12H9z'/><path d='M8 16c0-5 3-8 8-8s8 3 8 8'/><line x1='16' y1='3' x2='16' y2='8'/><circle cx='16' cy='3' r='1.2' fill='black'/></svg>");
}
/* Beverages — cocktail glass */
.menu-tab-btn[data-tab*="beverage"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 6h24L17 18v8'/><line x1='11' y1='26' x2='23' y2='26'/><line x1='8' y1='10' x2='24' y2='10'/></svg>");
}
/* Soups — bowl with spoon */
.menu-tab-btn[data-tab*="soup"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 16c0 6 5 10 12 10s12-4 12-10z'/><line x1='4' y1='16' x2='28' y2='16'/><line x1='24' y1='14' x2='28' y2='4'/><circle cx='28' cy='4' r='2'/></svg>");
}
/* Salad — leafy bowl */
.menu-tab-btn[data-tab*="salad"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 14h26c0 7-6 13-13 13s-13-6-13-13z'/><path d='M9 14c0-3 1-6 4-6'/><path d='M16 14c0-4 2-7 5-7'/><path d='M22 14c0-3 2-5 4-5'/></svg>");
}
/* Eggs */
.menu-tab-btn[data-tab*="egg"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><ellipse cx='16' cy='18' rx='10' ry='12'/></svg>");
}
/* Noodles — chopsticks + noodles */
.menu-tab-btn[data-tab*="noodle"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M5 18c0 5 5 9 11 9s11-4 11-9z'/><path d='M8 18c2-4 5-6 8-6s6 2 8 6'/><line x1='3' y1='4' x2='12' y2='13'/><line x1='8' y1='3' x2='15' y2='12'/></svg>");
}
/* Sides */
.menu-tab-btn[data-tab*="sides"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='10' cy='16' r='6'/><circle cx='22' cy='16' r='6'/></svg>");
}
/* Sizzler — pan with flame */
.menu-tab-btn[data-tab*="sizzler"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M4 18h24l-2 8H6z'/><path d='M16 4c2 3 0 5 0 7s2 4 0 7'/><path d='M12 8c1 2 0 3 0 4s1 2 0 3'/></svg>");
}
/* Chinese rice / item — wok */
.menu-tab-btn[data-tab*="chinese"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M3 14h26c0 7-6 13-13 13S3 21 3 14z'/><line x1='29' y1='14' x2='31' y2='12'/><circle cx='12' cy='20' r='1' fill='black'/><circle cx='18' cy='22' r='1' fill='black'/><circle cx='22' cy='19' r='1' fill='black'/></svg>");
}
/* Soft beverages — same as beverages */
.menu-tab-btn[data-tab="soft-beverages"] {
	--tab-icon: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='black' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M8 6h16l-2 22H10z'/><line x1='10' y1='12' x2='22' y2='12'/><line x1='14' y1='2' x2='14' y2='6'/></svg>");
}
.menu-tab-btn:hover { color: #fff; }
.menu-tab-btn.is-active {
	color: #fff;
	border-bottom-color: var(--sc-red);
}
.menu-tab-btn.is-active::before {
	background: var(--sc-red);
}

/* =========================================================
   MENU SECTION — dark restaurant background (Deliciko style)
   ========================================================= */
.section--menu-dark {
	position: relative;
	padding: clamp(3rem, 7vw, 5.5rem) 0;
	overflow: hidden;
}
.menu-section-bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	z-index: 0;
}
.menu-section-overlay {
	position: absolute; inset: 0;
	background: rgba(8, 5, 3, .88);
	z-index: 1;
}
.section--menu-dark .eyebrow--light {
	background: rgba(255,255,255,.1);
	color: var(--sc-gold);
	border: 1px solid rgba(255,255,255,.2);
}
.text-white { color: #fff !important; }

/* Outline white button */
.btn-outline-white {
	background: transparent;
	border: 2px solid rgba(255,255,255,.7);
	color: #fff;
	border-radius: 0;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-size: .88rem;
}
.btn-outline-white:hover { background: var(--sc-saffron); border-color: var(--sc-saffron); color: #fff; }

/* =========================================================
   DISH SLIDER — Deliciko circular card style
   ========================================================= */
.dish-slider-wrap {
	position: relative;
	display: flex; align-items: center; gap: 1rem;
}
.dish-slider__arrow {
	flex-shrink: 0;
	width: 50px; height: 50px;
	border-radius: 50%;
	border: 2px solid rgba(255,255,255,.3);
	background: rgba(255,255,255,.08);
	color: #fff;
	cursor: pointer;
	font-size: 1.1rem;
	display: grid; place-items: center;
	transition: background .2s, border-color .2s, transform .2s;
	z-index: 5;
}
.dish-slider__arrow:hover {
	background: var(--sc-saffron);
	border-color: var(--sc-saffron);
	transform: scale(1.1);
}

/* Slider needs enough top padding so circular images + badges aren't clipped */
.dish-slider {
	display: flex;
	gap: 1.5rem;
	overflow: hidden;
	flex: 1;
	padding: 5.5rem 0 2rem; /* 5.5rem top for circle/badge breathing room */
}

/* Dish card */
.dish-card {
	flex: 0 0 calc(33.333% - 1rem);
	background: #fff;
	border-radius: 4px;
	padding-top: 80px;          /* space for circle */
	position: relative;
	text-align: center;
	display: flex; flex-direction: column;
	transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
	box-shadow: 0 8px 30px rgba(0,0,0,.25);
	overflow: visible;          /* allow badge + circle to overflow */
}
.dish-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,.35); }

/* Recommended / veg badge — sits at top-left, smaller so it never clips */
.dish-card__badge {
	position: absolute; top: 14px; left: 0;
	background: var(--sc-red);
	color: #fff;
	font-size: .68rem; font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .35rem .7rem;
	z-index: 3;
	white-space: nowrap;
}
.dish-card__badge--veg { background: #2e7a2e; }

/* Circular image */
.dish-card__img-wrap {
	position: absolute; top: -65px; left: 50%;
	transform: translateX(-50%);
	width: 140px; height: 140px;
}
.dish-card__img {
	width: 140px; height: 140px;
	border-radius: 50%;
	background-size: cover; background-position: center;
	border: 5px solid #fff;
	box-shadow: 0 4px 20px rgba(0,0,0,.25);
	transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.dish-card:hover .dish-card__img { transform: scale(1.06); }

/* Red price badge — Deliciko script style */
.dish-card__price {
	position: absolute; bottom: -4px; right: -4px;
	width: 58px; height: 58px;
	border-radius: 50%;
	background: var(--sc-red);
	color: #fff;
	font-family: var(--font-script);
	font-style: italic;
	font-size: 1.15rem;
	font-weight: 700;
	display: grid; place-items: center;
	border: 3px solid #fff;
	text-align: center;
	line-height: 1;
	box-shadow: 0 2px 8px rgba(142, 42, 44,.4);
}

/* Card body */
.dish-card__body {
	padding: 1.2rem 1.4rem 1.6rem;
	flex: 1;
	display: flex; flex-direction: column;
}
.dish-card__name {
	font-family: var(--font-display);
	font-size: 1.45rem;
	font-weight: 600;
	color: var(--sc-charcoal);
	margin: 0 0 .65rem;
}
.dish-card__desc {
	color: var(--sc-muted);
	font-size: .9rem;
	line-height: 1.6;
	font-weight: 400;
	margin: 0 0 1.4rem;
	flex: 1;
}
.dish-card__btn {
	display: block;
	width: 100%;
	padding: .85rem 1rem;
	background: var(--sc-red);
	color: #fff;
	font-weight: 600;
	font-size: .82rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	text-decoration: none;
	border: 0;
	transition: background .2s;
	text-align: center;
	border-radius: 0;
	margin-top: auto;
	font-family: var(--font-body);
}
.dish-card__btn:hover { background: var(--sc-dark); color: #fff; }

@media (max-width: 980px) { .dish-card { flex: 0 0 calc(50% - .75rem); } }
@media (max-width: 620px) { .dish-card { flex: 0 0 100%; } }

/* ---------- Menu cards (homepage) — legacy grid kept for archive page ---------- */
.section--menu:not(.section--menu-dark) { background: var(--sc-warm); }
.menu-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}
.menu-card {
	background: #fff;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--sc-shadow);
	border: 1px solid var(--sc-border);
	transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
	display: flex; flex-direction: column;
}
.menu-card:hover { transform: translateY(-7px); box-shadow: var(--sc-shadow-lg); }
.menu-card__media {
	height: 210px;
	background-size: cover; background-position: center;
	position: relative;
	overflow: hidden;
}
/* Image zoom on hover */
.menu-card:hover .menu-card__media { background-size: 110%; }
.menu-card__media-img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.menu-card:hover .menu-card__media-img { transform: scale(1.08); }
.menu-card__tag {
	position: absolute; top: .75rem; left: .75rem;
	padding: .25rem .65rem;
	background: rgba(255,255,255,.96);
	border-radius: 999px;
	font-size: .75rem; font-weight: 700;
	letter-spacing: .04em;
}
.menu-card__tag--veg { color: #2e7a2e; }
/* Overlay order button on image */
.menu-card__overlay {
	position: absolute; inset: 0;
	background: rgba(200,71,44,.7);
	display: flex; align-items: center; justify-content: center;
	opacity: 0;
	transition: opacity .3s;
}
.menu-card:hover .menu-card__overlay { opacity: 1; }
.menu-card__overlay a {
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
	border: 2px solid #fff;
	padding: .45rem 1.1rem;
	border-radius: 999px;
	text-decoration: none;
	transition: background .2s;
}
.menu-card__overlay a:hover { background: #fff; color: var(--sc-saffron); }
.menu-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.menu-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; margin-bottom: .35rem; }
.menu-card__name { font-size: 1.15rem; margin: 0; }
.menu-card__price { font-family: var(--font-display); font-weight: 700; color: var(--sc-saffron); font-size: 1.1rem; white-space: nowrap; }
.menu-card__desc { color: var(--sc-muted); font-size: .9rem; margin: 0 0 .6rem; flex: 1; }
.menu-card__cat { font-size: .75rem; color: var(--sc-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ---------- Full menu archive ---------- */
.menu-cats-nav {
	display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
	margin-bottom: 3rem;
	padding: 1rem;
	background: var(--sc-cream);
	border-radius: var(--radius);
}
.menu-cats-nav a {
	padding: .45rem 1rem;
	background: #fff;
	border-radius: 999px;
	font-size: .85rem; font-weight: 600;
	color: var(--sc-charcoal);
	border: 1px solid var(--sc-border);
}
.menu-cats-nav a:hover { background: var(--sc-saffron); color: #fff; border-color: var(--sc-saffron); }

.menu-archive__cat { margin-bottom: 3.5rem; scroll-margin-top: 100px; }
.menu-cat-title {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 2rem;
	position: relative;
}
.menu-cat-title::before, .menu-cat-title::after {
	content: ''; display: inline-block; width: 60px; height: 2px;
	background: var(--sc-gold); vertical-align: middle; margin: 0 1rem;
}
.dish-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 3rem; }
@media (max-width: 760px) { .dish-list { grid-template-columns: 1fr; } }

.dish-row { padding: .8rem 0; border-bottom: 1px dashed var(--sc-border); }
.dish-row__head {
	display: flex; align-items: baseline; gap: .5rem;
}
.dish-row__name {
	font-size: 1.05rem;
	font-family: var(--font-body);
	font-weight: 700;
	color: var(--sc-charcoal);
	margin: 0;
	display: inline-flex; align-items: baseline; gap: .4rem;
}
.veg-mark { color: #2e7a2e; }
.nonveg-mark { color: #b21f1f; }
.dish-row__dots { flex: 1; border-bottom: 2px dotted var(--sc-border); margin: 0 .4rem; transform: translateY(-4px); }
.dish-row__price { font-family: var(--font-display); font-weight: 700; color: var(--sc-saffron); font-size: 1.05rem; }
.dish-row__desc { color: var(--sc-muted); font-size: .88rem; margin: .25rem 0 0; }

/* Dish single */
.dish-single__media { margin-bottom: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.dish-single__meta { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.dish-single__price { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--sc-saffron); }
.dish-tag { padding: .3rem .8rem; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.dish-tag--veg { background: #e7f5e7; color: #2e7a2e; }

/* ---------- Features ---------- */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
}
.feature {
	background: #fff;
	padding: 2.2rem 1.75rem;
	text-align: center;
	border-radius: var(--radius);
	border: 1px solid var(--sc-border);
	transition: transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s, box-shadow .3s;
	position: relative;
	overflow: hidden;
}
.feature::before {
	content: '';
	position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--sc-saffron), var(--sc-gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .35s ease;
}
.feature:hover { transform: translateY(-7px); border-color: var(--sc-gold); box-shadow: var(--sc-shadow-lg); }
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
	width: 70px; height: 70px;
	margin: 0 auto 1.2rem;
	display: grid; place-items: center;
	background: var(--sc-cream);
	color: var(--sc-saffron);
	border-radius: 50%;
	font-size: 1.7rem;
	transition: background .3s, transform .3s, color .3s;
}
.feature:hover .feature__icon {
	background: var(--sc-saffron);
	color: #fff;
	transform: scale(1.12) rotate(-6deg);
}
.feature h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.feature p { color: var(--sc-muted); font-size: .92rem; margin: 0; }

/* ---------- Locations — centered grid (homepage + contact page) ---------- */
.section--locations { background: var(--sc-warm); }
.locations-grid,
.section--locations .locations-grid,
.page-template-template-contact .locations-grid {
	display: flex !important;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.75rem;
	max-width: 900px;
	margin: 0 auto !important;
	width: 100%;
}
.location-card {
	flex: 0 1 380px;
	background: #fff;
	padding: 2rem;
	border-radius: var(--radius);
	border: 1px solid var(--sc-border);
	box-shadow: var(--sc-shadow);
	text-align: left;
}
.location-card h3 {
	display: flex; align-items: center; gap: .55rem;
	color: var(--sc-red);
	margin-bottom: 1.1rem;
	font-size: 1.35rem;
	white-space: nowrap;
}
.location-card h3 i { flex-shrink: 0; font-size: 1.2rem; }
.location-card p { font-size: .92rem; margin: .4rem 0; color: var(--sc-text); display: flex; align-items: flex-start; gap: .45rem; }
.location-card p i { color: var(--sc-red); margin-right: 0; flex-shrink: 0; margin-top: .2rem; }
.location-card a { color: var(--sc-charcoal); }
.location-card__actions { display: flex; gap: .5rem; margin-top: 1.2rem; flex-wrap: wrap; }
@media (max-width: 640px) {
	.location-card h3 { white-space: normal; }
}

/* ---------- Gallery ---------- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.gallery-grid--full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item {
	aspect-ratio: 4 / 3;
	background-size: cover; background-position: center;
	background-color: var(--sc-cream);
	border-radius: var(--radius-sm);
	display: block;
	overflow: hidden;
	transition: transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s;
	box-shadow: var(--sc-shadow);
	position: relative;
}
.gallery-item::after {
	content: '\F52A';  /* bi-zoom-in */
	font-family: 'Bootstrap Icons';
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	font-size: 2rem; color: #fff;
	background: rgba(200,71,44,.55);
	opacity: 0;
	transition: opacity .3s;
}
.gallery-item:hover { transform: scale(1.04); box-shadow: var(--sc-shadow-lg); }
.gallery-item:hover::after { opacity: 1; }
.gallery-grid--full .gallery-item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.section--testimonials { background: var(--sc-warm); }
.testimonials-grid {
	display: flex; gap: 1.5rem;
	overflow-x: auto; scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: 1rem;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
	flex: 0 0 calc(33.333% - 1rem);
	scroll-snap-align: start;
	background: #fff;
	border-radius: var(--radius);
	padding: 2rem;
	border: 1px solid var(--sc-border);
	box-shadow: var(--sc-shadow);
	display: flex; flex-direction: column; gap: 1rem;
	transition: box-shadow .3s, transform .3s;
	position: relative;
}
.testimonial-card::before {
	content: '\201C';
	font-family: var(--font-display);
	font-size: 5rem;
	color: var(--sc-saffron);
	opacity: .15;
	position: absolute; top: .5rem; left: 1.2rem;
	line-height: 1;
	pointer-events: none;
}
.testimonial-card:hover { box-shadow: var(--sc-shadow-lg); transform: translateY(-4px); }
.testimonial-card__stars { color: var(--sc-gold); letter-spacing: 3px; font-size: 1.15rem; }
.testimonial-card__stars span { color: var(--sc-border); }
.testimonial-card blockquote { margin: 0; font-style: italic; color: var(--sc-text); line-height: 1.75; flex: 1; font-size: .97rem; }
.testimonial-card footer { display: flex; align-items: center; gap: .75rem; }
.testimonial-card footer strong { display: block; font-family: var(--font-display); color: var(--sc-charcoal); font-size: 1rem; }
.testimonial-card footer span { font-size: .83rem; color: var(--sc-muted); }
/* Author avatar circle */
.testimonial-card__avatar {
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--sc-saffron);
	color: #fff;
	display: grid; place-items: center;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	flex-shrink: 0;
}
.testimonials-controls {
	display: flex; justify-content: center; align-items: center;
	gap: .6rem; margin-top: 2rem;
}
.testimonials-controls button {
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 2px solid var(--sc-saffron);
	background: #fff;
	color: var(--sc-saffron);
	cursor: pointer;
	font-size: 1rem;
	transition: background .2s, color .2s, transform .2s;
}
.testimonials-controls button:hover { background: var(--sc-saffron); color: #fff; transform: scale(1.1); }
/* Dots */
.testimonials-dots {
	display: flex; gap: .4rem; align-items: center;
}
.testimonials-dots span {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--sc-border);
	display: block;
	transition: background .3s, transform .3s;
	cursor: pointer;
}
.testimonials-dots span.is-active {
	background: var(--sc-saffron);
	transform: scale(1.35);
}
@media (max-width: 980px) { .testimonial-card { flex: 0 0 calc(50% - .75rem); } }
@media (max-width: 640px) { .testimonial-card { flex: 0 0 100%; } }

/* ---------- Section wave dividers ---------- */
.section-wave {
	display: block;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	margin-bottom: -1px;
}
.section-wave svg { display: block; width: 100%; }

/* ---------- About section animated counter ---------- */
.about-stats {
	display: flex; gap: 1.5rem; flex-wrap: wrap;
	margin: 1.5rem 0;
}
.about-stat {
	text-align: center;
	padding: 1rem 1.5rem;
	background: var(--sc-cream);
	border-radius: var(--radius-sm);
	border: 1px solid var(--sc-border);
	flex: 1; min-width: 120px;
}
.about-stat__num {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--sc-saffron);
	line-height: 1;
	display: block;
}
.about-stat__lbl {
	font-size: .8rem;
	color: var(--sc-muted);
	text-transform: uppercase;
	letter-spacing: .08em;
	font-weight: 600;
	margin-top: .25rem;
	display: block;
}

/* ---------- Location cards updated ---------- */
.location-card {
	transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--sc-shadow-lg); }

/* ---------- Delivery ---------- */
.section--delivery {
	background: linear-gradient(135deg, var(--sc-saffron) 0%, var(--sc-saffron-d) 100%);
	color: #fff;
}
.section--delivery .eyebrow { background: rgba(255,255,255,.18); color: #fff; }
.section--delivery h2 { color: #fff; }
.delivery-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: center;
}
.delivery-grid__apps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.delivery-app {
	display: flex; flex-direction: column;
	align-items: center; justify-content: space-between;
	gap: .9rem;
	background: #fff;
	padding: 1.5rem 1rem 1.1rem;
	border-radius: var(--radius);
	color: var(--sc-charcoal);
	transition: transform .25s cubic-bezier(.22,.61,.36,1), box-shadow .25s;
	position: relative;
	min-height: 150px;
	text-decoration: none;
	overflow: hidden;
}
.delivery-app:hover {
	color: var(--sc-charcoal);
	transform: translateY(-6px);
	box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
.delivery-app__logo {
	display: flex; align-items: center; justify-content: center;
	width: 100%;
	flex: 1;
	min-height: 60px;
}
.delivery-app__logo img {
	max-height: 48px;
	max-width: 80%;
	width: auto;
	object-fit: contain;
	display: block;
}
/* Wolt logo is white on white — give it a teal pill background */
.delivery-app--wolt .delivery-app__logo {
	background: #009DE0;
	border-radius: var(--radius);
	padding: .9rem 1.2rem;
	min-height: 0;
	width: auto;
	margin: 0 auto;
}
.delivery-app--wolt .delivery-app__logo img { max-height: 36px; }
.delivery-app__tag {
	font-size: .82rem;
	color: var(--sc-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .04em;
	text-align: center;
}
.delivery-app i {
	position: absolute; top: .65rem; right: .8rem;
	color: var(--sc-muted);
	font-size: .9rem;
	transition: color .2s, transform .2s;
}
.delivery-app:hover i { color: var(--sc-red); transform: translate(2px, -2px); }
@media (max-width: 540px) {
	.delivery-grid__apps { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
	.delivery-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Reservation form ---------- */
.reservation-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 3rem;
	align-items: start;
}
.reservation-grid__list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .6rem; }
.reservation-grid__list i { color: var(--sc-saffron); margin-right: .35rem; }
@media (max-width: 980px) { .reservation-grid { grid-template-columns: 1fr; } }

/* =========================================================
   RESERVATION FORM — interactive visual design (.rsv-form)
   ========================================================= */
.rsv-form {
	background: #fff;
	padding: 2.5rem 2.25rem;
	border-radius: 8px;
	border: 1px solid var(--sc-border);
	box-shadow: 0 18px 60px rgba(31,31,31,.10);
	position: relative;
	overflow: hidden;
}
.rsv-form::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: linear-gradient(90deg, var(--sc-red), var(--sc-gold), var(--sc-red));
	background-size: 200% 100%;
	animation: scGradMove 6s ease infinite;
}
.rsv-form__header { text-align: center; margin-bottom: 2rem; }
.rsv-form__badge {
	display: inline-flex; align-items: center; gap: .4rem;
	background: rgba(142, 42, 44,.08);
	color: var(--sc-red);
	padding: .35rem .9rem;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: .65rem;
}
.rsv-form__header h3 {
	font-family: var(--font-display);
	font-size: 1.85rem;
	margin: 0 0 .4rem;
}
.rsv-form__sub { color: var(--sc-muted); font-size: .92rem; margin: 0; }

/* Sections */
.rsv-section { margin-bottom: 1.75rem; }
.rsv-section__label {
	display: flex; align-items: center; gap: .6rem;
	font-family: var(--font-body);
	font-size: .78rem;
	font-weight: 700;
	color: var(--sc-charcoal);
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.rsv-section__num {
	width: 24px; height: 24px;
	border-radius: 50%;
	background: var(--sc-red);
	color: #fff;
	display: grid; place-items: center;
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: 0;
	flex-shrink: 0;
}

/* Branch picker cards */
.rsv-branches {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .85rem;
}
.rsv-branch { cursor: pointer; }
.rsv-branch input { position: absolute; opacity: 0; pointer-events: none; }
.rsv-branch__inner {
	position: relative;
	padding: 1.2rem 1.1rem;
	border: 2px solid var(--sc-border);
	border-radius: 6px;
	background: #fff;
	transition: border-color .2s, background .2s, transform .15s;
	display: flex; flex-direction: column; align-items: flex-start;
	gap: .25rem;
}
.rsv-branch__inner > i:first-child {
	color: var(--sc-red);
	font-size: 1.5rem;
	margin-bottom: .3rem;
}
.rsv-branch__inner strong {
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: var(--sc-charcoal);
	line-height: 1.2;
}
.rsv-branch__inner span {
	font-size: .78rem;
	color: var(--sc-muted);
	line-height: 1.4;
}
.rsv-branch__check {
	position: absolute; top: .85rem; right: .85rem;
	color: var(--sc-red);
	font-size: 1.15rem;
	opacity: 0;
	transition: opacity .2s, transform .2s;
	transform: scale(.5);
}
.rsv-branch:hover .rsv-branch__inner { border-color: var(--sc-gold); transform: translateY(-2px); }
.rsv-branch input:checked + .rsv-branch__inner {
	border-color: var(--sc-red);
	background: rgba(142, 42, 44,.04);
}
.rsv-branch input:checked + .rsv-branch__inner .rsv-branch__check {
	opacity: 1;
	transform: scale(1);
}

/* Row layouts */
.rsv-row3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .85rem; }
.rsv-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; margin-bottom: .85rem; }

/* Input wrappers */
.rsv-input { display: block; }
.rsv-input__label {
	display: flex; align-items: center; gap: .4rem;
	font-size: .72rem;
	font-weight: 700;
	color: var(--sc-charcoal);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: .4rem;
}
.rsv-input__label i { color: var(--sc-red); font-size: .95rem; }
.rsv-input__label em { color: var(--sc-red); font-style: normal; margin-left: 2px; }
.rsv-input input,
.rsv-input select,
.rsv-input textarea {
	width: 100%;
	padding: .85rem 1rem;
	border: 1px solid #666;
	border-radius: 4px;
	font-family: inherit;
	font-size: .92rem;
	background: #fff;
	color: var(--sc-charcoal);
	font-weight: 500;
	transition: border-color .2s, box-shadow .2s;
}
.rsv-input select {
	appearance: none; -webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'><path d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 1.1rem;
	padding-right: 2.5rem;
	cursor: pointer;
}
.rsv-input textarea { resize: vertical; min-height: 70px; }
.rsv-input input:focus, .rsv-input select:focus, .rsv-input textarea:focus {
	outline: none;
	border-color: var(--sc-red);
	box-shadow: 0 0 0 3px rgba(142, 42, 44,.12);
}

/* Guest +/- counter */
.rsv-input--counter .rsv-counter {
	display: flex; align-items: center;
	border: 1px solid #666;
	border-radius: 4px;
	overflow: hidden;
	background: #fff;
}
.rsv-counter__btn {
	width: 42px;
	flex-shrink: 0;
	border: 0;
	background: var(--sc-cream);
	color: var(--sc-charcoal);
	font-size: 1rem;
	cursor: pointer;
	transition: background .2s, color .2s;
	padding: 0;
	height: 100%;
	display: grid; place-items: center;
	min-height: 49px;
}
.rsv-counter__btn:hover { background: var(--sc-red); color: #fff; }
.rsv-counter input {
	flex: 1;
	border: 0 !important;
	box-shadow: none !important;
	text-align: center;
	font-weight: 700;
	font-size: 1rem;
	color: var(--sc-charcoal);
	padding: 0;
	background: transparent;
	-moz-appearance: textfield;
}
.rsv-counter input::-webkit-outer-spin-button,
.rsv-counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Quick time-slot chips */
.rsv-timeslots {
	display: flex; flex-wrap: wrap; align-items: center;
	gap: .5rem;
	margin-top: 1rem;
}
.rsv-timeslots__label {
	font-size: .75rem;
	color: var(--sc-muted);
	font-weight: 600;
	margin-right: .25rem;
}
.rsv-timeslot {
	padding: .45rem .85rem;
	background: var(--sc-cream);
	border: 1px solid var(--sc-border);
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
	color: var(--sc-charcoal);
	cursor: pointer;
	transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.rsv-timeslot:hover { background: #fff; border-color: var(--sc-red); color: var(--sc-red); transform: translateY(-2px); }
.rsv-timeslot.is-active {
	background: var(--sc-red);
	border-color: var(--sc-red);
	color: #fff;
}

/* Summary bar */
.rsv-summary {
	margin: 1.5rem 0 1rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(135deg, var(--sc-cream), #fff);
	border: 1px dashed var(--sc-border);
	border-radius: 6px;
}
.rsv-summary__pieces {
	display: flex; flex-wrap: wrap;
	gap: 1.25rem;
	justify-content: center;
	font-size: .85rem;
}
.rsv-summary__pieces span {
	display: inline-flex; align-items: center; gap: .4rem;
	color: var(--sc-muted);
}
.rsv-summary__pieces strong {
	color: var(--sc-charcoal);
	font-weight: 700;
}
.rsv-summary__pieces i { color: var(--sc-red); }

/* Submit button */
.rsv-form__submit {
	display: flex; align-items: center; justify-content: center;
	gap: .6rem;
	width: 100%;
	padding: 1.15rem 1.5rem;
	margin-top: .5rem;
	background: var(--sc-red);
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: .92rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s, transform .15s, box-shadow .25s;
	position: relative;
	overflow: hidden;
}
.rsv-form__submit::before {
	content: '';
	position: absolute; top: 0; left: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
	transition: left .7s;
}
.rsv-form__submit:hover {
	background: var(--sc-red-d);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(142, 42, 44,.4);
}
.rsv-form__submit:hover::before { left: 100%; }
.rsv-form__submit-loader {
	display: none;
	animation: scSpinSlow 1s linear infinite;
}
.rsv-form.is-submitting .rsv-form__submit-text,
.rsv-form.is-submitting > .rsv-form__submit i { display: none; }
.rsv-form.is-submitting .rsv-form__submit-loader { display: inline-block; }

/* Reassurance note */
.rsv-form__note {
	text-align: center;
	color: var(--sc-muted);
	font-size: .78rem;
	margin: 1rem 0 0;
	display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.rsv-form__note i { color: #2e7a2e; }

/* Responsive */
@media (max-width: 700px) {
	.rsv-form { padding: 2rem 1.25rem; }
	.rsv-branches { grid-template-columns: 1fr; }
	.rsv-row3 { grid-template-columns: 1fr 1fr; }
	.rsv-row3 .rsv-input--counter { grid-column: 1 / -1; }
	.rsv-row2 { grid-template-columns: 1fr; }
	.rsv-form__header h3 { font-size: 1.5rem; }
}

/* Legacy form keep for backward compat (just in case) */
.sc-form--pro {
	background: #fff;
	padding: 2.5rem 2rem;
	border-radius: 6px;
	border: 1px solid var(--sc-border);
	box-shadow: 0 12px 50px rgba(31,31,31,.08);
	position: relative;
	overflow: hidden;
}
.sc-form--pro::before {
	content: '';
	position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: linear-gradient(90deg, var(--sc-red), var(--sc-gold), var(--sc-red));
	background-size: 200% 100%;
	animation: scGradMove 6s ease infinite;
}
@keyframes scGradMove {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

.sc-form__header {
	text-align: center;
	margin-bottom: 1.75rem;
}
.sc-form__badge {
	display: inline-flex; align-items: center; gap: .4rem;
	background: rgba(142, 42, 44,.08);
	color: var(--sc-red);
	padding: .35rem .9rem;
	border-radius: 999px;
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: .65rem;
}
.sc-form__header h3 {
	font-family: var(--font-display);
	font-size: 1.7rem;
	margin: 0 0 .35rem;
}
.sc-form__sub {
	color: var(--sc-muted);
	font-size: .9rem;
	margin: 0;
}

.sc-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}

/* Each field */
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .35rem; }
.field--full { grid-column: 1 / -1; }
.field__label {
	font-size: .72rem;
	font-weight: 700;
	color: var(--sc-charcoal);
	letter-spacing: .08em;
	text-transform: uppercase;
}
.field__label em {
	color: var(--sc-red);
	font-style: normal;
	margin-left: 2px;
}
.field__wrap {
	position: relative;
	display: block;
}
.field__icon {
	position: absolute;
	left: .9rem; top: 50%;
	transform: translateY(-50%);
	color: var(--sc-muted);
	font-size: 1rem;
	pointer-events: none;
	transition: color .2s;
}
.field__wrap--textarea .field__icon {
	top: .95rem;
	transform: none;
}
.field input,
.field select,
.field textarea {
	width: 100%;
	padding: .85rem 1rem .85rem 2.5rem;
	border: 1px solid var(--sc-border);
	border-radius: 4px;
	font-family: inherit;
	font-size: .92rem;
	background: #fff;
	color: var(--sc-charcoal);
	transition: border-color .2s, box-shadow .2s, background .2s;
	font-weight: 500;
}
.field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'><path d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 1.1rem;
	padding-right: 2.5rem;
	cursor: pointer;
}
.field textarea {
	resize: vertical;
	min-height: 88px;
	padding-top: .85rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--sc-red);
	background: #fff;
	box-shadow: 0 0 0 3px rgba(142, 42, 44,.12);
}
.field input:focus ~ .field__icon,
.field__wrap:focus-within .field__icon { color: var(--sc-red); }

/* Submit button */
.sc-form__submit {
	display: flex; align-items: center; justify-content: center;
	gap: .6rem;
	width: 100%;
	padding: 1.1rem 1.5rem;
	margin-top: 1rem;
	background: var(--sc-red);
	color: #fff;
	border: 0;
	border-radius: 4px;
	font-family: var(--font-body);
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s, transform .15s, box-shadow .25s;
	position: relative;
	overflow: hidden;
}
.sc-form__submit::before {
	content: '';
	position: absolute; top: 0; left: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
	transition: left .6s;
}
.sc-form__submit:hover {
	background: var(--sc-red-d);
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(142, 42, 44,.4);
}
.sc-form__submit:hover::before { left: 100%; }
.sc-form__submit i { font-size: 1rem; }

.sc-form__note {
	text-align: center;
	color: var(--sc-muted);
	font-size: .8rem;
	margin: 1rem 0 0;
}
.sc-form__note i { color: #2e7a2e; margin-right: .25rem; }

@media (max-width: 540px) {
	.sc-form__grid { grid-template-columns: 1fr; }
	.sc-form--pro { padding: 2rem 1.25rem; }
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.faq-item[open] { border-color: var(--sc-saffron); }
.faq-item summary {
	display: flex; justify-content: space-between; align-items: center;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	color: var(--sc-charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { transition: transform .2s; color: var(--sc-saffron); }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item__body { padding: 0 1.25rem 1.25rem; color: var(--sc-muted); }

/* ---------- Blog / posts ---------- */
.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}
.post-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) { .post-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .post-grid--4 { grid-template-columns: 1fr; } }

/* =========================================================
   FLOATING CIRCULAR "BOOK A TABLE" BUTTON
   ========================================================= */
@keyframes scBookSpin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}
.sc-book-circle {
	position: fixed;
	right: 1.5rem;
	bottom: 6rem; /* sit above back-to-top */
	z-index: 90;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--sc-red);
	display: grid;
	place-items: center;
	text-decoration: none;
	box-shadow: 0 10px 30px rgba(142, 42, 44,.45);
	transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s, background .3s;
}
.sc-book-circle:hover {
	transform: scale(1.08);
	background: var(--sc-red-d);
	box-shadow: 0 14px 40px rgba(142, 42, 44,.55);
}
.sc-book-circle__text {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	animation: scBookSpin 14s linear infinite;
}
.sc-book-circle:hover .sc-book-circle__text {
	animation-duration: 7s;
}
.sc-book-circle__icon {
	position: relative;
	width: 56px; height: 56px;
	border-radius: 50%;
	background: #fff;
	color: var(--sc-red);
	display: grid;
	place-items: center;
	font-size: 1.3rem;
	transition: background .3s, color .3s;
}
.sc-book-circle:hover .sc-book-circle__icon {
	background: var(--sc-charcoal);
	color: #fff;
}
@media (max-width: 640px) {
	.sc-book-circle {
		width: 90px; height: 90px;
		right: 1rem; bottom: 5rem;
	}
	.sc-book-circle__icon { width: 40px; height: 40px; font-size: 1rem; }
	.sc-book-circle__text text { font-size: 14px; }
}
/* Back-to-top sits below the circle on the right edge */
.back-to-top { right: 1.5rem; bottom: 1.5rem; }
@media (max-width: 640px) {
	.back-to-top { right: 1rem; bottom: 1rem; }
}

/* =========================================================
   ABOUT PAGE — story grid (image left, content right)
   ========================================================= */
.section--about-story { background: #fff; padding-top: clamp(2.5rem, 6vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5.5rem); }
.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}
.about-story-grid__media {
	position: relative;
}
.about-story-grid__media img {
	width: 100%;
	display: block;
	border-radius: 8px;
	box-shadow: 0 18px 60px rgba(0,0,0,.12);
	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.about-story-grid__badge {
	position: absolute;
	bottom: -28px; left: -28px;
	background: var(--sc-red);
	color: #fff;
	padding: 1.4rem 1.6rem;
	border-radius: 6px;
	box-shadow: 0 14px 40px rgba(142, 42, 44,.4);
	text-align: center;
	min-width: 120px;
	z-index: 2;
}
.about-story-grid__badge strong {
	display: block;
	font-family: var(--font-display);
	font-size: 2.4rem;
	line-height: 1;
	font-weight: 700;
	margin-bottom: .15rem;
}
.about-story-grid__badge span {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	opacity: .9;
}
.about-story-grid__decor {
	position: absolute;
	top: -20px; right: -20px;
	width: 110px; height: 110px;
	border: 2px solid var(--sc-gold);
	border-radius: 6px;
	z-index: -1;
}
.about-story-grid__body h2 {
	font-size: clamp(1.9rem, 3.5vw, 2.7rem);
	margin-bottom: 1.25rem;
}
.about-story-grid__body .eyebrow { display: block; margin-bottom: .25rem; }
.about-story-grid__content p { margin-bottom: 1rem; color: var(--sc-text); line-height: 1.75; }
.about-story-grid__content h2 { font-size: 1.4rem; margin: 1.5rem 0 .5rem; }
.about-story-grid__list {
	list-style: none; padding: 0; margin: 1.5rem 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .65rem 1rem;
}
.about-story-grid__list li {
	display: flex; align-items: flex-start; gap: .55rem;
	font-size: .92rem;
	color: var(--sc-text);
}
.about-story-grid__list li i {
	color: var(--sc-red);
	font-size: 1.05rem;
	flex-shrink: 0;
	margin-top: 2px;
}
.about-story-grid__stats {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem 0;
	margin: 1.5rem 0;
	border-top: 1px solid var(--sc-border);
	border-bottom: 1px solid var(--sc-border);
}
.about-story-grid__stat {
	flex: 1;
	text-align: center;
}
.about-story-grid__stat strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--sc-red);
	line-height: 1;
}
.about-story-grid__stat span {
	display: block;
	font-size: .72rem;
	color: var(--sc-muted);
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-top: .35rem;
	font-weight: 600;
}
.about-story-grid__actions {
	display: flex; gap: .75rem; flex-wrap: wrap;
	margin-top: 1.5rem;
}
@media (max-width: 880px) {
	.about-story-grid { grid-template-columns: 1fr; }
	.about-story-grid__badge { left: 1rem; bottom: -20px; padding: 1rem 1.25rem; }
	.about-story-grid__decor { display: none; }
	.about-story-grid__list { grid-template-columns: 1fr; }
}

/* =========================================================
   CAREER PAGE — two-column layout (info left, form right)
   ========================================================= */
.section--career { background: var(--sc-warm); }

.career-layout {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 2.5rem;
	align-items: start;
	max-width: 1180px;
	margin: 0 auto;
}

/* LEFT SIDE — info column */
.career-side { position: sticky; top: 110px; }
.career-side__head { margin-bottom: 2rem; }
.career-side__head .eyebrow { display: block; }
.career-side__head h2 {
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	margin: .25rem 0 .75rem;
	line-height: 1.15;
}
.career-side__head p {
	color: var(--sc-muted);
	font-size: .95rem;
	line-height: 1.65;
	margin: 0;
}

.career-side__block {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 8px;
	padding: 1.5rem;
	margin-bottom: 1rem;
}
.career-side__block h4 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	margin: 0 0 1rem;
	display: flex; align-items: center; gap: .55rem;
	color: var(--sc-charcoal);
}
.career-side__block h4 i { color: var(--sc-red); font-size: 1.15rem; }

/* Benefits list */
.career-perks {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column;
	gap: .95rem;
}
.career-perks li {
	display: flex; gap: .85rem; align-items: flex-start;
}
.career-perks__icon {
	flex-shrink: 0;
	width: 40px; height: 40px;
	display: grid; place-items: center;
	border-radius: 50%;
	background: rgba(142, 42, 44, .08);
	color: var(--sc-red);
	font-size: 1.05rem;
}
.career-perks li > div { display: flex; flex-direction: column; gap: 2px; }
.career-perks strong {
	font-family: var(--font-display);
	font-size: .98rem;
	color: var(--sc-charcoal);
	font-weight: 600;
}
.career-perks span {
	font-size: .82rem;
	color: var(--sc-muted);
	line-height: 1.5;
}

/* Process steps — vertical timeline */
.career-steps {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column;
	gap: 1rem;
	position: relative;
}
.career-steps::before {
	content: '';
	position: absolute;
	left: 17px;
	top: 16px; bottom: 16px;
	width: 2px;
	background: linear-gradient(to bottom, var(--sc-red), rgba(142,42,44,.15));
	z-index: 0;
}
.career-steps li {
	display: flex; gap: .85rem; align-items: flex-start;
	position: relative; z-index: 1;
}
.career-steps__num {
	flex-shrink: 0;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--sc-red);
	color: #fff;
	display: grid; place-items: center;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: .95rem;
	border: 3px solid #fff;
	box-shadow: 0 0 0 1px var(--sc-border);
}
.career-steps li > div { display: flex; flex-direction: column; gap: 2px; padding-top: 4px; }
.career-steps strong {
	font-family: var(--font-display);
	font-size: .98rem;
	color: var(--sc-charcoal);
	font-weight: 600;
}
.career-steps span {
	font-size: .82rem;
	color: var(--sc-muted);
	line-height: 1.5;
}

/* Contact block — slight tint */
.career-side__contact {
	background: linear-gradient(135deg, rgba(142,42,44,.05), #fff);
	border-color: rgba(142,42,44,.15);
}
.career-side__contact p {
	margin: 0 0 .85rem;
	color: var(--sc-muted);
	font-size: .88rem;
}
.career-side__contact .contact-list {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: .45rem;
}
.career-side__contact .contact-list li {
	display: flex; align-items: center; gap: .5rem;
	font-size: .9rem;
	color: var(--sc-charcoal);
}
.career-side__contact .contact-list i { color: var(--sc-red); }
.career-side__contact .contact-list a {
	color: var(--sc-charcoal);
	font-weight: 500;
}
.career-side__contact .contact-list a:hover { color: var(--sc-red); }

/* RIGHT SIDE — form */
.career-main { min-width: 0; }
.career-main .rsv-form {
	margin: 0;
	height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
	.career-layout { grid-template-columns: 1fr; gap: 2rem; max-width: 720px; }
	.career-side { position: static; }
}

/* Upload box (drop-zone style) */
.career-upload { display: block; margin-bottom: 1rem; }
.career-upload__box {
	position: relative;
	border: 2px dashed #666;
	border-radius: 6px;
	background: #fff;
	transition: border-color .2s, background .2s;
	overflow: hidden;
}
.career-upload__box:hover { border-color: var(--sc-red); background: rgba(142, 42, 44, .02); }
.career-upload__box input[type="file"] {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	opacity: 0; cursor: pointer; z-index: 2;
}
.career-upload__placeholder {
	padding: 2rem 1.25rem;
	text-align: center;
	display: flex; flex-direction: column; align-items: center; gap: .35rem;
	color: var(--sc-muted);
	pointer-events: none;
}
.career-upload__placeholder i {
	font-size: 2.3rem;
	color: var(--sc-red);
	margin-bottom: .35rem;
}
.career-upload__placeholder strong {
	font-size: 1rem;
	color: var(--sc-charcoal);
	font-weight: 600;
}
.career-upload__placeholder span {
	font-size: .82rem;
}
.career-upload__file {
	display: flex; align-items: center; gap: .75rem;
	padding: 1.25rem 1.25rem;
	background: rgba(142, 42, 44, .06);
}
.career-upload__file i:first-child {
	color: var(--sc-red);
	font-size: 1.5rem;
	flex-shrink: 0;
}
.career-upload__file > span {
	flex: 1;
	font-weight: 600;
	color: var(--sc-charcoal);
	font-size: .92rem;
	word-break: break-all;
}
.career-upload__remove {
	flex-shrink: 0;
	width: 32px; height: 32px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: var(--sc-red);
	cursor: pointer;
	z-index: 3;
	position: relative;
	transition: background .2s, color .2s;
}
.career-upload__remove:hover { background: var(--sc-red); color: #fff; }

/* Alert banner */
.career-alert {
	display: flex; align-items: flex-start; gap: .75rem;
	padding: 1rem 1.25rem;
	border-radius: 6px;
	margin-bottom: 1.5rem;
	max-width: 850px;
	margin-left: auto; margin-right: auto;
}
.career-alert--success {
	background: #e8f5e9;
	border: 1px solid #a5d6a7;
	color: #1b5e20;
}
.career-alert--success i { color: #2e7a2e; font-size: 1.5rem; }
.career-alert--error {
	background: #ffebee;
	border: 1px solid #ef9a9a;
	color: #b71c1c;
}
.career-alert--error i { color: #c62828; font-size: 1.5rem; }
.career-alert strong { display: block; margin-bottom: .15rem; }
.career-alert p { margin: 0; font-size: .9rem; line-height: 1.5; }

/* =========================================================
   CONTACT PAGE — branch accordion (collapsible per-branch)
   ========================================================= */
.branch-contacts {
	display: flex; flex-direction: column;
	gap: 1rem;
	max-width: 1000px;
	margin: 2.5rem auto;
}
.branch-contact {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--sc-shadow);
	transition: box-shadow .3s;
}
.branch-contact[open] { box-shadow: var(--sc-shadow-lg); }
.branch-contact__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 1.25rem 1.5rem;
	cursor: pointer;
	list-style: none;
	background: var(--sc-cream);
	transition: background .2s;
}
.branch-contact__head::-webkit-details-marker { display: none; }
.branch-contact[open] .branch-contact__head { background: rgba(142, 42, 44,.06); }
.branch-contact__title {
	display: flex; align-items: center; gap: 1rem;
}
.branch-contact__title > i {
	color: var(--sc-red);
	font-size: 1.4rem;
}
.branch-contact__title strong {
	display: block;
	font-family: var(--font-display);
	font-size: 1.2rem;
	color: var(--sc-charcoal);
	line-height: 1.2;
}
.branch-contact__title span {
	display: block;
	color: var(--sc-muted);
	font-size: .85rem;
	margin-top: 2px;
}
.branch-contact__chevron {
	color: var(--sc-muted);
	font-size: 1.2rem;
	transition: transform .25s;
}
.branch-contact[open] .branch-contact__chevron {
	transform: rotate(180deg);
	color: var(--sc-red);
}
.branch-contact__body {
	border-top: 1px solid var(--sc-border);
	animation: scFadeIn .35s ease;
}
.branch-contact__grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 0;
}
.branch-contact__details {
	padding: 1.75rem 1.5rem;
}
.branch-contact__list {
	list-style: none; padding: 0; margin: 0 0 1.5rem;
	display: flex; flex-direction: column;
	gap: 1.1rem;
}
.branch-contact__list li {
	display: flex; gap: .85rem; align-items: flex-start;
}
.branch-contact__icon {
	width: 38px; height: 38px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--sc-cream);
	color: var(--sc-red);
	display: grid; place-items: center;
	font-size: .95rem;
}
.branch-contact__list li > div { display: flex; flex-direction: column; gap: 2px; }
.branch-contact__lbl {
	font-size: .68rem;
	font-weight: 700;
	color: var(--sc-muted);
	letter-spacing: .12em;
	text-transform: uppercase;
}
.branch-contact__val {
	font-size: .95rem;
	color: var(--sc-charcoal);
	font-weight: 500;
	line-height: 1.4;
	text-decoration: none;
}
a.branch-contact__val:hover { color: var(--sc-red); }
.branch-contact__actions {
	display: flex; gap: .6rem; flex-wrap: wrap;
}
.branch-contact__map { line-height: 0; background: var(--sc-cream); }
.branch-contact__map iframe {
	width: 100%; height: 100%; min-height: 300px;
	border: 0; display: block;
	filter: grayscale(15%);
	transition: filter .3s;
}
.branch-contact:hover .branch-contact__map iframe { filter: grayscale(0); }
@media (max-width: 760px) {
	.branch-contact__grid { grid-template-columns: 1fr; }
	.branch-contact__map iframe { min-height: 240px; }
	.branch-contact__title strong { font-size: 1.05rem; }
}

/* =========================================================
   CONTACT PAGE — branch maps (legacy class - keep)
   ========================================================= */
.contact-maps {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
	margin-top: 2.5rem;
}
.contact-map {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: var(--sc-shadow);
	transition: box-shadow .3s, transform .3s;
	display: flex; flex-direction: column;
}
.contact-map:hover {
	box-shadow: var(--sc-shadow-lg);
	transform: translateY(-4px);
}
.contact-map__head {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--sc-border);
	background: var(--sc-cream);
}
.contact-map__head h3 {
	color: var(--sc-red);
	font-size: 1.2rem;
	margin: 0 0 .25rem;
	display: flex; align-items: center; gap: .5rem;
}
.contact-map__head p { margin: 0; color: var(--sc-muted); font-size: .88rem; }
.contact-map__frame { line-height: 0; background: var(--sc-cream); }
.contact-map__frame iframe { width: 100%; height: 320px; display: block; border: 0; filter: grayscale(15%); transition: filter .3s; }
.contact-map:hover .contact-map__frame iframe { filter: grayscale(0); }
.contact-map__actions {
	display: flex; gap: .5rem; flex-wrap: wrap;
	padding: 1rem 1.5rem;
}
.contact-map__actions .btn { flex: 1; justify-content: center; min-width: 120px; }
@media (max-width: 880px) {
	.contact-maps { grid-template-columns: 1fr; }
}

/* =========================================================
   PROMOTIONAL POPUP
   ========================================================= */
.sc-popup {
	position: fixed; inset: 0;
	z-index: 99999;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s, visibility .35s;
}
.sc-popup.is-open {
	opacity: 1;
	visibility: visible;
}
.sc-popup__overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,.78);
	backdrop-filter: blur(4px);
	cursor: pointer;
}
.sc-popup__box {
	position: relative;
	max-width: 580px;
	width: calc(100% - 2rem);
	margin: 50vh auto 0;
	transform: translateY(-50%) scale(.92);
	transition: transform .4s cubic-bezier(.22,.61,.36,1);
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.sc-popup.is-open .sc-popup__box { transform: translateY(-50%) scale(1); }
.sc-popup__box img { display: block; width: 100%; height: auto; }
.sc-popup__link { display: block; line-height: 0; }
.sc-popup__close {
	position: absolute; top: .65rem; right: .65rem;
	width: 36px; height: 36px;
	border-radius: 50%;
	background: rgba(0,0,0,.6);
	border: 0;
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
	display: grid; place-items: center;
	transition: background .2s, transform .2s;
	z-index: 2;
}
.sc-popup__close:hover { background: var(--sc-red); transform: scale(1.08); }

/* =========================================================
   GOOGLE REVIEW BADGE
   ========================================================= */
.google-review-badge {
	display: inline-flex; align-items: center; gap: .55rem;
	margin-top: 1rem;
	padding: .55rem 1.1rem;
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 600;
	color: var(--sc-charcoal);
	text-decoration: none;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}
.google-review-badge:hover {
	border-color: #4285F4;
	transform: translateY(-2px);
	box-shadow: var(--sc-shadow);
	color: var(--sc-charcoal);
}
.google-review-badge svg { flex-shrink: 0; }

/* Per-card Google source icon */
.testimonial-card { position: relative; }
.testimonial-card__source {
	position: absolute; top: 1.25rem; right: 1.25rem;
	line-height: 0;
	opacity: .85;
}
.testimonial-card__source:hover { opacity: 1; }

/* =========================================================
   MAIN MENU / CHEF'S SPECIAL TOGGLE (like reference site)
   ========================================================= */
.menu-view-toggle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	margin: 0 auto 2.5rem;
	max-width: 800px;
	border: 1px solid var(--sc-border);
	overflow: hidden;
}
.menu-view-toggle__btn {
	display: block;
	text-align: center;
	padding: 1.1rem 1rem;
	color: var(--sc-charcoal);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-size: .85rem;
	background: var(--sc-cream);
	transition: background .25s, color .25s;
}
.menu-view-toggle__btn:nth-child(2) { background: var(--sc-charcoal); color: #fff; }
.menu-view-toggle__btn.is-active { background: var(--sc-gold); color: var(--sc-charcoal); }
.menu-view-toggle__btn.is-active:nth-child(2) { background: var(--sc-gold); color: var(--sc-charcoal); }
.menu-view-toggle__btn:hover { background: var(--sc-red); color: #fff; }
@media (max-width: 600px) {
	.menu-view-toggle__btn { padding: .85rem .5rem; font-size: .72rem; }
}

/* =========================================================
   BRANCH SELECTOR (menu / gallery pages)
   ========================================================= */
.branch-selector {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: .75rem;
	margin: 0 auto 2.5rem;
	padding: .5rem;
	background: var(--sc-cream);
	border-radius: 999px;
	max-width: fit-content;
}
.branch-selector__btn {
	display: inline-flex; align-items: center; gap: .5rem;
	padding: .7rem 1.4rem;
	border-radius: 999px;
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--sc-charcoal);
	text-decoration: none;
	transition: background .25s, color .25s;
}
.branch-selector__btn i { color: var(--sc-red); }
.branch-selector__btn:hover { background: rgba(142, 42, 44,.08); color: var(--sc-red); }
.branch-selector__btn.is-active {
	background: var(--sc-red);
	color: #fff;
}
.branch-selector__btn.is-active i { color: #fff; }

/* =========================================================
   MENU PHOTO GRID (template-menu.php)
   ========================================================= */
.section--menu-page { background: var(--sc-warm); }
.menu-section-block {
	margin-bottom: 4rem;
	scroll-margin-top: 120px;
}
.menu-section-block__header {
	text-align: center;
	margin-bottom: 2.5rem;
}
.menu-section-block__header .eyebrow { display: block; }
.menu-section-block__header h2 {
	margin-top: .25rem;
}

.menu-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}
.menu-photo-card {
	background: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 6px 24px rgba(0,0,0,.06);
	transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s;
	border: 1px solid var(--sc-border);
	display: flex; flex-direction: column;
}
.menu-photo-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.menu-photo-card__img {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--sc-cream);
}
.menu-photo-card__img img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.menu-photo-card:hover .menu-photo-card__img img {
	transform: scale(1.07);
}
.menu-photo-card__veg {
	position: absolute; top: .75rem; right: .75rem;
	width: 20px; height: 20px;
	background: #fff;
	border: 2px solid #2e7a2e;
	border-radius: 3px;
	display: grid; place-items: center;
	color: #2e7a2e;
	font-size: 11px;
	line-height: 1;
}
.menu-photo-card__veg--nonveg {
	border-color: #c52525;
	color: #c52525;
}
.menu-photo-card__body {
	padding: 1.25rem 1.5rem 1.5rem;
	flex: 1;
	display: flex; flex-direction: column;
	text-align: center;
}
.menu-photo-card__name {
	font-family: var(--font-display);
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 .5rem;
	color: var(--sc-charcoal);
}
.menu-photo-card__desc {
	color: var(--sc-muted);
	font-size: .88rem;
	line-height: 1.55;
	margin: 0 0 .85rem;
	flex: 1;
}
.menu-photo-card__price {
	margin: 0;
	font-size: .92rem;
	color: var(--sc-charcoal);
	font-weight: 500;
}
.menu-photo-card__price strong {
	font-family: var(--font-display);
	color: var(--sc-red);
	font-size: 1.05rem;
}
@media (max-width: 980px) { .menu-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .menu-photo-grid { grid-template-columns: 1fr; } }

/* =========================================================
   MENU PDF DOWNLOAD BAR
   ========================================================= */
.menu-pdf-bar {
	text-align: center;
	margin: 0 auto 2.5rem;
}
.menu-pdf-bar .btn { font-size: .85rem; }
.post-card {
	background: #fff;
	border: 1px solid var(--sc-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .2s, box-shadow .2s;
	display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--sc-shadow); }
.post-card__media { display: block; height: 200px; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { font-size: .82rem; color: var(--sc-muted); margin-bottom: .35rem; }
.post-card h2, .post-card h3 { font-size: 1.15rem; margin: 0 0 .5rem; }
.post-card a { color: var(--sc-charcoal); }
.post-card a:hover { color: var(--sc-saffron-d); }
.post-card p { color: var(--sc-muted); font-size: .92rem; margin: 0 0 .8rem; flex: 1; }

.single-post__media { margin-bottom: 1.5rem; border-radius: var(--radius); overflow: hidden; }
.single-post__content h2, .single-post__content h3 { margin-top: 1.6rem; }
.post-meta { color: var(--sc-muted); font-size: .9rem; margin-bottom: 1rem; }

.sc-pagination {
	display: flex; justify-content: center; gap: .35rem;
	margin-top: 2.5rem;
}
.sc-pagination .page-numbers {
	display: inline-grid; place-items: center;
	min-width: 40px; height: 40px;
	padding: 0 .8rem;
	border-radius: 8px;
	background: #fff;
	border: 1px solid var(--sc-border);
	color: var(--sc-charcoal);
	font-weight: 600;
}
.sc-pagination .page-numbers.current,
.sc-pagination .page-numbers:hover { background: var(--sc-saffron); color: #fff; border-color: var(--sc-saffron); }

/* ---------- Page content ---------- */
.page-content h2, .page-content h3 { margin-top: 1.8rem; }
.page-content p { font-size: 1.02rem; }

/* ---------- Footer CTA ---------- */
.footer-cta {
	background: linear-gradient(135deg, var(--sc-maroon) 0%, #5c1818 100%);
	color: #fff;
	padding: 3.5rem 0;
}
.footer-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-cta h2 { color: #fff; margin: 0 0 .25rem; }
.footer-cta p { color: rgba(255,255,255,.85); margin: 0; }
.footer-cta__actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- Site footer ---------- */
.site-footer { background: var(--sc-charcoal); color: rgba(255,255,255,.78); }
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--sc-gold); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 2rem;
	padding: 4rem 1.25rem 2.5rem;
}
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 1rem; letter-spacing: .04em; margin-bottom: 1rem; }
.site-footer__about p { font-size: .92rem; line-height: 1.7; margin-bottom: 1rem; }
.site-footer__social { display: flex; gap: .5rem; margin-bottom: 1.25rem; }
.site-footer__social a {
	width: 38px; height: 38px;
	display: inline-grid; place-items: center;
	background: rgba(255,255,255,.08);
	border-radius: 50%;
	color: rgba(255,255,255,.85);
}
.site-footer__social a:hover { background: var(--sc-saffron); color: #fff; }
.site-footer__delivery strong { display: block; margin-bottom: .5rem; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: #fff; }
.site-footer__delivery-links { display: flex; flex-wrap: wrap; gap: .4rem; }
.site-footer__delivery-links a {
	padding: .35rem .8rem;
	background: rgba(255,255,255,.08);
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 600;
}
.site-footer__delivery-links a:hover { background: var(--sc-saffron); color: #fff; }

.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col ul li { margin-bottom: .5rem; font-size: .92rem; }
.site-footer__branches li { margin-bottom: .9rem; font-size: .88rem; }
.site-footer__branches strong { display: block; color: #fff; }
.site-footer__branches span { display: block; color: rgba(255,255,255,.65); }

.contact-list li { display: flex; gap: .5rem; margin-bottom: .5rem; font-size: .92rem; line-height: 1.5; }
.contact-list i { color: var(--sc-gold); margin-top: .2rem; }

.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding: 1.25rem 0;
	font-size: .85rem;
	text-align: center;
}
.site-footer__bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.site-footer__bottom p { margin: 0; color: rgba(255,255,255,.6); }

@media (max-width: 980px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.site-footer__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.25rem 2rem; }
	.site-footer__bottom .container { flex-direction: column; }
}

/* ---------- Back to top ---------- */
.back-to-top {
	position: fixed; bottom: 24px; right: 24px;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: var(--sc-saffron);
	color: #fff;
	display: inline-grid; place-items: center;
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity .25s, transform .25s, visibility .25s;
	z-index: 50;
	box-shadow: var(--sc-shadow);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--sc-saffron-d); color: #fff; }

/* ---------- Success message ---------- */
.sc-success {
	background: #e8f5e9;
	color: #1b5e20;
	padding: 1rem 1.25rem;
	border-radius: var(--radius-sm);
	border: 1px solid #c5e1c8;
}
.sc-success strong { display: block; margin-bottom: .25rem; }

/* ---------- Search form ---------- */
.search-form { display: flex; gap: .5rem; max-width: 520px; margin: 1rem auto; }
.search-form input {
	flex: 1;
	padding: .75rem .9rem;
	border: 1px solid var(--sc-border);
	border-radius: var(--radius-sm);
	font-size: .95rem;
}

/* ---------- WP defaults polish ---------- */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--sc-muted); }
.alignright { float: right; margin: 0 0 1rem 1rem; }
.alignleft  { float: left;  margin: 0 1rem 1rem 0; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-block-image figcaption { color: var(--sc-muted); font-size: .85rem; }

/* ---------- Print ---------- */
@media print {
	.site-header, .site-footer, .footer-cta, .back-to-top, .topbar { display: none; }
}
