:root {
	--nk-ink: #171717;
	--nk-ink-soft: #4b4542;
	--nk-paper: #fffdf9;
	--nk-warm: #f3ece2;
	--nk-red: #a51d2d;
	--nk-red-dark: #7f1321;
	--nk-gold: #d9a441;
	--nk-line: #d8d0c5;
	--nk-focus: #1769aa;
	--nk-radius: 0.75rem;
	--nk-shadow: 0 18px 60px rgba(27, 20, 16, 0.12);
	--nk-shell: min(1180px, calc(100% - 2rem));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nk-paper);
	color: var(--nk-ink);
	font-family: Montserrat, "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	letter-spacing: 0.002em;
}

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

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

a {
	color: var(--nk-red-dark);
	text-decoration-thickness: 0.12em;
	text-underline-offset: 0.18em;
}

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

a,
button,
summary,
input,
select,
textarea {
	outline-offset: 4px;
}

:focus-visible {
	outline: 3px solid var(--nk-focus);
}

h1,
h2,
h3,
h4 {
	margin-top: 0;
	margin-bottom: 0.8em;
	text-wrap: balance;
}

h1,
h2 {
	line-height: 1.12;
	letter-spacing: -0.022em;
}

h3 {
	line-height: 1.22;
	letter-spacing: -0.012em;
}

h4 {
	line-height: 1.3;
}

p {
	margin-top: 0;
	margin-bottom: 1.15rem;
	text-wrap: pretty;
}

li {
	line-height: 1.65;
}

h1 {
	font-size: clamp(2.65rem, 7vw, 5.8rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.nk-shell {
	width: var(--nk-shell);
	margin-inline: auto;
}

.nk-narrow {
	max-width: 800px;
}

.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;
}

.nk-skip-link {
	position: fixed;
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	padding: 0.75rem 1rem;
	background: #fff;
	color: #171717;
	box-shadow: var(--nk-shadow);
	transform: translateY(-180%);
}

.nk-skip-link:focus {
	transform: translateY(0);
}

.nk-utility {
	background: var(--nk-ink);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nk-utility-inner {
	min-height: 2.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.nk-utility a {
	color: #fff;
}

.nk-header {
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(216, 208, 197, 0.8);
	background: rgba(255, 253, 249, 0.96);
	backdrop-filter: blur(14px);
}

.admin-bar .nk-header {
	top: 32px;
}

.nk-header-inner {
	min-height: 6rem;
	display: grid;
	grid-template-columns: 190px 1fr auto;
	align-items: center;
	gap: 2rem;
}

.nk-brand,
.nk-brand a,
.nk-brand img {
	display: block;
	width: 172px;
}

.nk-nav-list {
	display: flex;
	justify-content: center;
	gap: clamp(1rem, 2vw, 2rem);
	padding: 0;
	margin: 0;
	list-style: none;
}

.nk-nav-list a {
	color: var(--nk-ink);
	font-size: 0.88rem;
	font-weight: 850;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
}

.nk-header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.nk-mobile-menu {
	display: none;
	position: relative;
}

.nk-mobile-menu summary {
	min-height: 44px;
	padding: 0.65rem 0.8rem;
	border: 1px solid var(--nk-ink);
	border-radius: 0.35rem;
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.nk-mobile-menu summary::-webkit-details-marker {
	display: none;
}

.nk-mobile-menu nav {
	position: absolute;
	right: 0;
	width: min(320px, calc(100vw - 2rem));
	padding: 1rem;
	border: 1px solid var(--nk-line);
	background: var(--nk-paper);
	box-shadow: var(--nk-shadow);
}

.nk-mobile-menu .nk-nav-list {
	display: block;
}

.nk-mobile-menu .nk-nav-list a,
.nk-mobile-order {
	display: block;
	min-height: 44px;
	padding: 0.65rem;
}

.nk-language-switcher select {
	min-height: 44px;
	border: 1px solid var(--nk-line);
	border-radius: 0.35rem;
	background: #fff;
	padding-inline: 0.7rem;
}

.nk-theme-button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.15rem;
	border: 2px solid var(--nk-red);
	border-radius: 0.35rem;
	background: var(--nk-red);
	color: #fff;
	font-weight: 850;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}

.nk-theme-button:hover,
.nk-theme-button:focus {
	border-color: var(--nk-red-dark);
	background: var(--nk-red-dark);
	color: #fff;
}

.nk-button-light {
	border-color: #fff;
	background: #fff;
	color: var(--nk-ink);
}

.nk-button-light:hover,
.nk-button-light:focus {
	border-color: var(--nk-warm);
	background: var(--nk-warm);
	color: var(--nk-ink);
}

.nk-button-outline {
	border-color: var(--nk-ink);
	background: transparent;
	color: var(--nk-ink);
}

.nk-button-outline:hover,
.nk-button-outline:focus {
	background: var(--nk-ink);
	color: #fff;
}

.nk-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.nk-inline-link {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	gap: 0.4rem;
	font-weight: 850;
}

.nk-eyebrow {
	margin-bottom: 0.75rem;
	color: var(--nk-red-dark);
	font-size: 0.75rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.nk-light {
	color: #ffd6ca;
}

.nk-core-notice {
	padding: 0.8rem 1rem;
	border-left: 5px solid #b45309;
	background: #fff7ed;
	color: #7c2d12;
	font-weight: 700;
}

.nk-hero {
	position: relative;
	min-height: min(760px, 84vh);
	display: grid;
	align-items: end;
	overflow: hidden;
	background: var(--nk-ink);
}

.nk-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nk-hero-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(20, 11, 7, 0.88) 0%, rgba(20, 11, 7, 0.55) 48%, rgba(20, 11, 7, 0.08) 78%),
		linear-gradient(0deg, rgba(20, 11, 7, 0.5), transparent 50%);
}

.nk-hero-content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin-bottom: clamp(3rem, 8vw, 7rem);
	color: #fff;
}

.nk-hero-content h1 {
	max-width: 720px;
	margin-bottom: 1.3rem;
}

.nk-hero-content > p:not(.nk-eyebrow) {
	max-width: 680px;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.nk-intro-strip {
	background: var(--nk-red-dark);
	color: #fff;
}

.nk-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.nk-stat-grid div {
	min-height: 9rem;
	display: grid;
	align-content: center;
	padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
	border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.nk-stat-grid div:last-child {
	border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.nk-stat-grid strong {
	font-size: 2rem;
	line-height: 1;
}

.nk-stat-grid span {
	margin-top: 0.4rem;
}

.nk-section {
	padding-block: clamp(4.5rem, 9vw, 8rem);
}

.nk-dark {
	background: var(--nk-ink);
	color: #fff;
}

.nk-warm {
	background: var(--nk-warm);
}

.nk-split-grid,
.nk-two-columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: clamp(2rem, 7vw, 7rem);
}

.nk-square-image img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 1.25rem;
	box-shadow: var(--nk-shadow);
}

.nk-heading-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2.5rem;
}

.nk-centered-heading {
	max-width: 760px;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.nk-dark .nk-menu-section > h2,
.nk-dark .nk-allergen-notice {
	display: none;
}

.nk-dark .nk-menu {
	margin-top: 2rem;
}

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

.nk-dark .nk-menu-item {
	display: block;
	color: var(--nk-ink);
}

.nk-dark .nk-menu-item > img {
	width: 100%;
	aspect-ratio: 3 / 2;
	height: auto;
}

.nk-path-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.nk-path-card {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	border-radius: 1.25rem;
	color: #fff;
	text-decoration: none;
}

.nk-path-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(15, 8, 4, 0.86), transparent 62%);
}

