.romanzo-menu,
.romanzo-menu-collection {
	--romanzo-blue: #214f7e;
	--romanzo-gold: #d49a52;
	--romanzo-copy: #456887;
	--romanzo-rule: rgba(212, 154, 82, 0.75);
	color: var(--romanzo-blue);
	font-family: inherit;
	background: #faf7f3;
	box-shadow: 0 0 0 100vmax #faf7f3;
	clip-path: inset(0 -100vmax);
	padding: clamp(2.5rem, 5vw, 5rem) clamp(1.25rem, 5vw, 5rem);
}

.romanzo-menu-group {
	margin: 0 0 5rem;
}

.romanzo-menu-group__title {
	margin: 0 0 2.5rem;
	color: var(--romanzo-blue);
	font-family: inherit;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
}

.romanzo-menu-section {
	margin: 0 0 3.75rem;
}

.romanzo-menu-section__title {
	margin: 0 auto 2rem;
	padding: 0 0 0.9rem;
	max-width: 420px;
	border-bottom: 1px solid rgba(212, 154, 82, 0.65);
	color: var(--romanzo-gold);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
}

.romanzo-menu-items {
	display: grid;
	grid-template-columns: repeat(var(--romanzo-menu-columns, 2), minmax(0, 1fr));
	gap: 1.8rem 4.25rem;
	align-items: start;
}

.romanzo-menu-item {
	min-width: 0;
}

.romanzo-menu-item--centred {
	grid-column: 1 / -1;
	justify-self: center;
	width: min(100%, 780px);
}

.romanzo-menu-item--centred .romanzo-menu-item__description {
	text-align: center;
}

.romanzo-menu-item__line {
	display: flex;
	align-items: baseline;
	gap: 0.55rem;
	min-width: 0;
}

.romanzo-menu-item__name {
	color: var(--romanzo-blue);
	font-family: inherit;
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.25;
}

.romanzo-menu-item__leader {
	flex: 1 1 auto;
	min-width: 20px;
	border-bottom: 1px dotted var(--romanzo-rule);
	transform: translateY(-0.28em);
}

.romanzo-menu-item__price {
	flex: 0 0 auto;
	max-width: 50%;
	color: var(--romanzo-gold);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: right;
}

.romanzo-menu-item__description {
	margin: 0.35rem 0 0;
	color: var(--romanzo-copy);
	font-family: inherit;
	font-size: 0.93rem;
	font-weight: 400;
	line-height: 1.45;
}

.romanzo-menu-subheading {
	grid-column: 1 / -1;
	margin: 0.8rem 0 -0.2rem;
	color: var(--romanzo-blue);
	font-family: inherit;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.3;
}

.romanzo-menu-note {
	grid-column: 1 / -1;
	margin: 0.25rem 0;
	color: var(--romanzo-copy);
	font-family: inherit;
	font-size: 0.95rem;
	font-style: italic;
	line-height: 1.5;
	text-align: center;
}

.romanzo-menu-separator {
	grid-column: 1 / -1;
	width: 100%;
	margin: 0.6rem 0;
	border: 0;
	border-top: 1px solid rgba(212, 154, 82, 0.4);
}

.romanzo-menu-empty {
	padding: 1rem;
	border: 1px dashed #aaa;
}

@media (max-width: 900px) {
	.romanzo-menu-items {
		gap: 1.6rem 2.5rem;
	}
}

@media (max-width: 767px) {
	.romanzo-menu-items {
		grid-template-columns: 1fr;
		gap: 1.35rem;
	}

	.romanzo-menu-section {
		margin-bottom: 3rem;
	}

	.romanzo-menu-item__name {
		font-size: 1.03rem;
	}

	.romanzo-menu-item__price {
		max-width: 46%;
		font-size: 0.96rem;
	}
}

@media (max-width: 420px) {
	.romanzo-menu-item__line {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.romanzo-menu-item__leader {
		display: none;
	}

	.romanzo-menu-item__price {
		width: 100%;
		max-width: none;
		text-align: left;
	}
}


/* Centre sections that contain a single menu item, such as Traditional Greek Meze. */
.romanzo-menu-items:has(> .romanzo-menu-item:only-of-type) > .romanzo-menu-item {
	grid-column: 1 / -1;
	width: min(100%, 760px);
	justify-self: center;
}

/* Keep grouped menus visually continuous when using type="all". */
.romanzo-menu-collection .romanzo-menu {
	padding-left: 0;
	padding-right: 0;
}
