/**
 * Mediterranean Demo — main stylesheet
 *
 * @package Mediterranean_Demo
 */

/* -------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */

:root {
	/*
	 * Appetite-forward palette (warmth & savory cues, common in environmental / food color research):
	 * Red–orange tones are linked to arousal and food approach; yellow–gold suggests ripeness and energy;
	 * herb/olive greens cue fresh savory ingredients; dominant blues are avoided (often lower food appeal).
	 * Creams and warm sand read as bread, yogurt, and lit kitchen surfaces.
	 */
	--color-bg: #f4ebde;
	--color-bg-elevated: #fff8ee;
	--color-ink: #2a2118;
	--color-ink-muted: #5a4e42;
	--color-olive: #4a5a32;
	--color-olive-deep: #323d24;
	--color-accent: #c73e1d;
	--color-accent-hover: #a93218;
	--color-gold: #c9931c;
	--color-cream: #efe3d1;
	--color-signature-cream: #faf1e4;
	--color-line: rgba(42, 33, 24, 0.12);
	--color-header-glass: rgba(244, 235, 222, 0.94);
	--color-header-glass-dense: rgba(244, 235, 222, 0.98);
	--color-text-on-olive: #f7ecdc;
	--color-text-on-olive-soft: rgba(247, 236, 220, 0.88);
	--color-text-on-olive-muted: rgba(247, 236, 220, 0.75);
	--color-text-on-olive-faint: rgba(247, 236, 220, 0.55);

	--font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--font-display: "Fraunces", Georgia, "Times New Roman", serif;

	--space-xs: 0.35rem;
	--space-sm: 0.75rem;
	--space-md: 1.25rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: clamp(3rem, 6vw, 5rem);

	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--shadow-soft: 0 18px 50px rgba(42, 33, 24, 0.12);
	--shadow-card: 0 12px 32px rgba(42, 33, 24, 0.08);

	--header-height: 4.25rem;
	--container: min(1120px, 100% - 2rem);
	--transition: 0.2s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--color-ink);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-olive-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

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

/* -------------------------------------------------------------------------
   Accessibility
   ------------------------------------------------------------------------- */

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

.screen-reader-text:focus {
	background: #fff;
	border-radius: var(--radius-sm);
	box-shadow: 0 0 0 2px var(--color-accent);
	clip: auto !important;
	clip-path: none;
	color: var(--color-ink);
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	height: auto;
	left: 0.5rem;
	line-height: normal;
	padding: 0.75rem 1rem;
	text-decoration: none;
	top: 0.5rem;
	width: auto;
	z-index: 100002;
}

.skip-link:focus {
	position: fixed;
}

:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------------- */

.container {
	width: var(--container);
	margin-inline: auto;
}

#main-content:focus {
	outline: none;
}

section[id],
#main-content {
	scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

/* -------------------------------------------------------------------------
   Header & nav
   ------------------------------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--color-header-glass);
	backdrop-filter: saturate(1.2) blur(12px);
	-webkit-backdrop-filter: saturate(1.2) blur(12px);
	border-bottom: 1px solid var(--color-line);
}

/* Front page: fixed bar over video hero, then solid once you scroll past. */
body.home .site-header {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 100;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		backdrop-filter 0.25s ease;
}

body.home:not(.admin-bar) .site-header {
	top: 0;
}

body.admin-bar.home .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar.home .site-header {
		top: 46px;
	}
}

body.home .site-header.site-header--hero {
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom-color: transparent;
	box-shadow: none;
}

body.home .site-header.site-header--hero .site-brand {
	color: #fff;
	outline-offset: 4px;
}

body.home .site-header.site-header--hero .site-brand:hover,
body.home .site-header.site-header--hero .site-brand:focus-visible {
	opacity: 0.88;
}

body.home .site-header.site-header--hero .site-brand__logo {
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28));
}

body.home .site-header.site-header--hero .nav-toggle {
	border-color: rgba(255, 255, 255, 0.4);
	background: rgba(0, 0, 0, 0.2);
}

body.home .site-header.site-header--hero .nav-toggle__bar {
	background: #fff;
}

body.home .site-header.site-header--hero .site-nav__link,
body.home .site-header.site-header--hero .site-nav .menu-item a {
	color: #fff;
}

body.home .site-header.site-header--hero .site-nav__link:hover,
body.home .site-header.site-header--hero .site-nav__link:focus-visible,
body.home .site-header.site-header--hero .site-nav .menu-item a:hover,
body.home .site-header.site-header--hero .site-nav .menu-item a:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

body.home.nav-open .site-header {
	background: var(--color-header-glass-dense);
	backdrop-filter: blur(12px);
	border-bottom-color: var(--color-line);
}

body.home.nav-open .site-header .site-brand,
body.home.nav-open .site-header .site-nav__link,
body.home.nav-open .site-header .site-nav .menu-item a {
	color: var(--color-ink);
}

body.home.nav-open .site-header .site-brand__logo {
	filter: none;
}

body.home.nav-open .site-header .nav-toggle {
	border-color: var(--color-line);
	background: var(--color-bg-elevated);
}

