@font-face {
	font-family: "PT Sans";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("../fonts/pt-sans-400.woff2") format("woff2");
}

@font-face {
	font-family: "PT Sans";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("../fonts/pt-sans-700.woff2") format("woff2");
}

:root {
	--red: #B80000;
	--red-dark: #8f0000;
	--amber: #FFA50A;
	--amber-dark: #e8940a;
	--ink: #2b2622;
	--muted: #6f6a64;
	--cream: #fdf4dc;
	--surface: #ffffff;
	--line: #efe6d0;
	--shadow: 0 4px 18px rgba(70, 40, 10, .10);
	--radius: 14px;
	--maxw: 960px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: "PT Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	color: var(--ink);
	background:
		radial-gradient(70% 60% at 85% 0, rgba(255, 165, 10, .28), transparent 60%) top/100% 620px no-repeat,
		linear-gradient(180deg, #ffffff 0%, var(--cream) 100%) top/100% 620px no-repeat,
		var(--cream);
	min-height: 100vh;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--red);
}

.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--red);
	border-bottom: 3px solid var(--amber);
	box-shadow: 0 2px 14px rgba(120, 0, 0, .25);
}

/* Site-wide announcement banners (js/nav.js); background/text colours are set inline. */
.announcement-banner {
	font-weight: 700;
	text-align: center;
}

.announcement-banner .container {
	padding-block: .6rem;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: .6rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: .6rem;
	text-decoration: none;
}

.brand span {
	font-weight: 700;
	color: #fff;
	font-size: 1.15rem;
	letter-spacing: .01em;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: .25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links a {
	display: block;
	text-decoration: none;
	color: #fff;
	font-weight: 700;
	padding: .5rem .7rem;
	border-radius: 8px;
	font-size: .98rem;
}

.nav-links a:hover {
	background: rgba(255, 255, 255, .16);
}

.nav-links a[aria-current="page"] {
	color: #fff;
	box-shadow: inset 0 -3px 0 var(--amber);
	border-radius: 8px 8px 0 0;
}

.nav-toggle {
	display: none;
	background: none;
	border: 0;
	cursor: pointer;
	padding: .4rem;
	border-radius: 8px;
	color: #fff;
}

.nav-toggle svg {
	display: block;
}

@media (max-width: 760px) {
	.nav-toggle {
		display: inline-flex;
	}

	.nav-links {
		position: absolute;
		inset: 100% 0 auto 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: var(--red);
		box-shadow: var(--shadow);
		padding: .5rem 1.25rem 1rem;
		display: none;
	}

	.nav-links.open {
		display: flex;
	}

	.nav-links a {
		padding: .75rem .5rem;
		border-bottom: 1px solid rgba(255, 255, 255, .18);
	}

	.nav-links a[aria-current="page"] {
		box-shadow: inset 3px 0 0 var(--amber);
		border-radius: 0;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	padding: .8rem 1.4rem;
	border-radius: 999px;
	border: 2px solid transparent;
	font-size: 1.02rem;
	transition: background .15s, color .15s, border-color .15s;
}

.btn-primary {
	background: var(--amber);
	color: var(--ink);
}

.btn-primary:hover {
	background: var(--amber-dark);
}

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

.btn-red:hover {
	background: var(--red-dark);
}

.btn-white {
	background: #fff;
	color: var(--red);
}

.btn-white:hover {
	background: var(--cream);
}

.hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(55% 75% at 82% 18%, rgba(255, 165, 10, .22), transparent 62%),
		linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.hero-inner {
	display: grid;
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3.5rem);
	grid-template-columns: 1.05fr .95fr;
	padding-block: clamp(2.5rem, 6vw, 4.75rem);
}

.eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-weight: 700;
	color: var(--amber-dark);
	font-size: .82rem;
	margin-bottom: .7rem;
}

.hero h1 {
	margin: 0 0 1rem;
	color: var(--red);
	line-height: 1.04;
	font-size: clamp(2.2rem, 5.5vw, 3.6rem);
	font-weight: 700;
}

