/* ==========================================================================
   Cafe Zocalo — menu.css
   Menu (single page, curated by category). Enqueued by Page ID.
   ========================================================================== */

/* ── Hero ──────────────────────────────────────────────────────────────── */
.cz-menu-hero {
	position: relative;
	min-height: 420px;
}

.cz-menu-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.cz-menu-hero__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(42, 31, 24, 0.72) 0%, rgba(42, 31, 24, 0.85) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.cz-menu-hero__content {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 80px 24px;
	text-align: center;
	color: var(--pure-white);
}

.cz-menu-hero__headline {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(40px, 6vw, 64px);
	font-weight: 600;
	color: var(--pure-white);
	letter-spacing: -1px;
	line-height: 1.05;
	margin-bottom: 16px;
}

.cz-menu-hero__intro {
	font-size: 18px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	max-width: 56ch;
	margin: 0 auto 26px;
}

/* ── Categories (curated selection) ────────────────────────────────────── */
.cz-menu-cats-sec {
	padding: 80px 0;
	background: var(--bg-primary);
}

.cz-menu-cats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: start;
}

.cz-menu-cat {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 30px 30px 24px;
}

.cz-menu-cat__title {
	font-family: var(--font-display);
	font-size: 24px;
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.3px;
	padding-bottom: 12px;
	margin-bottom: 14px;
	border-bottom: 2px solid var(--terracotta);
	display: inline-block;
}

.cz-menu-cat__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cz-menu-cat__list li {
	font-family: var(--font-display);
	font-size: 16px;
	font-weight: 500;
	color: var(--ink);
	line-height: 1.4;
	padding: 9px 0;
	border-bottom: 1px solid var(--line);
}

.cz-menu-cat__list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.cz-menu-cat--note .cz-menu-cat__notetext {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--ink-mid);
}

.cz-menu-cat__list + .cz-menu-cat__notetext {
	margin-top: 14px;
}

.cz-menu-cat--note a {
	color: var(--terracotta-deep);
	font-weight: 600;
}

.cz-menu-cat--note a:hover {
	color: var(--terracotta);
}

/* ── Order CTA ─────────────────────────────────────────────────────────── */
.cz-menu-cta {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
	color: var(--pure-white);
}

.cz-menu-cta__inner {
	text-align: center;
}

.cz-menu-cta__headline {
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 46px);
	font-weight: 600;
	color: var(--pure-white);
	letter-spacing: -1px;
	margin-bottom: 14px;
}

.cz-menu-cta__body {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
	max-width: 52ch;
	margin: 0 auto 26px;
}

.cz-menu-cta__actions {
	display: flex;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.cz-menu-cats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.cz-menu-cats-sec,
	.cz-menu-cta {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.cz-menu-hero__content {
		padding: 56px 24px;
	}

	.cz-menu-cats {
		grid-template-columns: 1fr;
	}
}