body.home.nav-open .site-header .nav-toggle__bar {
	background: var(--color-ink);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	min-height: var(--header-height);
	gap: clamp(0.5rem, 2vw, 1.25rem);
	width: 100%;
	max-width: none;
	margin: 0;
	padding-left: max(0.35rem, env(safe-area-inset-left));
	padding-right: max(0.75rem, env(safe-area-inset-right));
	box-sizing: border-box;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--space-sm);
	text-decoration: none;
	color: inherit;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.site-brand:hover,
.site-brand:focus-visible {
	color: var(--color-olive);
	text-decoration: none;
}

.site-brand__logo {
	display: block;
	/* height: clamp(4.25rem, 6.5vw, 4.85rem); */
	width: clamp(10.25rem, 6.5vw, 4.85rem);
	object-fit: contain;
	flex-shrink: 0;
	margin: 1rem;
}

.nav-toggle {
	flex-shrink: 0;
	margin-left: auto;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid var(--color-line);
	border-radius: var(--radius-sm);
	background: var(--color-bg-elevated);
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition);
}

.nav-toggle:hover {
	border-color: rgba(42, 33, 24, 0.25);
}

.nav-toggle__bar {
	display: block;
	width: 1.25rem;
	height: 2px;
	background: var(--color-ink);
	margin-inline: auto;
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

.site-nav {
	position: fixed;
	inset: 6.5rem 0 auto 0;
	max-height: 0;
	overflow: hidden;
	background: var(--color-bg-elevated);
	transition: max-height 0.35s ease;
}

body.nav-open .site-nav {
	max-height: 320px;
	box-shadow: var(--shadow-soft);
}

/* Button children: label span, then three bars */
body.nav-open .nav-toggle__bar:nth-child(3) {
	opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(2) {
	transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(4) {
	transform: translateY(-8px) rotate(-45deg);
}

.site-nav__list {
	list-style: none;
	margin: 0;
	padding: var(--space-md) var(--space-lg) var(--space-lg);
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
}

.site-nav__link {
	display: block;
	padding: 0.65rem 0.25rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--color-ink);
	border-radius: var(--radius-sm);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
	background: var(--color-cream);
	color: var(--color-olive-deep);
	text-decoration: none;
}

/* WordPress menu markup */
.site-nav .menu-item {
	list-style: none;
	margin: 0;
}

.site-nav .menu-item a {
	display: block;
	padding: 0.65rem 0.25rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--color-ink);
	border-radius: var(--radius-sm);
}

.site-nav .menu-item a:hover,
.site-nav .menu-item a:focus-visible {
	background: var(--color-cream);
	color: var(--color-olive-deep);
	text-decoration: none;
}

@media (min-width: 900px) {
	.nav-toggle {
		display: none;
	}

	.site-nav {
		flex: 0 1 auto;
		min-width: 0;
		position: static;
		max-height: none !important;
		overflow: visible;
		background: transparent;
		border: 0;
		box-shadow: none;
		margin-left: 0;
	}

	.site-nav__list,
	.site-nav .menu {
		flex-direction: row;
		align-items: center;
		gap: 0.15rem;
		padding: 0;
		margin: 0;
		list-style: none;
		display: flex;
	}

	.site-nav__link,
	.site-nav .menu-item a {
		padding: 0.5rem 0.9rem;
		font-size: 0.95rem;
	}
}

@media (max-width: 899px) {
	.site-header__inner .site-nav {
		flex: 1 1 auto;
		min-width: 0;
		align-self: stretch;
	}
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.85rem 1.35rem;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.98rem;
	text-decoration: none;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.15s ease;
}

.btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}

.btn:active {
	transform: translateY(0);
}

.btn--primary {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
	background: var(--color-accent-hover);
	border-color: var(--color-accent-hover);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	color: var(--color-ink);
	border-color: rgba(42, 33, 24, 0.35);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
	border-color: var(--color-ink);
	background: rgba(255, 255, 255, 0.6);
	color: var(--color-ink);
}

.btn--secondary {
	background: var(--color-olive);
	color: #fff;
	border-color: var(--color-olive);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
	background: var(--color-olive-deep);
	border-color: var(--color-olive-deep);
	color: #fff;
}

.btn--light {
	background: #fff;
	color: var(--color-olive-deep);
	border-color: #fff;
}

.btn--light:hover,
.btn--light:focus-visible {
	background: var(--color-cream);
	border-color: var(--color-cream);
	color: var(--color-ink);
}

.btn--hero {
	background: #fff;
	color: var(--color-olive-deep);
	border-color: #fff;
	font-weight: 700;
}

.btn--hero:hover,
.btn--hero:focus-visible {
	background: var(--color-cream);
	border-color: var(--color-cream);
	color: var(--color-ink);
}

.btn--hero-ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.65);
}

.btn--hero-ghost:hover,
.btn--hero-ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff;
}

/* -------------------------------------------------------------------------
   Hero (CAVA-style full-bleed video)
   ------------------------------------------------------------------------- */

.hero--video {
	/* Fill the first screen; avoid capped heights (e.g. 52rem) that expose the next section. */
	min-height: 100vh;
	min-height: 100dvh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: calc(var(--header-height) + var(--space-xl)) var(--space-md) var(--space-2xl);
	color: #fff;
	text-align: center;
	overflow: hidden;
	background: var(--color-olive-deep);
}

