/* Página de carta / vinos — estilo simple (referencia Tribeca Bistro) */

.marcano-menu-page {
	background: #fff;
	color: #1a1a1a;
	min-height: 60vh;
	padding: 2.5rem 1.25rem 4rem;
}

.marcano-menu-page__inner {
	max-width: 720px;
	margin: 0 auto;
}

.marcano-menu-page__header {
	margin-bottom: 2.5rem;
	text-align: center;
}

.marcano-menu-page__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

.marcano-menu-page__intro {
	color: #666;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9375rem;
	line-height: 1.55;
	margin: 0;
}

.marcano-menu-page__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.marcano-menu-page__nav-btn {
	border: 1px solid rgba(2, 100, 80, 0.45);
	color: #026450;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.2;
	padding: 0.55rem 0.9rem;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.marcano-menu-page__nav-btn:hover,
.marcano-menu-page__nav-btn:focus {
	background: #026450;
	border-color: #026450;
	color: #fff;
}

.marcano-menu-page__empty {
	color: #888;
	font-size: 0.9375rem;
	text-align: center;
}

.marcano-menu-section {
	margin-bottom: 2.5rem;
	scroll-margin-top: 2rem;
}

.marcano-menu-section__title {
	font-family: 'Cormorant Garamond', Georgia, serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 0.75rem;
	text-align: center;
}

.marcano-menu-section__rule,
.marcano-menu-item__rule {
	border: none;
	border-top: 1px solid #d8d8d8;
	height: 0;
	margin: 0;
}

.marcano-menu-section__rule--end {
	margin-top: 0.5rem;
}

.marcano-menu-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1rem 0;
}

.marcano-menu-item__body {
	flex: 1;
	min-width: 0;
}

.marcano-menu-item__name {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
	margin: 0;
}

.marcano-menu-item__description {
	color: #666;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.8125rem;
	font-style: italic;
	line-height: 1.45;
	margin: 0.25rem 0 0;
}

.marcano-menu-item__price {
	flex-shrink: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
	text-align: right;
	white-space: nowrap;
}

@media screen and (max-width: 600px) {
	.marcano-menu-page {
		padding-top: 1.75rem;
	}

	.marcano-menu-item {
		flex-direction: column;
		gap: 0.35rem;
	}

	.marcano-menu-item__price {
		text-align: left;
		white-space: normal;
	}
}
