/* Breadcrumb */
.food-stands-breadcrumb ol {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0 0 var(--space-md);
	padding: 0;
	font-size: .85rem;
	color: var(--color-muted);
}

.food-stands-breadcrumb li:not(:last-child)::after {
	content: "/";
	margin-inline-start: 6px;
}

.food-stands-breadcrumb a {
	text-decoration: none;
	color: var(--color-muted);
}

/* Hero */
.food-stands-hero {
	padding-block: var(--space-xl) 0;
	background: var(--color-surface);
}

.food-stands-hero__grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	align-items: center;
	gap: var(--space-xl);
	min-height: 460px;
}

.food-stands-hero__eyebrow {
	display: inline-block;
	color: var(--color-green);
	font-weight: 700;
	font-size: .85rem;
	margin-bottom: var(--space-xs);
}

.food-stands-hero__title {
	font-size: clamp(2.25rem, 1.5rem + 3vw, 3.25rem);
	line-height: 1.15;
	font-weight: 800;
	margin: 0 0 var(--space-xs);
}

.food-stands-hero__subtitle {
	font-size: clamp(1.1rem, 1rem + .5vw, 1.5rem);
	font-weight: 700;
	color: var(--color-coral);
	margin: 0 0 var(--space-sm);
}

.food-stands-hero__text {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--color-muted);
	margin: 0 0 var(--space-lg);
	max-width: 46ch;
}

.food-stands-hero__actions {
	display: flex;
	gap: var(--space-sm);
}

.food-stands-hero__phone-icon {
	width: 18px;
	height: 18px;
}

.food-stands-hero__media img {
	width: 100%;
	height: 100%;
	max-height: 480px;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

/* Trust strip: floating card overlapping hero/next section */
.food-stands-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg);
	list-style: none;
	margin: var(--space-xl) 0 0;
	padding: var(--space-lg);
	background: var(--color-bg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	transform: translateY(50%);
}

.food-stands-trust li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-sm);
}

.food-stands-trust__icon {
	flex: none;
	width: 26px;
	height: 26px;
	color: var(--color-coral);
}

.food-stands-trust strong {
	display: block;
	font-size: .95rem;
}

.food-stands-trust span {
	display: block;
	color: var(--color-muted);
	font-size: .8rem;
	margin-top: 2px;
}

@media (max-width: 1023px) {
	.food-stands-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.food-stands-hero__media {
		order: 2;
	}

	.food-stands-trust {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 639px) {
	.food-stands-hero__title {
		font-size: 2.25rem;
	}

	.food-stands-hero__actions {
		flex-direction: column;
	}

	.food-stands-hero__actions .btn {
		width: 100%;
	}

	.food-stands-trust {
		grid-template-columns: 1fr;
		transform: none;
		margin-top: var(--space-lg);
	}
}

/* The trust strip overlaps the hero, so the section below needs extra top padding to compensate. */
.food-stands-types-section {
	padding-top: calc(var(--section-space) + var(--space-xl));
}

@media (max-width: 639px) {
	.food-stands-types-section {
		padding-top: var(--section-space);
	}
}

/* Food type cards */
.food-stands-types {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--card-gap);
}

.food-stands-type-card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	overflow: hidden;
}

.food-stands-type-card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.food-stands-type-card__body {
	padding: var(--space-md);
}

.food-stands-type-card__body h3 {
	margin: 0 0 4px;
	font-size: 1.05rem;
}

.food-stands-type-card__body p {
	margin: 0 0 var(--space-sm);
	color: var(--color-muted);
	font-size: .9rem;
}

.food-stands-type-card__link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-coral-dark);
	font-weight: 700;
	font-size: .9rem;
	text-decoration: none;
}

.food-stands-type-card__arrow {
	width: 14px;
	height: 14px;
}

@media (max-width: 1023px) {
	.food-stands-types {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 639px) {
	.food-stands-types {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-sm);
	}

	.food-stands-type-card img {
		height: 100px;
	}
}

/* Event fit list */
.food-stands-fit-section {
	background: var(--color-surface);
}

.food-stands-fit {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-xl) var(--space-lg);
	list-style: none;
	margin: 0;
	padding: 0;
}

.food-stands-fit li {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-xs);
	width: 130px;
	text-align: center;
}

.food-stands-fit__icon {
	width: 40px;
	height: 40px;
	padding: 10px;
	color: var(--color-coral);
	background: var(--color-coral-soft);
	border-radius: var(--radius-pill);
}

.food-stands-fit span {
	font-size: .85rem;
	font-weight: 600;
}

/* Inline lead CTA */
.food-stands-inline-cta {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-coral-soft);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	text-align: center;
}

.food-stands-inline-cta__text {
	position: relative;
	z-index: 1;
	max-width: 46ch;
}