body.admin-bar .hero--video {
	min-height: calc(100vh - 32px);
	min-height: calc(100dvh - 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .hero--video {
		min-height: calc(100vh - 46px);
		min-height: calc(100dvh - 46px);
	}
}

.hero__video-wrap {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		rgba(48, 32, 24, 0.88) 0%,
		rgba(62, 42, 30, 0.5) 45%,
		rgba(52, 36, 28, 0.6) 100%
	);
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
}

.hero__content {
	max-width: 52rem;
	margin-inline: auto;
}

.hero__eyebrow {
	margin: 0 0 var(--space-sm);
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: rgba(255, 255, 255, 0.75);
}

.hero__title {
	margin: 0 0 var(--space-md);
	font-family: var(--font-sans);
	font-weight: 800;
	font-size: clamp(2.75rem, 11vw, 6.75rem);
	line-height: 0.92;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	text-wrap: balance;
}

.hero__title-line {
	display: block;
}

.hero__title-line--accent {
	font-family: var(--font-display);
	font-weight: 700;
	font-style: italic;
	text-transform: none;
	letter-spacing: -0.02em;
	color: #f0ebe0;
	margin-top: 0.06em;
}

.hero__subtitle {
	margin: 0 auto var(--space-lg);
	max-width: 40rem;
	font-size: clamp(1rem, 2.8vw, 1.2rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 500;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	justify-content: center;
}

@media (min-width: 640px) {
	.hero--video {
		text-align: left;
	}

	.hero__content {
		margin-inline: 0;
		max-width: 38rem;
	}

	.hero__subtitle {
		margin-left: 0;
		margin-right: 0;
	}

	.hero__actions {
		justify-content: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__video {
		display: none;
	}

	.hero__video-wrap {
		background-image: var(--hero-poster);
		background-size: cover;
		background-position: center;
	}
}

/* -------------------------------------------------------------------------
   Sections & typography utilities
   ------------------------------------------------------------------------- */

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--color-accent);
	margin: 0 0 var(--space-sm);
}

.section {
	padding: var(--space-2xl) 0;
}

.section--signature {
	background: var(--color-signature-cream);
	border: none;
	border-bottom: 2px solid var(--color-accent);
}

.section--signature .card-grid {
	gap: clamp(2.25rem, 5vw, 4rem);
}

.section__header.section__header--signature {
	text-align: center;
	margin-bottom: clamp(2rem, 5vw, 3.25rem);
	max-width: none;
	margin-inline: auto;
}

.section__title--signature {
	font-family: var(--font-sans);
	font-size: clamp(1.35rem, 3.2vw, 1.85rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin: 0;
	line-height: 1.25;
}

.section--discovery {
	background: linear-gradient(180deg, var(--color-signature-cream) 0%, var(--color-bg) 42%);
}

.section__header {
	margin-bottom: var(--space-xl);
}

.section__header--center {
	text-align: center;
	max-width: 52ch;
	margin-inline: auto;
	margin-bottom: var(--space-xl);
}

.section__title.section__title--signature {
	margin: 0;
}

.section__title {
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	line-height: 1.15;
	margin: 0 0 var(--space-sm);
	letter-spacing: -0.02em;
}

.section__subtitle {
	margin: 0;
	color: var(--color-ink-muted);
	font-size: 1.05rem;
}

.prose {
	margin: 0 0 var(--space-md);
	color: var(--color-ink-muted);
	max-width: 52ch;
}

.text-link {
	font-weight: 600;
	text-decoration: none;
	color: var(--color-olive-deep);
}

.text-link:hover {
	text-decoration: underline;
}

/* -------------------------------------------------------------------------
   Cards
   ------------------------------------------------------------------------- */

.card-grid {
	display: grid;
	gap: var(--space-lg);
}

.card-grid--3 {
	grid-template-columns: 1fr;
}

@media (min-width: 700px) {
	.card-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.card-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Product grid — tight “table-side” framing, warm grade, float shadow on outer shell. */
.dish-card {
	background: transparent;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	overflow: visible;
	border: none;
	box-shadow: none;
	border-radius: 0;
}

.dish-card__media {
	width: 100%;
	padding: var(--space-md) var(--space-xs) var(--space-xs);
	filter: drop-shadow(0.45rem 0.75rem 0.55rem rgba(42, 33, 24, 0.22));
	transition: filter 0.35s ease;
}

.dish-card:hover .dish-card__media {
	filter: drop-shadow(0.5rem 0.95rem 0.72rem rgba(42, 33, 24, 0.28));
}

.dish-card__media-crop {
	position: relative;
	height: clamp(300px, 40vw, 330px);
	overflow: hidden;
	border-radius: var(--radius-sm);
	background: #ebe0d0;
	/* Soft edge falloff draws the eye to the food (closer / more intimate). */
	box-shadow:
		inset 0 0 0 1px rgba(42, 33, 24, 0.06),
		inset 0 0 55px rgba(42, 33, 24, 0.12),
		inset 0 -25px 45px rgba(250, 241, 228, 0.5);
}

.dish-card__media-crop img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 48%;
	transform-origin: 50% 42%;
	/* Slightly richer, warmer — reads more “there in the kitchen”. */
	filter: saturate(1.14) contrast(1.05) brightness(1.03);
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.45s ease;
}

.dish-card:hover .dish-card__media-crop img {
	transform: scale(1.2) translateY(-2px);
	filter: saturate(1.18) contrast(1.06) brightness(1.04);
}

.dish-card__body {
	padding: var(--space-md) var(--space-md) 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
	max-width: 28rem;
}

.dish-card__title {
	font-family: var(--font-sans);
	font-size: clamp(0.95rem, 2vw, 1.4rem);
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-ink);
	margin: 0;
	line-height: 1.25;
}