.hero p.lead {
	margin: 0 0 1.75rem;
	max-width: 42ch;
	font-size: 1.18rem;
	color: var(--muted);
}

.hero-actions {
	display: flex;
	gap: .75rem;
	flex-wrap: wrap;
}

.hero-media {
	position: relative;
	justify-self: center;
	width: 100%;
	max-width: 400px;
}

.hero-media::before {
	content: "";
	position: absolute;
	inset: -14% -10% -16% -10%;
	z-index: 0;
	background: radial-gradient(circle at 50% 42%, var(--amber) 0%, #ffcf74 55%, transparent 72%);
	opacity: .45;
	border-radius: 50%;
}

.hero-card {
	position: relative;
	z-index: 1;
	background: #fff;
	padding: .55rem;
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(80, 45, 10, .20);
	transform: rotate(-2.5deg);
}

.hero-card img {
	display: block;
	width: 100%;
	border-radius: 13px;
}

.hero-chip {
	position: absolute;
	z-index: 2;
	right: -6px;
	bottom: -16px;
	transform: rotate(2deg);
	background: var(--red);
	color: #fff;
	font-weight: 700;
	font-size: .9rem;
	padding: .55rem 1rem;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(120, 0, 0, .28);
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	white-space: nowrap;
}

@media (max-width: 820px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.hero p.lead {
		margin-inline: auto;
	}

	.hero-actions {
		justify-content: center;
	}

	.hero-media {
		max-width: 320px;
		margin-top: 1rem;
	}
}

.facts {
	margin-top: -1.75rem;
	position: relative;
	z-index: 5;
}

.facts-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
}

.facts-card .fact {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: 1.1rem 1.35rem;
}

.facts-card .fact > span:not(.fico) {
	flex: 1;
	text-align: center;
}

.facts-card .fact + .fact {
	border-left: 1px solid var(--line);
}

.facts-card .fico {
	flex: none;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff4de;
	color: var(--red);
	border: 2px solid var(--amber);
}

.facts-card .fact .label {
	font-size: .78rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .04em;
}

.facts-card .fact .value {
	font-weight: 700;
}

.facts-card .fact a {
	color: var(--ink);
	text-decoration: none;
}

.facts-card .fact a:hover {
	color: var(--red);
}

@media (max-width: 720px) {
	.facts {
		margin-top: 1.5rem;
	}

	.facts-card {
		grid-template-columns: 1fr;
	}

	.facts-card .fact + .fact {
		border-left: 0;
		border-top: 1px solid var(--line);
	}
}

.dishes {
	display: grid;
	gap: .35rem 2.5rem;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
	.dishes {
		grid-template-columns: 1fr;
	}
}

.dish {
	display: flex;
	align-items: baseline;
	gap: .6rem;
	padding: .7rem 0;
	border-bottom: 1px dashed var(--line);
}

.dish .emoji {
	font-size: 1.25rem;
	line-height: 1;
}

.dish .d-name {
	font-weight: 700;
}

.dish .d-desc {
	display: block;
	font-weight: 400;
	font-size: .9rem;
	color: var(--muted);
}

.story-grid {
	display: grid;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	grid-template-columns: 1.05fr .95fr;
}

@media (max-width: 820px) {
	.story-grid {
		grid-template-columns: 1fr;
	}
}

.story-lead {
	color: var(--muted);
	font-size: 1.1rem;
	max-width: 48ch;
	margin: 0 0 1rem;
}

.story-quote {
	font-size: clamp(1.15rem, 2.3vw, 1.5rem);
	font-weight: 700;
	font-style: italic;
	color: var(--red);
	line-height: 1.25;
	margin: 0 0 1.5rem;
	padding-left: 1rem;
	border-left: 4px solid var(--amber);
}

