:root {
	--font-serif: "Libre Baskerville", Georgia, serif;
	--font-sans: "Nunito Sans", Arial, sans-serif;
	--red: #a90d0d;
	--red-dark: #6f0707;
	--green: #2f9c5f;
	--green-dark: #17683d;
	--cream: #fbf5ea;
	--paper: #fffdf8;
	--ink: #251b14;
	--muted: #6f655b;
	--gold: #d8a343;
	--line: rgba(37, 27, 20, 0.13);
	--shadow: 0 22px 60px rgba(72, 27, 11, 0.16);
	--radius: 8px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		linear-gradient(rgba(37, 19, 9, 0.62), rgba(37, 19, 9, 0.62)),
		url("../images/pasta-background.jpg") center top / cover fixed;
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.62;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: rgba(31, 15, 7, 0.18);
	pointer-events: none;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p {
	margin: 0 0 1.15rem;
}

h1,
h2,
h3 {
	margin: 0;
	color: inherit;
	font-family: var(--font-serif);
	line-height: 1.08;
}

h1 {
	font-size: 64px;
}

h2 {
	font-size: 38px;
}

h3 {
	font-size: 24px;
}

button,
input,
select,
textarea {
	font: inherit;
}

.container {
	width: min(100% - 48px, 1180px);
	margin-inline: auto;
}

.section-light {
	background: var(--cream);
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -60px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--paper);
	color: var(--red-dark);
	border-radius: 6px;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 16px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--gold);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-weight: 900;
	line-height: 1;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus {
	transform: translateY(-2px);
}

.button--red {
	background: var(--red);
	color: #fff;
	border-color: var(--red);
}

.button--green {
	background: var(--green);
	color: #fff;
	border-color: var(--green);
}

.button--cream {
	background: var(--paper);
	color: var(--red-dark);
	border-color: var(--paper);
}

.button--outline {
	background: transparent;
	color: currentColor;
	border-color: currentColor;
}

.button--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.72);
}

.button--full {
	width: 100%;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 253, 248, 0.96);
	border-top: 6px solid #72401f;
	box-shadow: 0 10px 30px rgba(47, 19, 8, 0.08);
	backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
	box-shadow: 0 12px 34px rgba(47, 19, 8, 0.18);
}

.topbar {
	background: var(--red-dark);
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
}

.topbar__inner {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 8px 0;
}

.topbar a {
	font-weight: 900;
	color: #fff;
}

.nav-shell {
	display: flex;
	align-items: center;
	gap: 30px;
	min-height: 86px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: max-content;
}

.brand img {
	width: 150px;
	height: auto;
	padding: 10px 12px;
	background: var(--green);
	border-radius: 4px;
}

.brand span {
	max-width: 190px;
	color: var(--red-dark);
	font-size: 13px;
	font-weight: 900;
	font-style: italic;
	line-height: 1.25;
}

.primary-nav {
	margin-left: auto;
}

.menu {
	display: flex;
	align-items: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	color: var(--ink);
	font-size: 15px;
	font-weight: 900;
}

.menu a:hover,
.menu a:focus {
	color: var(--red);
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	margin-left: auto;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 6px;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--ink);
}

.hero {
	padding: 70px 0;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(33, 13, 5, 0.92), rgba(33, 13, 5, 0.5)),
		rgba(33, 13, 5, 0.8);
}

.hero-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 48px;
	align-items: center;
}

.hero-copy p:not(.eyebrow) {
	max-width: 660px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 20px;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 22px;
}

.hero-image {
	position: relative;
}

.hero-image::before {
	content: "";
	position: absolute;
	inset: -16px;
	z-index: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: var(--radius);
}

.hero-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.quick-info {
	background: var(--red);
	color: #fff;
}

.quick-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	padding: 24px 0;
}

.quick-grid div {
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius);
}