.dish-card__text {
	margin: 0;
	color: var(--color-ink-muted);
	flex: 0 1 auto;
	font-size: 1.2rem;
	line-height: 1.55;
}

.dish-card__link {
	margin-top: 0.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.22em;
	color: var(--color-ink);
}

.dish-card__link:hover {
	color: var(--color-accent-hover);
}

@media (prefers-reduced-motion: reduce) {
	.dish-card__media,
	.dish-card:hover .dish-card__media {
		transition: none;
		filter: drop-shadow(0.45rem 0.75rem 0.55rem rgba(42, 33, 24, 0.22));
	}

	.dish-card__media-crop img,
	.dish-card:hover .dish-card__media-crop img {
		transition: none;
		transform: scale(1.14);
		filter: saturate(1.14) contrast(1.05) brightness(1.03);
	}
}

/* -------------------------------------------------------------------------
   Discovery strip
   ------------------------------------------------------------------------- */

.discovery__intro {
	text-align: center;
	max-width: 52ch;
	margin: 0 auto var(--space-xl);
}

.discovery__intro .btn {
	margin-top: var(--space-md);
}

.discovery-scroll {
	display: flex;
	gap: var(--space-md);
	overflow-x: auto;
	padding-bottom: var(--space-sm);
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.discovery-scroll::-webkit-scrollbar {
	height: 6px;
}

.discovery-scroll::-webkit-scrollbar-thumb {
	background: var(--color-cream);
	border-radius: 999px;
}

.discovery-tile {
	flex: 0 0 min(78vw, 280px);
	scroll-snap-align: start;
	position: relative;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: #000;
}

.discovery-tile img {
	height: 320px;
	width: 100%;
	object-fit: cover;
	opacity: 0.92;
	transition: transform 0.4s ease, opacity var(--transition);
}

.discovery-tile:hover img {
	transform: scale(1.04);
	opacity: 1;
}

.discovery-tile__label {
	position: absolute;
	left: var(--space-md);
	bottom: var(--space-md);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
	.discovery-scroll {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		overflow: visible;
	}

	.discovery-tile {
		flex: unset;
	}

	.discovery-tile img {
		height: 280px;
	}
}

/* -------------------------------------------------------------------------
   Band (catering)
   ------------------------------------------------------------------------- */

.band {
	padding: var(--space-2xl) 0;
}

.band--catering {
	--band-scrim: linear-gradient(
		105deg,
		rgba(45, 52, 30, 0.9) 0%,
		rgba(45, 52, 30, 0.72) 45%,
		rgba(45, 52, 30, 0.88) 100%
	);
	background-color: var(--color-olive-deep);
	background-image: var(--band-scrim), var(--catering-bg);
	background-repeat: no-repeat, no-repeat;
	color: var(--color-text-on-olive);
	position: relative;
	overflow: hidden;
}

.band--catering::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(50% 120% at 90% 20%, rgba(199, 62, 29, 0.35), transparent 55%);
	pointer-events: none;
}

.band__inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.band__title {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4vw, 2.6rem);
	margin: 0 0 var(--space-md);
	letter-spacing: -0.02em;
}

.band__text {
	margin: 0 0 var(--space-lg);
	color: var(--color-text-on-olive-soft);
	font-size: 1.08rem;
}

/* -------------------------------------------------------------------------
   Story split
   ------------------------------------------------------------------------- */

.story-split {
	display: grid;
	gap: var(--space-xl);
	align-items: center;
}

.story-split__media img {
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
	width: 100%;
	max-height: 520px;
	object-fit: cover;
}

@media (min-width: 900px) {
	.story-split {
		grid-template-columns: 1fr 1fr;
	}
}

/* -------------------------------------------------------------------------
   Testimonials carousel — immersive full-bleed
   ------------------------------------------------------------------------- */

.section--quotes {
	--quotes-ink: #f7f3eb;
	--quotes-ink-soft: rgba(247, 243, 235, 0.72);
	--quotes-glow: rgba(231, 168, 91, 0.35);
	position: relative;
	overflow: clip;
	padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.25rem, 7vw, 5rem);
	background-color: #1c1410;
	background-image:
		radial-gradient(
			ellipse 90% 70% at 50% 50%,
			transparent 0%,
			rgba(10, 8, 7, 0.65) 100%
		),
		radial-gradient(
			ellipse 120% 85% at 50% 0%,
			rgba(231, 168, 91, 0.14),
			transparent 52%
		),
		radial-gradient(
			ellipse 85% 75% at 100% 100%,
			rgba(180, 90, 52, 0.16),
			transparent 48%
		),
		linear-gradient(
			165deg,
			rgba(22, 16, 13, 0.88) 0%,
			rgba(32, 24, 20, 0.72) 38%,
			rgba(18, 14, 12, 0.9) 100%
		),
		var(--quotes-bg, none);
	background-repeat: no-repeat;
	background-size:
		auto,
		auto,
		auto,
		auto,
		cover;
	background-position:
		center,
		center,
		center,
		center,
		center 40%;
	color: var(--quotes-ink);
	border-block: none;
}