.promises {
	list-style: none;
	margin: 0;
	padding: .5rem 1.4rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.promises li {
	display: flex;
	gap: .9rem;
	align-items: flex-start;
	padding: 1.1rem 0;
	border-bottom: 1px dashed var(--line);
}

.promises li:last-child {
	border-bottom: 0;
}

.promises .pico {
	flex: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #fff4de;
	color: var(--red);
	border: 2px solid var(--amber);
	margin-top: 2px;
}

.promises b {
	display: block;
	color: var(--ink);
}

.promises .pt {
	color: var(--muted);
	font-size: .94rem;
}

.founder-float {
	float: right;
	width: 210px;
	max-width: 42%;
	border-radius: 50%;
	margin: .25rem 0 1rem 1.6rem;
	box-shadow: 0 0 0 5px #fff7e6, 0 8px 20px rgba(80, 45, 10, .18);
	shape-outside: circle(50%);
	shape-margin: 1rem;
}

@media (max-width: 480px) {
	.founder-float {
		float: none;
		display: block;
		margin: 0 auto 1.25rem;
		max-width: 70%;
	}
}

section {
	padding-block: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
	color: var(--red);
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	margin: 0 0 .35rem;
	font-weight: 700;
}

.section-sub {
	color: var(--muted);
	margin: 0 0 2rem;
}

.text-narrow {
	max-width: 65ch;
}

.cta-band {
	background: var(--red);
	color: #fff;
	text-align: center;
}

.cta-band .container {
	padding-block: clamp(1.6rem, 4vw, 2.4rem);
}

.cta-band h2 {
	color: #fff;
	margin: 0 0 .5rem;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.cta-band p {
	margin: 0 auto 1.5rem;
	max-width: 48ch;
	color: rgba(255, 255, 255, .92);
}

.cta-actions {
	display: flex;
	gap: .75rem;
	justify-content: center;
	flex-wrap: wrap;
}

.menu-cat {
	margin-bottom: 2.25rem;
	scroll-margin-top: 90px;
}

.menu-cat > h2 {
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--red);
	font-size: 1.35rem;
	margin: 0 0 1rem;
	padding-bottom: .4rem;
	border-bottom: 3px solid var(--amber);
}

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

.menu-item {
	display: flex;
	align-items: baseline;
	gap: .5rem;
	padding: .55rem 0;
	border-bottom: 1px dashed var(--line);
}

.menu-item .name {
	font-weight: 700;
}

.menu-item .opts {
	color: var(--muted);
	font-size: .92rem;
	font-weight: 400;
}

.menu-item .dots {
	flex: 1 1 auto;
	border-bottom: 2px dotted #d8cfc2;
	transform: translateY(-4px);
	min-width: 1.5rem;
}

.menu-item .price {
	color: var(--red);
	font-weight: 700;
	white-space: nowrap;
}

.menu-note {
	color: var(--muted);
	font-size: .9rem;
	margin-top: 1rem;
}

.menu-note.error {
	color: var(--red);
	font-weight: 700;
}

@media (max-width: 520px) {
	.menu-item {
		flex-wrap: wrap;
	}

	.menu-item .dots {
		display: none;
	}

	.menu-item .price {
		width: 100%;
		margin-top: .15rem;
	}
}

.map-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	border: 1px solid var(--line);
}

.map-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.address-block {
	line-height: 1.7;
}

.address-block strong {
	color: var(--red);
}

.site-footer {
	background: var(--ink);
	color: #e9e2d9;
}

.site-footer .container {
	padding-block: 2.5rem;
}

.footer-grid {
	display: grid;
	gap: 1.75rem;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	text-align: center;
}

.site-footer h4 {
	color: #fff;
	margin: 0 0 .6rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.site-footer a {
	color: var(--amber);
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1.9;
}

.footer-bottom {
	border-top: 1px solid #443d35;
	margin-top: 1.75rem;
	padding-top: 1.25rem;
	font-size: .88rem;
	color: #b6ada2;
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1.5rem;
	justify-content: center;
	text-align: center;
}

.prose h2 {
	color: var(--red);
	margin-top: 2rem;
}

/* A section heading right under its eyebrow shouldn't get the prose top-spacing. */
.prose .section-title {
	margin-top: 0;
}

.prose h3 {
	color: var(--red);
}

.prose p {
	margin: 0 0 1rem;
}