.nk-path-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.nk-path-card:hover img {
	transform: scale(1.035);
}

.nk-path-card > span {
	position: absolute;
	right: 1.6rem;
	bottom: 1.5rem;
	left: 1.6rem;
	z-index: 1;
	font-size: 1.65rem;
	font-weight: 900;
	line-height: 1.15;
}

.nk-path-card small {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.nk-page-hero {
	padding-block: clamp(5rem, 10vw, 9rem);
	background:
		linear-gradient(135deg, rgba(165, 29, 45, 0.1), transparent 45%),
		var(--nk-warm);
}

.nk-page-hero h1 {
	margin-bottom: 1.4rem;
}

.nk-page-hero p:last-child {
	color: var(--nk-ink-soft);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	line-height: 1.65;
}

.nk-page-content {
	max-width: 940px;
}

.nk-page-content > :first-child {
	margin-top: 0;
}

.nk-page-content h2,
.nk-page-content h3,
.nk-prose h2,
.nk-prose h3 {
	margin-top: 2.8rem;
	margin-bottom: 0.9rem;
}

.nk-page-content p,
.nk-prose p {
	margin-bottom: 1.2rem;
}

.nk-page-content ul,
.nk-page-content ol,
.nk-prose ul,
.nk-prose ol {
	margin-top: 0;
	margin-bottom: 1.5rem;
}

.nk-page-content li + li,
.nk-prose li + li {
	margin-top: 0.45rem;
}

.nk-location-hero {
	position: relative;
	min-height: 620px;
	display: grid;
	align-items: end;
	overflow: hidden;
	background: var(--nk-ink);
}

.nk-location-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.72);
}

.nk-location-hero-card {
	position: relative;
	z-index: 1;
	width: min(650px, calc(100% - 2rem));
	margin-right: auto;
	margin-bottom: 3rem;
	margin-left: max(1rem, calc((100% - min(1180px, calc(100% - 2rem))) / 2));
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: 1.25rem;
	background: rgba(255, 253, 249, 0.96);
	box-shadow: var(--nk-shadow);
}

.nk-location-hero-card h1 {
	font-size: clamp(2.8rem, 6vw, 5rem);
}

.nk-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.nk-detail-grid article {
	padding: 1.8rem;
	border: 1px solid var(--nk-line);
	border-radius: var(--nk-radius);
}

.nk-detail-grid h2 {
	margin-bottom: 0.8rem;
	font-size: 1.45rem;
}

.nk-detail-grid address {
	font-style: normal;
}