.section--quotes::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
	opacity: 0.45;
	mix-blend-mode: overlay;
}

.quotes-carousel {
	position: relative;
	z-index: 1;
}

.quotes-carousel--single .quotes-carousel__controls {
	display: none;
}

.quotes-carousel__header {
	text-align: center;
	margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.quotes-carousel__eyebrow {
	margin: 0 0 var(--space-sm);
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(231, 168, 91, 0.95);
}

.quotes-carousel__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.85rem, 2.5vw, 1.75rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.quotes-carousel__stage {
	position: relative;
}

.quotes-carousel__viewport {
	position: relative;
	overflow: hidden;
	outline: none;
	touch-action: pan-y;
}

.quotes-carousel__viewport:focus-visible {
	box-shadow:
		0 0 0 2px #1c1410,
		0 0 0 4px rgba(231, 168, 91, 0.85);
	border-radius: var(--radius-lg);
}

.quotes-carousel__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap;
	will-change: transform;
	transition: transform 0.75s cubic-bezier(0.22, 1, 0.32, 1);
}

@media (prefers-reduced-motion: reduce) {
	.quotes-carousel__track {
		transition-duration: 0.01ms;
	}
}

.quotes-carousel__slide {
	flex: 0 0 auto;
	box-sizing: border-box;
	padding: 0 max(1rem, 4vw);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: clamp(14rem, 42vw, 20rem);
}

.quotes-carousel__quote {
	position: relative;
	margin: 0;
	max-width: 38rem;
	padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2.25rem);
}

.quotes-carousel__quote p {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(3.2rem, 3.8vw, 2.65rem);
	line-height: 1.4;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.quotes-carousel__cite {
	display: block;
	margin-top: var(--space-lg);
	font-style: normal;
	font-family: var(--font-sans);
	font-weight: 700;
	font-size: 0.82rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--quotes-ink-soft);
}

.quotes-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(1rem, 3vw, 1.75rem);
	margin-top: clamp(1.25rem, 3vw, 2rem);
	padding-bottom: 0.25rem;
}

.quotes-carousel__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--quotes-ink);
	cursor: pointer;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.quotes-carousel__btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.35);
	transform: scale(1.05);
}

.quotes-carousel__btn:focus-visible {
	outline: 2px solid rgba(231, 168, 91, 0.9);
	outline-offset: 3px;
}

.quotes-carousel__btn:active {
	transform: scale(0.97);
}

.quotes-carousel__dots {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 2.5rem;
}

.quotes-carousel__dot {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: rgba(247, 243, 235, 0.28);
	cursor: pointer;
	transition:
		width 0.35s cubic-bezier(0.22, 1, 0.32, 1),
		background 0.25s ease,
		opacity 0.25s ease;
}

.quotes-carousel__dot:hover {
	background: rgba(247, 243, 235, 0.5);
}

.quotes-carousel__dot:focus-visible {
	outline: 2px solid rgba(231, 168, 91, 0.9);
	outline-offset: 3px;
}

.quotes-carousel__dot[aria-current="true"] {
	width: 2rem;
	background: rgba(231, 168, 91, 0.95);
}

@media (min-width: 900px) {
	.quotes-carousel__slide {
		padding-inline: clamp(2rem, 8vw, 5rem);
	}
}

/* -------------------------------------------------------------------------
   Rewards — Zankou-style app download / loyalty strip
   ------------------------------------------------------------------------- */

.section--rewards {
	--rewards-ink: #3d2a1f;
	--rewards-ink-soft: #5c4030;
	background: var(--rewards-bg);
	color: var(--rewards-ink);
	padding: clamp(2.5rem, 6vw, 4.75rem) 0;
}

.rewards-split {
	display: grid;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}

.rewards-copy__headline {
	margin: 0 0 var(--space-md);
	font-family: var(--font-sans);
	font-size: clamp(1.6rem, 3.8vw, 2.2rem);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	color: var(--rewards-ink);
}

.rewards-copy__text {
	margin: 0 0 var(--space-lg);
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--rewards-ink-soft);
	max-width: 36rem;
}

.rewards-copy__more {
	font-weight: 700;
	color: var(--rewards-ink);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	margin-left: 0.2rem;
	white-space: nowrap;
}

.rewards-copy__more:hover,
.rewards-copy__more:focus-visible {
	color: var(--color-accent-hover);
}

.app-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.app-badge--store {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 48px;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-sm);
	border: 2px solid var(--rewards-ink);
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--rewards-ink);
	background: transparent;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		border-color 0.2s ease;
}

.app-badge--store:hover,
.app-badge--store:focus-visible {
	background: rgba(61, 42, 31, 0.08);
	text-decoration: none;
}