.food-stands-inline-cta__text h2 {
	margin: 0 0 var(--space-xs);
	font-size: 1.4rem;
}

.food-stands-inline-cta__text p {
	margin: 0 0 var(--space-md);
	color: var(--color-muted);
}

.food-stands-inline-cta__icon {
	width: 18px;
	height: 18px;
	filter: brightness(0) invert(1);
}

.food-stands-inline-cta__decor {
	position: absolute;
	width: 56px;
	height: 56px;
	opacity: .5;
	pointer-events: none;
}

.food-stands-inline-cta__decor--leaf {
	top: -12px;
	inset-inline-start: -12px;
}

.food-stands-inline-cta__decor--burst {
	bottom: -12px;
	inset-inline-end: -12px;
}

@media (max-width: 639px) {
	.food-stands-inline-cta {
		padding: var(--space-lg);
	}
}

/* Benefits */
.food-stands-benefits-section {
	background: var(--color-surface);
}

.food-stands-benefits {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg);
}

.food-stands-benefit {
	display: flex;
	align-items: flex-start;
	gap: var(--space-sm);
	padding-inline: var(--space-sm);
}

.food-stands-benefit:not(:last-child) {
	border-inline-end: 1px solid var(--color-border);
}

.food-stands-benefit__icon {
	flex: none;
	width: 28px;
	height: 28px;
	color: var(--color-coral);
}

.food-stands-benefit h3 {
	font-size: 1rem;
	margin: 0 0 2px;
}

.food-stands-benefit p {
	margin: 0;
	color: var(--color-muted);
	font-size: .85rem;
}

@media (max-width: 639px) {
	.food-stands-benefits {
		grid-template-columns: 1fr;
		gap: var(--space-md);
	}

	.food-stands-benefit:not(:last-child) {
		border-inline-end: 0;
		border-bottom: 1px solid var(--color-border);
		padding-bottom: var(--space-md);
	}
}

/* FAQ */
.food-stands-faq {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: var(--space-xl);
	align-items: start;
}

.food-stands-faq__media img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	max-height: 420px;
	object-fit: cover;
	border-radius: var(--radius-lg);
}

.food-stands-faq__item {
	border-bottom: 1px solid var(--color-border);
	padding-block: var(--space-md);
}

.food-stands-faq__question {
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.food-stands-faq__question::-webkit-details-marker {
	display: none;
}

.food-stands-faq__question::after {
	content: "+";
	float: left;
	font-weight: 400;
	color: var(--color-coral);
}

.food-stands-faq__item[open] .food-stands-faq__question::after {
	content: "\2212";
}

.food-stands-faq__answer {
	color: var(--color-muted);
	margin: var(--space-sm) 0 0;
}

@media (max-width: 1023px) {
	.food-stands-faq {
		grid-template-columns: 1fr;
	}

	.food-stands-faq__media {
		order: 2;
		max-width: 320px;
		margin: var(--space-lg) auto 0;
	}
}

/* Final CTA */
.food-stands-cta-section {
	background: var(--color-coral);
	color: #fff;
}

.food-stands-final-cta {
	min-height: 190px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-block: var(--space-xl);
}

.food-stands-final-cta__title {
	margin: 0 0 var(--space-xs);
	font-weight: 700;
}

.food-stands-final-cta p {
	margin: 0 0 var(--space-lg);
	opacity: .9;
}

.food-stands-final-cta__btn {
	background: #fff;
	color: var(--color-coral);
}

.food-stands-final-cta__btn:hover,
.food-stands-final-cta__btn:focus-visible {
	background: var(--color-surface);
}


/* Service comparison table */
.food-stands-compare__intro {
	color: var(--color-muted);
	font-size: 1.05rem;
	max-width: 60ch;
	margin: 0 0 var(--space-lg);
}

.food-stands-compare__table-wrap {
	overflow-x: auto;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-card);
}

.food-stands-compare__table {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	background: var(--color-bg);
}

.food-stands-compare__table th,
.food-stands-compare__table td {
	padding: var(--space-sm) var(--space-md);
	text-align: start;
	border-bottom: 1px solid var(--color-border);
	font-size: .95rem;
}

.food-stands-compare__table thead th {
	font-weight: 800;
	background: var(--color-surface);
	border-bottom: 2px solid var(--color-border);
}

.food-stands-compare__table thead th a {
	color: var(--color-ink);
	text-decoration: none;
}

.food-stands-compare__table thead th a:hover {
	color: var(--color-coral);
	text-decoration: underline;
}

.food-stands-compare__table tbody th {
	font-weight: 600;
	color: var(--color-muted);
	white-space: nowrap;
}

.food-stands-compare__col--current {
	background: var(--color-coral-soft);
	font-weight: 700;
}

.food-stands-compare__table thead th.food-stands-compare__col--current {
	color: var(--color-coral-dark);
}