.nk-small {
	color: var(--nk-ink-soft);
	font-size: 0.86rem;
}

.nk-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}

.nk-post-card {
	overflow: hidden;
	border: 1px solid var(--nk-line);
	border-radius: var(--nk-radius);
	background: #fff;
}

.nk-post-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.nk-post-card > div {
	padding: 1.5rem;
}

.nk-post-card h2 {
	font-size: 1.8rem;
}

.nk-featured-image img {
	width: 100%;
	border-radius: var(--nk-radius);
}

.nk-search-result {
	padding-block: 1.5rem;
	border-bottom: 1px solid var(--nk-line);
}

.nk-search-result h2 {
	font-size: 1.6rem;
}

.nk-not-found {
	min-height: 65vh;
	display: grid;
	align-items: center;
	padding-block: 4rem;
	background: var(--nk-warm);
}

.nk-footer {
	background: var(--nk-ink);
	color: #f7f2eb;
}

.nk-footer-photo {
	height: clamp(160px, 25vw, 330px);
	background:
		linear-gradient(rgba(23, 23, 23, 0.2), rgba(23, 23, 23, 0.7)),
		url("../images/footer-food.jpg") center / cover;
}

.nk-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 2.5rem;
	padding-block: 4rem;
}

.nk-footer-grid > * {
	min-width: 0;
}

.nk-footer h2 {
	margin-bottom: 1rem;
	font-size: 1rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nk-footer a,
.nk-footer .nk-cookie-preferences-button {
	color: #f7f2eb;
}

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

.nk-footer-list a,
.nk-footer-list button {
	min-height: 40px;
	display: flex;
	align-items: center;
	overflow-wrap: anywhere;
}

.nk-footer-logo {
	width: 190px;
}

.nk-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.nk-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 1.5rem;
	padding-block: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	color: #d3cbc3;
	font-size: 0.78rem;
}

.nk-footer-bottom p {
	margin: 0;
}

@media (max-width: 1040px) {
	.nk-header-inner {
		grid-template-columns: 160px 1fr auto;
	}

	.nk-desktop-nav {
		display: none;
	}

	.nk-header-actions {
		justify-content: end;
	}

	.nk-mobile-menu {
		display: block;
	}

	.nk-path-grid,
	.nk-dark .nk-menu-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.nk-path-card:last-child,
	.nk-dark .nk-menu-item:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}

	.nk-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	.admin-bar .nk-header {
		top: 46px;
	}
}

@media (max-width: 760px) {
	:root {
		--nk-shell: min(100% - 1.25rem, 1180px);
	}

	html {
		scroll-behavior: auto;
	}

	.nk-utility-inner {
		justify-content: center;
	}

	.nk-utility a {
		display: none;
	}

	.nk-header-inner {
		min-height: 5rem;
		grid-template-columns: minmax(118px, 1fr) auto auto;
		gap: 0.5rem;
	}

	.nk-brand,
	.nk-brand a,
	.nk-brand img {
		width: 132px;
	}

	.nk-order-button {
		display: none;
	}

	.nk-hero {
		min-height: 700px;
	}

	.nk-hero > img {
		object-position: 57% center;
	}

	.nk-hero-shade {
		background: linear-gradient(0deg, rgba(20, 11, 7, 0.92) 0%, rgba(20, 11, 7, 0.58) 70%, rgba(20, 11, 7, 0.25));
	}

	.nk-hero-content {
		margin-bottom: 2rem;
	}

	.nk-stat-grid,
	.nk-split-grid,
	.nk-two-columns,
	.nk-detail-grid,
	.nk-post-grid {
		grid-template-columns: 1fr;
	}

	.nk-stat-grid div {
		min-height: 6.5rem;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		border-left: 0;
	}

	.nk-stat-grid div:last-child {
		border-bottom: 0;
	}

	.nk-square-image {
		order: -1;
	}

	.nk-heading-row {
		display: block;
	}

	.nk-path-grid,
	.nk-dark .nk-menu-grid {
		grid-template-columns: 1fr;
	}

	.nk-path-card,
	.nk-path-card:last-child,
	.nk-dark .nk-menu-item:last-child:nth-child(odd) {
		min-height: 370px;
		grid-column: auto;
	}

	.nk-location-hero {
		min-height: 700px;
	}

	.nk-location-hero-card {
		width: var(--nk-shell);
		margin: 0 auto 1rem;
	}

	.nk-footer-grid {
		grid-template-columns: 1fr;
	}

	.nk-footer-bottom {
		display: block;
	}

	.nk-footer-bottom p + p {
		margin-top: 0.6rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (forced-colors: active) {
	.nk-theme-button,
	.nk-header,
	.nk-location-hero-card,
	.nk-detail-grid article {
		border: 2px solid CanvasText;
	}
}

@media print {
	.nk-utility,
	.nk-header,
	.nk-footer,
	.nk-cookie-banner,
	.nk-theme-button,
	.nk-button {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		font-size: 11pt;
	}

	.nk-section,
	.nk-page-hero {
		padding: 1rem 0;
	}

	a {
		color: #000;
	}
}