.app-badge__icon {
	flex-shrink: 0;
}

.rewards-visual {
	position: relative;
	min-height: min(72vw, 520px);
	max-width: 560px;
	margin-inline: auto;
}

.rewards-visual__bowl {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(96px, 24vw, 138px);
	z-index: 2;
	filter: drop-shadow(0 14px 28px rgba(61, 42, 31, 0.22));
}

.rewards-visual__bowl img {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
}

.rewards-visual__phone {
	position: relative;
	margin-top: clamp(2.75rem, 12vw, 4.5rem);
	margin-left: auto;
	margin-right: clamp(0.15rem, 4vw, 1.25rem);
	width: clamp(220px, 58vw, 304px);
	z-index: 3;
	transform: rotate(-9deg);
	filter: drop-shadow(0 28px 56px rgba(61, 42, 31, 0.35)) drop-shadow(0 10px 24px rgba(61, 42, 31, 0.18));
}

.rewards-visual__phone-body {
	border-radius: 38px;
	padding: 13px;
	background: linear-gradient(152deg, #4a4a4a 0%, #1f1f1f 42%, #0a0a0a 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.12),
		0 8px 0 rgba(0, 0, 0, 0.32);
}

.rewards-visual__screen {
	position: relative;
	border-radius: 26px;
	overflow: hidden;
	aspect-ratio: 10 / 19;
	background: #0a0a0a;
}

.rewards-visual__screen-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 36%;
	transform: scale(1.18);
	transform-origin: 50% 40%;
}

.rewards-visual__screen-card {
	position: absolute;
	left: 50%;
	right: auto;
	top: auto;
	bottom: 11%;
	transform: translateX(-50%);
	width: 78%;
	max-width: 15.5rem;
	padding: 0.65rem 0.55rem 0.72rem;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 11px;
	text-align: center;
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}

.rewards-visual__points {
	margin: 0 0 0.48rem;
	font-family: var(--font-sans);
	font-size: clamp(0.65rem, 2.8vw, 0.82rem);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--rewards-ink);
}

.rewards-visual__redeem {
	display: inline-block;
	padding: 0.42rem 1.1rem;
	border-radius: 999px;
	font-size: clamp(0.6rem, 2.4vw, 0.68rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: #e5b318;
	color: var(--rewards-ink);
}

@media (min-width: 900px) {
	.rewards-split {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
		gap: clamp(2rem, 4vw, 3.5rem);
		align-items: center;
	}

	.rewards-visual {
		max-width: none;
		min-height: 500px;
	}

	.rewards-visual__phone {
		width: min(312px, 28vw);
		margin-right: clamp(0.5rem, 3vw, 2.5rem);
		transform: rotate(-8deg);
	}

	.rewards-visual__screen-photo {
		object-position: 50% 34%;
		transform: scale(1.22);
		transform-origin: 50% 38%;
	}
}

/* -------------------------------------------------------------------------
   Footer (Zankou / CAVA–inspired: watermark, mega type, nav + social)
   ------------------------------------------------------------------------- */

.site-footer {
	--footer-bg: #221e1b;
	--footer-ink: #f7f3eb;
	position: relative;
	overflow: hidden;
	background: var(--footer-bg);
	color: rgba(247, 243, 235, 0.72);
	padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.25rem, 3vw, 1.75rem);
	margin-top: 0;
}

.site-footer a {
	color: var(--footer-ink);
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.site-footer__watermark {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-bottom: 0;
}

.site-footer__watermark-img {
	width: min(145vw, 110rem);
	max-width: none;
	height: auto;
	opacity: 0.11;
	transform: translateY(28%);
	user-select: none;
}

.site-footer__inner {
	position: relative;
	z-index: 1;
}

.site-footer__top {
	display: grid;
	gap: var(--space-xl);
	padding-bottom: var(--space-xl);
	margin-bottom: var(--space-lg);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand-block {
	max-width: 28rem;
}

.site-footer__brand-link {
	display: inline-block;
	text-decoration: none;
}

.site-footer__brand-link:hover,
.site-footer__brand-link:focus-visible {
	text-decoration: none;
	opacity: 0.92;
}

.site-footer__logo {
	display: block;
	height: auto;
	width: auto;
	max-width: min(100%, 240px);
	max-height: 3.25rem;
	object-fit: contain;
	object-position: left center;
}

.site-footer__tagline {
	margin: var(--space-sm) 0 0;
	font-size: 0.95rem;
	line-height: 1.45;
	color: rgba(247, 243, 235, 0.72);
	max-width: 36ch;
}

.newsletter-form__heading {
	font-family: var(--font-sans);
	font-size: clamp(1.1rem, 2.5vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	margin: 0 0 var(--space-xs);
	color: var(--footer-ink);
}

.newsletter-form__hint {
	margin: 0 0 var(--space-md);
	font-size: 0.88rem;
	color: rgba(247, 243, 235, 0.58);
	line-height: 1.45;
}

.newsletter-form__row--inline {
	flex-direction: column;
	align-items: stretch;
}

.newsletter-form__field {
	display: flex;
	align-items: stretch;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: rgba(0, 0, 0, 0.2);
	max-width: 26rem;
}

.newsletter-form__field:focus-within {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
}

.newsletter-form__input {
	flex: 1;
	min-height: 48px;
	padding: 0 0.9rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--footer-ink);
	font: inherit;
	min-width: 0;
}

.newsletter-form__input::placeholder {
	color: rgba(247, 243, 235, 0.45);
}

.newsletter-form__input:focus {
	outline: none;
}

.newsletter-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	flex-shrink: 0;
	padding: 0;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	color: var(--footer-ink);
	cursor: pointer;
	transition: background var(--transition);
}

.newsletter-form__submit:hover,
.newsletter-form__submit:focus-visible {
	background: rgba(255, 255, 255, 0.16);
}

.site-footer__nav-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-md);
	padding-bottom: var(--space-xl);
	margin-bottom: var(--space-md);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.35rem;
	font-size: 0.95rem;
	font-weight: 500;
}