.quick-grid span {
	display: block;
	color: rgba(255, 255, 255, 0.72);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.quick-grid strong {
	display: block;
	margin-top: 4px;
	font-size: 18px;
}

.intro-section {
	padding: 78px 0 84px;
}

.intro-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 54px;
	align-items: end;
	margin-bottom: 36px;
}

.intro-grid p:not(.eyebrow) {
	color: var(--muted);
	font-size: 18px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.feature-card {
	overflow: hidden;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.feature-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.feature-card h3,
.feature-card p,
.feature-card a {
	margin-left: 24px;
	margin-right: 24px;
}

.feature-card h3 {
	margin-top: 24px;
}

.feature-card p {
	color: var(--muted);
}

.feature-card a {
	display: inline-flex;
	margin-bottom: 26px;
	color: var(--red);
	font-weight: 900;
	border-bottom: 2px solid var(--gold);
}

.menu-preview {
	padding: 88px 0;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(111, 7, 7, 0.93), rgba(23, 104, 61, 0.88)),
		url("../images/pasta-background.jpg") center / cover;
}

.menu-preview__inner {
	max-width: 760px;
}

.menu-preview h2 {
	font-size: 52px;
}

.menu-preview p:not(.eyebrow) {
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
}

.page-hero {
	padding: 82px 0;
	color: #fff;
	background:
		linear-gradient(90deg, rgba(33, 13, 5, 0.94), rgba(33, 13, 5, 0.62)),
		url("../images/pasta-background.jpg") center / cover;
}

.page-hero h1 {
	max-width: 860px;
}

.page-hero p:not(.eyebrow) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
}

.menu-web {
	padding: 52px 0 82px;
}

.menu-jump {
	position: sticky;
	top: 122px;
	z-index: 8;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 14px;
	margin-bottom: 30px;
	background: rgba(255, 253, 248, 0.94);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	backdrop-filter: blur(12px);
}

.menu-jump a {
	padding: 9px 12px;
	background: var(--green);
	color: #fff;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 900;
}

.menu-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
}

.menu-column {
	display: grid;
	gap: 24px;
	align-content: start;
}

.menu-section {
	scroll-margin-top: 200px;
	overflow: hidden;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 16px 38px rgba(72, 27, 11, 0.08);
}

.menu-section__head {
	padding: 22px 24px;
	background: var(--red);
	color: #fff;
}

.menu-section__head h2 {
	font-size: 30px;
}

.menu-section__head p {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
}

.menu-table {
	padding: 12px 24px 18px;
}

.menu-row {
	display: grid;
	grid-template-columns: 1fr repeat(1, minmax(86px, auto));
	gap: 14px;
	align-items: baseline;
	padding: 11px 0;
	border-bottom: 1px dashed rgba(37, 27, 20, 0.18);
}

.menu-table.columns-2 .menu-row {
	grid-template-columns: 1fr repeat(2, minmax(76px, auto));
}

.menu-table.columns-3 .menu-row {
	grid-template-columns: 1fr repeat(3, minmax(68px, auto));
}

.menu-row:last-child {
	border-bottom: 0;
}

.menu-row--heading {
	color: var(--red);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.menu-row strong {
	font-size: 15px;
}

.menu-row span:not(:first-child) {
	text-align: right;
	font-weight: 800;
	white-space: nowrap;
}

.menu-notes,
.notice-card {
	margin-top: 28px;
	padding: 22px 24px;
	background: #fff7df;
	border: 1px solid rgba(216, 163, 67, 0.36);
	border-radius: var(--radius);
	color: #5b3d11;
}

.beverage-section,
.contact-section,
.content-section {
	padding: 72px 0;
}

.beverage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.beverage-card {
	overflow: hidden;
	padding: 0 0 28px;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: 0 16px 38px rgba(72, 27, 11, 0.08);
}

.beverage-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-bottom: 4px solid var(--green);
}

.beverage-card h2 {
	margin: 24px 24px 8px;
	font-size: 28px;
}