.footer-nav__list a {
	color: var(--footer-ink);
}

.site-footer__social {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	color: var(--footer-ink);
	background: rgba(255, 255, 255, 0.08);
	transition: background var(--transition), transform var(--transition);
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-1px);
	text-decoration: none;
}

.site-footer__statement {
	position: relative;
	margin: 0;
	padding: clamp(0.25rem, 2vw, 1.5rem) 0 clamp(1.75rem, 4vw, 3rem);
	text-align: center;
}

.site-footer__statement-text {
	display: block;
	font-family: var(--font-sans);
	font-weight: 900;
	font-size: clamp(2.65rem, 14vw, 8.5rem);
	line-height: 0.92;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	text-wrap: balance;
	text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
	align-items: flex-start;
	padding-top: var(--space-sm);
}

.site-footer__legal {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm) var(--space-md);
	font-size: 0.82rem;
	color: rgba(247, 243, 235, 0.55);
}

.site-footer__legal a {
	color: rgba(247, 243, 235, 0.75);
}

.site-footer__copyright {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(247, 243, 235, 0.5);
}

@media (min-width: 600px) {
	.newsletter-form__row--inline {
		flex-direction: row;
		align-items: flex-end;
	}
}

@media (min-width: 800px) {
	.site-footer__top {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		align-items: start;
	}

	.site-footer__nav-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.site-footer__social {
		flex-shrink: 0;
	}

	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.site-footer__copyright {
		text-align: right;
	}
}

body.order-modal-open,
html.order-modal-open {
	overflow: hidden;
}

/* -------------------------------------------------------------------------
   Order modal — CAVA-style location sheet (50/50, light column)
   ------------------------------------------------------------------------- */

.order-modal {
	position: fixed;
	inset: 0;
	z-index: 250;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: max(0.65rem, env(safe-area-inset-top))
		max(0.65rem, env(safe-area-inset-right))
		max(0.65rem, env(safe-area-inset-bottom))
		max(0.65rem, env(safe-area-inset-left));
}

.order-modal[hidden] {
	display: none !important;
}

.order-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(12, 12, 12, 0.45);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
}

.order-modal__panel {
	--order-modal-radius: 12px;
	position: relative;
	z-index: 1;
	width: min(92vw, 60rem);
	height: min(27rem, 56dvh);
	max-height: min(27rem, 56dvh);
	min-height: min(16rem, 48dvh);
	overflow: hidden;
	border-radius: var(--order-modal-radius);
	background: #fff;
	color: var(--color-ink);
	box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.06),
		0 24px 64px rgba(0, 0, 0, 0.2);
	animation: order-modal-immersive-in-desktop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes order-modal-immersive-in-desktop {
	from {
		opacity: 0;
		transform: scale(0.96) translateY(0.75rem);
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.order-modal__panel {
		animation: none;
	}
}

.order-modal__split {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 0;
	height: 100%;
	border-radius: inherit;
	overflow: hidden;
}

.order-modal__hero {
	position: relative;
	flex: 0 0 50%;
	min-width: 0;
	background: #e8e6e1;
}

.order-modal__hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.order-modal__content {
	position: relative;
	flex: 1 1 50%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: clamp(1.35rem, 3.5vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2vw, 1.35rem);
	background: #fff;
}

.order-modal__x {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 999px;
	background: transparent;
	color: var(--color-ink);
	font-size: 1.65rem;
	line-height: 1;
	font-weight: 300;
	cursor: pointer;
	transition: background 0.15s ease;
}

.order-modal__x:hover,
.order-modal__x:focus-visible {
	background: rgba(0, 0, 0, 0.06);
	outline: none;
}

.order-modal__title {
	margin: 0 2.5rem 1.15rem 0;
	font-family: var(--font-sans);
	font-size: clamp(1.05rem, 2.4vw, 1.45rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--color-ink);
	text-wrap: balance;
}

.order-modal__toggle {
	display: flex;
	flex-direction: row;
	gap: 0;
	padding: 4px;
	background: #e8e8e6;
	border-radius: 999px;
}

.order-modal__seg {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.65rem;
	padding: 0.4rem 0.75rem;
	border: none;
	border-radius: 999px;
	background: transparent;
	font-family: var(--font-sans);
	font-size: 0.9rem;
	font-weight: 600;
	color: #444;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.order-modal__seg.is-active {
	background: #fff;
	color: var(--color-ink);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.order-modal__seg-icon {
	display: flex;
	color: #6b6b6b;
}

.order-modal__seg.is-active .order-modal__seg-icon--pickup {
	color: var(--color-gold);
}

.order-modal__seg.is-active .order-modal__seg-icon--delivery {
	color: var(--color-ink);
}

.order-modal__search {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1.35rem;
	padding: 0.45rem 0;
	border-bottom: 1px solid #c8c8c8;
}

.order-modal__search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.85rem;
	height: 1.85rem;
	flex-shrink: 0;
	border-radius: 999px;
	background: var(--color-ink);
	color: #fff;
}

.order-modal__search-icon svg {
	display: block;
}

.order-modal__search-input {
	flex: 1 1 auto;
	min-width: 0;
	border: none;
	padding: 0.25rem 0;
	font-family: var(--font-sans);
	font-size: 0.95rem;
	color: var(--color-ink);
	background: transparent;
	outline: none;
}

.order-modal__search-input::placeholder {
	color: #8a8a8a;
}

.order-modal__loc {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
	margin-top: 1.15rem;
}

.order-modal__loc-text {
	margin: 0;
	flex: 1 1 auto;
	font-size: 0.82rem;
	line-height: 1.35;
	color: #3d3d3d;
	min-width: 0;
}

.order-modal__loc-btn {
	flex-shrink: 0;
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-ink);
	border-radius: 999px;
	background: #fff;
	font-family: var(--font-sans);
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--color-ink);
	cursor: pointer;
	transition: background 0.15s ease;
	white-space: nowrap;
}

.order-modal__loc-btn:hover,
.order-modal__loc-btn:focus-visible {
	background: #f5f5f4;
	outline: none;
}

.order-modal__foot {
	margin-top: auto;
	padding-top: 1.15rem;
}

.order-modal__rewards {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.4;
	color: #2d2d2d;
}

.order-modal__spark {
	flex-shrink: 0;
	color: var(--color-gold);
	margin-top: 0.05rem;
}

.order-modal__sign-in {
	font-weight: 800;
}

.order-modal__join {
	margin: 0.65rem 0 0;
	font-size: 0.82rem;
	line-height: 1.45;
	color: #444;
}

.order-modal__join a {
	font-weight: 600;
	color: var(--color-ink);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.order-modal__join a:hover {
	color: var(--color-accent, #c73e1d);
}

.order-modal__catering {
	margin: 0.75rem 0 0;
	font-size: 0.8rem;
}

.order-modal__catering a {
	font-weight: 600;
	color: var(--color-ink);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.order-modal__catering a:hover {
	color: var(--color-accent, #c73e1d);
}

@media (max-width: 767px) {
	.order-modal__panel {
		width: min(100%, calc(100vw - 1.25rem));
		max-width: 100%;
		display: flex;
		flex-direction: column;
		height: auto;
		max-height: min(92dvh, 40rem);
		min-height: 0;
		border-radius: 10px;
	}

	.order-modal__split {
		flex-direction: column;
		flex: 1 1 auto;
		align-items: stretch;
		height: auto;
		min-height: 0;
	}

	.order-modal__hero {
		flex: 0 0 auto;
		width: 100%;
		height: clamp(7rem, 36vw, 10.5rem);
		max-height: 32dvh;
	}

	.order-modal__content {
		flex: 1 1 auto;
		min-width: 0;
		min-height: 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding: 1.05rem 0.95rem 1rem;
	}

	.order-modal__title {
		margin: 0 2.35rem 0.95rem 0;
		font-size: clamp(0.8rem, 3.9vw, 1.05rem);
		line-height: 1.22;
		word-break: break-word;
	}

	.order-modal__toggle {
		width: 100%;
		box-sizing: border-box;
	}

	.order-modal__seg {
		flex: 1 1 0;
		min-width: 0;
		padding: 0.38rem 0.45rem;
		font-size: 0.78rem;
		gap: 0.3rem;
	}

	.order-modal__seg-icon svg {
		width: 16px;
		height: 16px;
	}

	.order-modal__search {
		margin-top: 1rem;
	}

	.order-modal__loc {
		flex-direction: column;
		align-items: stretch;
	}

	.order-modal__loc-btn {
		align-self: stretch;
		text-align: center;
		padding: 0.55rem 1rem;
		font-size: 0.8rem;
	}
}

@media (max-width: 380px) {
	.order-modal__hero {
		height: clamp(6rem, 34vw, 9rem);
	}
}

@media (min-width: 768px) {
	.order-modal {
		padding: clamp(1rem, 3vh, 2rem) clamp(1.25rem, 4vw, 2.5rem);
	}

	.order-modal__panel {
		width: min(64rem, 92vw);
		height: min(28rem, 52dvh);
		max-height: min(28rem, 52dvh);
	}
}

button.btn {
	font-family: inherit;
}

/* -------------------------------------------------------------------------
   Fallback post (index)
   ------------------------------------------------------------------------- */

.fallback-post {
	padding: var(--space-xl) 0;
}

.fallback-post__title {
	font-family: var(--font-display);
	font-size: 2rem;
	margin-bottom: var(--space-md);
}

.fallback-post__content {
	color: var(--color-ink-muted);
}