.beverage-card p {
	margin-left: 24px;
	margin-right: 24px;
	color: var(--red);
	font-size: 18px;
	font-weight: 900;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 28px;
	align-items: stretch;
}

.map-panel,
.contact-panel {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.map-panel {
	overflow: hidden;
	min-height: 460px;
}

.map-panel iframe,
.mini-map iframe {
	width: 100%;
	height: 100%;
	min-height: inherit;
	border: 0;
}

.contact-panel {
	padding: 34px;
}

.hours-list {
	display: grid;
	gap: 10px;
	margin: 22px 0;
}

.hours-list div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}

.site-footer {
	color: #fff;
}

.footer-call {
	background: var(--red);
}

.footer-call__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 26px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-call span {
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.footer-call a {
	font-size: 30px;
	font-weight: 900;
}

.footer-main {
	padding: 56px 0;
	background: var(--red);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

.footer-grid h2 {
	margin-bottom: 18px;
	font-size: 26px;
}

.footer-grid p {
	color: rgba(255, 255, 255, 0.88);
}

.mini-map {
	overflow: hidden;
	min-height: 190px;
	margin-bottom: 12px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 6px;
}

.mini-map iframe {
	min-height: 190px;
}

.payments {
	width: 115px;
	height: auto;
}

.footer-bottom {
	padding: 18px 0;
	background: #fff;
	color: var(--muted);
	font-size: 13px;
}

.footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-nav .menu {
	gap: 16px;
}

.footer-nav .menu a {
	color: var(--muted);
	font-size: 13px;
}

.post-list {
	display: grid;
	gap: 22px;
}

.post-card,
.entry-content {
	padding: 30px;
	background: var(--paper);
	border-radius: var(--radius);
}

@media (max-width: 1100px) {
	h1 {
		font-size: 52px;
	}

	.hero-grid,
	.intro-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

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

@media (max-width: 860px) {
	.container {
		width: min(100% - 32px, 1180px);
	}

	.topbar__inner {
		display: grid;
	}

	.nav-shell {
		min-height: 78px;
	}

	.brand span,
	.nav-cta {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	.primary-nav {
		position: absolute;
		left: 16px;
		right: 16px;
		top: calc(100% + 8px);
		display: none;
		margin-left: 0;
		padding: 18px;
		background: var(--paper);
		border: 1px solid var(--line);
		border-radius: var(--radius);
		box-shadow: var(--shadow);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav .menu {
		display: grid;
		gap: 16px;
	}

	.quick-grid,
	.feature-grid,
	.beverage-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.menu-jump {
		position: static;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
		background-attachment: scroll;
	}

	h1 {
		font-size: 38px;
	}

	h2,
	.menu-preview h2 {
		font-size: 30px;
	}

	.hero,
	.page-hero {
		padding: 54px 0;
	}

	.button {
		width: 100%;
	}

	.button-row {
		display: grid;
	}

	.menu-table {
		padding: 10px 16px 16px;
	}

	.menu-row,
	.menu-table.columns-2 .menu-row,
	.menu-table.columns-3 .menu-row {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px 14px;
	}

	.menu-row--heading {
		display: none;
	}

	.menu-row strong {
		grid-column: 1 / -1;
		font-size: 16px;
	}

	.menu-table.columns-1 .menu-row {
		grid-template-columns: 1fr;
	}

	.menu-table.columns-3 .menu-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.menu-row span:not(:first-child) {
		text-align: left;
	}

	.menu-row span {
		display: grid;
		gap: 2px;
		color: var(--red);
		font-weight: 900;
	}

	.menu-row span:empty {
		display: none;
	}

	.menu-row span::before {
		content: attr(data-label);
		color: var(--muted);
		font-size: 10px;
		font-weight: 900;
		letter-spacing: 0;
		text-transform: uppercase;
	}

	.footer-call__inner,
	.footer-bottom__inner {
		display: grid;
	}

	.footer-call a {
		font-size: 24px;
	}
}
