@charset "UTF-8";
/*
 * Star to go — design system
 *
 * Every visual decision traces back to the shop's printed menu boards:
 * slate-black ground, hairline red frames, white "pill" category badges,
 * condensed uppercase lettering, prices set in the same condensed face.
 */

/* ---------------------------------------------------------------- fonts -- */

@font-face {
	font-family: "Oswald";
	font-style: normal;
	font-weight: 200 700;
	font-display: swap;
	src: url("../fonts/oswald-latin.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
		U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Oswald";
	font-style: normal;
	font-weight: 200 700;
	font-display: swap;
	src: url("../fonts/oswald-latin-ext.woff2") format("woff2");
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
		U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
		U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------- tokens -- */

:root {
	--red: #ec2227;			/* sampled from the shop logo */
	--red-ink: #c8161c;		/* darker: passes AA behind white text */
	--red-deep: #8e0f14;
	--ink: #0b0b0d;
	--ink-2: #131316;
	--ink-3: #1b1b20;
	--ink-4: #26262c;
	--line: #34343c;
	--white: #fff;
	--text: #e9e9ec;
	--muted: #a0a0a9;
	--cream: #f7f2e8;		/* bakery section: warm, "morning bread" */
	--cream-2: #efe6d6;
	--cream-ink: #241d14;
	--cream-muted: #6d6154;

	--display: "Oswald", "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
	--body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
		Arial, sans-serif;

	--wrap: 1220px;
	--gut: clamp(1.1rem, 4vw, 2.5rem);
	--r: 14px;
	--r-lg: 22px;

	--shadow: 0 18px 46px -18px rgb(0 0 0 / 78%);
	--shadow-red: 0 16px 40px -20px rgb(236 34 39 / 55%);

	/* Slate grain, lifted from the boards' stone texture. Inline: no request. */
	--grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------- reset -- */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 116px;
}

body {
	margin: 0;
	background: var(--ink);
	color: var(--text);
	font-family: var(--body);
	font-size: 16px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-image: var(--grain);
	opacity: 0.16;
	mix-blend-mode: overlay;
	pointer-events: none;
	z-index: 1;
}

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

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

button {
	font: inherit;
	color: inherit;
	cursor: pointer;
}

h1,
h2,
h3,
h4 {
	font-family: var(--display);
	font-weight: 600;
	line-height: 1.02;
	margin: 0;
	letter-spacing: 0.005em;
	text-transform: uppercase;
}

p {
	margin: 0;
}

:where(a, button, input, [tabindex]):focus-visible {
	outline: 3px solid var(--red);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--red-ink);
	color: #fff;
	padding: 0.8rem 1.2rem;
	font-family: var(--display);
	text-transform: uppercase;
}

.skip:focus {
	left: 0.6rem;
	top: 0.6rem;
}

.sr {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
}

/* --------------------------------------------------------------- layout -- */

.wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gut);
}

.section {
	position: relative;
	z-index: 2;
	padding-block: clamp(3.4rem, 8vw, 6.2rem);
}

/* -- the signature element: the shop's white pill with a red outline ------ */

.pill {
	display: inline-block;
	background: var(--white);
	color: var(--red);
	font-family: var(--display);
	font-weight: 700;
	text-transform: uppercase;
	font-size: clamp(0.94rem, 2.2vw, 1.12rem);
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 0.62em 1.15em 0.55em;
	border-radius: 999px;
	box-shadow: 0 0 0 4px var(--red), 0 10px 24px -14px rgb(0 0 0 / 90%);
}

.pill--sm {
	font-size: 0.78rem;
	padding: 0.5em 0.9em 0.44em;
	box-shadow: 0 0 0 3px var(--red);
}

.eyebrow {
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	font-size: 0.74rem;
	font-weight: 500;
	color: var(--red);
	margin-bottom: 1rem;
}

.section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.2rem 2rem;
	margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}

.section-head h2 {
	font-size: clamp(2rem, 5.6vw, 3.3rem);
}

.section-head > p {
	color: var(--muted);
	max-width: 46ch;
	font-size: 1rem;
}

/* ------------------------------------------------------------- buttons -- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55em;
	font-family: var(--display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 1.06rem;
	line-height: 1;
	padding: 0.95em 1.5em;
	border: 2px solid transparent;
	border-radius: 999px;
	background: var(--red-ink);
	color: #fff;
	transition: transform 0.16s ease, background-color 0.16s ease,
		border-color 0.16s ease;
}

.btn:hover {
	background: var(--red);
	transform: translateY(-2px);
}

.btn--ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--white);
}

.btn--ghost:hover {
	background: transparent;
	border-color: var(--red);
	color: var(--red);
}

.btn--sm {
	font-size: 0.92rem;
	padding: 0.72em 1.15em;
}

.btn svg {
	width: 1.05em;
	height: 1.05em;
	flex: none;
	fill: currentColor;
}

/* --------------------------------------------------------------- header -- */

.topbar {
	position: relative;
	z-index: 30;
	background: #08080a;
	border-bottom: 1px solid #1e1e23;
	font-size: 0.82rem;
	color: var(--muted);
}

.topbar__in {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.4rem 1.4rem;
	min-height: 40px;
	padding-block: 0.35rem;
}

.topbar b {
	color: var(--text);
	font-weight: 600;
}

.status {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
}

.status__dot {
	width: 0.55em;
	height: 0.55em;
	border-radius: 50%;
	background: #46c26a;
	box-shadow: 0 0 0 3px rgb(70 194 106 / 22%);
}

.status--shut .status__dot {
	background: #d0454a;
	box-shadow: 0 0 0 3px rgb(208 69 74 / 22%);
}

.status--open {
	color: #7edb98;
}

.status--shut {
	color: #e88a8e;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgb(11 11 13 / 92%);
	backdrop-filter: saturate(150%) blur(12px);
	border-bottom: 1px solid #1c1c22;
}

.site-header__in {
	display: flex;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.4rem);
	min-height: 74px;
	padding-block: 0.6rem;
}

.brand {
	flex: none;
	display: block;
	line-height: 0;
}

.brand img {
	width: clamp(132px, 17vw, 186px);
	height: auto;
}

.brand__text {
	font-family: var(--display);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--red);
	line-height: 1;
}

.nav {
	margin-left: auto;
}

.nav,
.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(0.9rem, 2.2vw, 1.9rem);
}

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

.nav a {
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text);
	padding-block: 0.4rem;
	border-bottom: 2px solid transparent;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.nav a:hover,
.nav a[aria-current] {
	color: var(--red);
	border-bottom-color: var(--red);
}

.header-cta {
	flex: none;
}

.burger {
	display: none;
	flex: none;
	margin-left: auto;
	background: none;
	border: 1px solid var(--line);
	border-radius: 10px;
	width: 46px;
	height: 42px;
	padding: 0;
	align-items: center;
	justify-content: center;
}

.burger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--white);
	box-shadow: 0 -6px 0 var(--white), 0 6px 0 var(--white);
}

/* ----------------------------------------------------------------- hero -- */

.hero {
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding-block: clamp(2.4rem, 6vw, 4.4rem) clamp(2.6rem, 7vw, 5rem);
	background:
		radial-gradient(90% 120% at 88% 12%, rgb(236 34 39 / 20%), transparent 62%),
		radial-gradient(70% 90% at 4% 96%, rgb(236 34 39 / 9%), transparent 60%),
		var(--ink);
}

.hero__in {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
	align-items: center;
	gap: clamp(1.6rem, 5vw, 4rem);
}

.hero h1 {
	font-size: clamp(2.5rem, 7.2vw, 4.5rem);
	font-weight: 700;
	margin-block: 0.9rem 1.1rem;
	letter-spacing: -0.005em;
}

.hero h1 em {
	font-style: normal;
	color: var(--red);
	display: block;
}

.hero__lede {
	color: var(--muted);
	font-size: clamp(1rem, 2.1vw, 1.14rem);
	max-width: 44ch;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.9rem;
}

.hero__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 2rem;
	margin-top: 2.2rem;
	padding-top: 1.6rem;
	border-top: 1px solid #22222a;
	font-size: 0.9rem;
	color: var(--muted);
}

.hero__facts b {
	display: block;
	font-family: var(--display);
	font-size: 1.02rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--white);
	font-weight: 600;
}

/* The dish floats over a red glow — same trick as the shop's poster art. */
.hero__art {
	position: relative;
	justify-self: center;
	width: 100%;
	max-width: 560px;
}

.hero__art::before {
	content: "";
	position: absolute;
	inset: 6% 4% 10%;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgb(236 34 39 / 46%),
		rgb(236 34 39 / 6%) 58%,
		transparent 70%
	);
	filter: blur(14px);
}

.hero__art img {
	position: relative;
	width: 100%;
	filter: drop-shadow(0 30px 34px rgb(0 0 0 / 62%));
}

.hero__tag {
	position: absolute;
	right: -0.4rem;
	bottom: 4%;
	z-index: 3;
	background: var(--white);
	color: var(--ink);
	border-radius: 999px;
	box-shadow: 0 0 0 4px var(--red), var(--shadow);
	padding: 0.7rem 1.1rem;
	text-align: center;
	line-height: 1;
}

.hero__tag small {
	display: block;
	font-family: var(--display);
	text-transform: uppercase;
	font-size: 0.66rem;
	letter-spacing: 0.14em;
	color: var(--red-deep);
	margin-bottom: 0.22rem;
}

.hero__tag b {
	font-family: var(--display);
	font-size: 1.6rem;
	font-weight: 700;
}

/* ---------------------------------------------------------------- promo -- */

.promo {
	position: relative;
	z-index: 2;
	background: var(--red-ink);
	background-image: linear-gradient(100deg, var(--red-deep), var(--red) 78%);
}

.promo__in {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.7rem 1.6rem;
	padding-block: 0.95rem;
	color: #fff;
}

.promo__burst {
	flex: none;
	width: clamp(58px, 8vw, 78px);
	height: auto;
	margin-block: -0.7rem;
	transform: rotate(-9deg);
	filter: drop-shadow(0 4px 10px rgb(0 0 0 / 35%));
}

.promo__day {
	font-family: var(--display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.8rem;
	background: rgb(0 0 0 / 32%);
	padding: 0.42em 0.85em;
	border-radius: 999px;
	flex: none;
}

.promo__txt {
	font-family: var(--display);
	font-size: clamp(1.02rem, 2.6vw, 1.42rem);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-right: auto;
}

.promo__txt s {
	opacity: 0.62;
	font-weight: 400;
}

.promo__price {
	font-family: var(--display);
	font-weight: 700;
	font-size: clamp(1.1rem, 3vw, 1.55rem);
	background: #fff;
	color: var(--red-deep);
	border-radius: 999px;
	padding: 0.3em 0.8em 0.24em;
	flex: none;
}

/* ------------------------------------------------------- signature strip -- */

.sig {
	background: var(--ink-2);
	border-block: 1px solid #1e1e24;
}

.sig__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: clamp(1rem, 2.6vw, 1.7rem);
}

.sig__card {
	position: relative;
	display: flex;
	flex-direction: column;
	background:
		radial-gradient(120% 70% at 50% 0%, #26262d, transparent 70%),
		var(--ink-3);
	border: 1px solid #2c2c34;
	border-radius: var(--r-lg);
	padding: 1.1rem 1.1rem 1.25rem;
	overflow: hidden;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.sig__card:hover {
	transform: translateY(-4px);
	border-color: var(--red);
}

.sig__shot {
	position: relative;
	display: grid;
	place-items: center;
	height: 172px;
	margin-bottom: 1rem;
}

.sig__shot::before {
	content: "";
	position: absolute;
	width: 76%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgb(236 34 39 / 30%),
		transparent 68%
	);
}

.sig__shot img {
	position: absolute;
	inset: 0;
	width: auto;
	height: auto;
	max-width: 96%;
	max-height: 100%;
	margin: auto;
	object-fit: contain;
	filter: drop-shadow(0 14px 18px rgb(0 0 0 / 55%));
}

.sig__card h3 {
	font-size: 1.22rem;
	font-weight: 600;
}

.sig__card p {
	color: var(--muted);
	font-size: 0.9rem;
	margin-top: 0.35rem;
}

.sig__price {
	margin-top: 0.9rem;
	font-family: var(--display);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--red);
}

/* ----------------------------------------------------------- menu chrome -- */

.catnav {
	position: sticky;
	top: 74px;
	z-index: 25;
	background: rgb(11 11 13 / 94%);
	backdrop-filter: blur(10px);
	border-block: 1px solid #1c1c22;
}

.catnav__in {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	overflow-x: auto;
	scrollbar-width: none;
	padding-block: 0.7rem;
}

.catnav__in::-webkit-scrollbar {
	display: none;
}

.catnav a {
	flex: none;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--muted);
	border: 1px solid #2b2b33;
	border-radius: 999px;
	padding: 0.5em 1em 0.44em;
	white-space: nowrap;
	transition: color 0.15s, border-color 0.15s, background-color 0.15s;
}

.catnav a:hover {
	color: var(--white);
	border-color: var(--line);
}

.catnav a.is-active {
	color: #fff;
	background: var(--red-ink);
	border-color: var(--red-ink);
}

.menu-tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 2rem;
}

.search {
	position: relative;
	flex: 1 1 260px;
	max-width: 340px;
}

.search input {
	width: 100%;
	background: var(--ink-3);
	border: 1px solid #2f2f38;
	border-radius: 999px;
	color: var(--text);
	font: inherit;
	font-size: 0.95rem;
	padding: 0.7rem 1rem 0.7rem 2.5rem;
}

.search input::placeholder {
	color: #7b7b85;
}

.search input:focus {
	border-color: var(--red);
	outline: none;
}

.search svg {
	position: absolute;
	left: 0.9rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1rem;
	height: 1rem;
	fill: #7b7b85;
	pointer-events: none;
}

.menu-count {
	font-size: 0.88rem;
	color: var(--muted);
}

/* ------------------------------------------------------------ menu group -- */

.group {
	padding-top: clamp(2.4rem, 5vw, 3.6rem);
}

.group__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem 1.4rem;
	margin-bottom: 1.6rem;
}

.group__head > p {
	color: var(--muted);
	font-size: 0.95rem;
	max-width: 52ch;
}

.group__note {
	display: flex;
	gap: 0.6rem;
	align-items: flex-start;
	font-size: 0.85rem;
	color: var(--muted);
	background: var(--ink-2);
	border-left: 3px solid var(--red);
	border-radius: 0 10px 10px 0;
	padding: 0.75rem 1rem;
	margin-bottom: 1.5rem;
}

/* Photo cards, for the dishes worth showing */
.dishes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
	gap: clamp(0.9rem, 2.2vw, 1.5rem);
}

.dish {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ink-2);
	border: 1px solid #262630;
	border-radius: var(--r);
	overflow: hidden;
	transition: transform 0.18s ease, border-color 0.18s ease;
}

.dish:hover {
	transform: translateY(-3px);
	border-color: var(--red);
}

.dish__shot {
	position: relative;
	aspect-ratio: 4 / 3;
	background: radial-gradient(115% 92% at 50% 8%, #24242c, #101014 74%);
	overflow: hidden;
}

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

/* Cut-outs and portrait photos are shown whole, centred on the card ground */
.dish__shot--cut img,
.dish__shot--fit img {
	width: auto;
	height: auto;
	max-width: 86%;
	max-height: 86%;
	margin: auto;
	object-fit: contain;
}

.dish__shot--cut img {
	filter: drop-shadow(0 12px 16px rgb(0 0 0 / 55%));
}

.dish__shot--fit img {
	max-width: 94%;
	max-height: 94%;
	border-radius: 6px;
}

.dish__badge {
	position: absolute;
	left: 0.7rem;
	top: 0.7rem;
	z-index: 2;
}

.dish__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0.95rem 1rem 1.05rem;
}

.dish__body h3 {
	font-size: 1.06rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.dish__body p {
	color: var(--muted);
	font-size: 0.87rem;
	line-height: 1.5;
	margin-top: 0.34rem;
}

.dish__foot {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 0.8rem;
	margin-top: auto;
	padding-top: 0.9rem;
}

.price {
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.32rem;
	line-height: 1;
	color: var(--white);
	white-space: nowrap;
}

.price span {
	color: var(--red);
	margin-right: 0.12em;
}

/* Size/quantity rows, e.g. "6 stuks — € 4,95" */
.tiers {
	display: grid;
	margin-bottom: 0;
	gap: 0.3rem;
	margin-top: 0.85rem;
	padding-top: 0.8rem;
	border-top: 1px dashed #2f2f38;
	width: 100%;
}

.tier {
	display: flex;
	align-items: baseline;
	gap: 0.5rem;
	font-size: 0.9rem;
}

.tier dt,
.tier dd {
	margin: 0;
}

.tier__label {
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted);
	flex: none;
}

.tier__dots {
	flex: 1;
	border-bottom: 1px dotted #43434d;
	transform: translateY(-0.22em);
}

.tier__price {
	font-family: var(--display);
	font-weight: 600;
	color: var(--white);
	flex: none;
}

/* Classic price list with dot leaders, for drinks and extras */
.pricelist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 0.15rem clamp(1.6rem, 5vw, 3.6rem);
	background: var(--ink-2);
	border: 1px solid #262630;
	border-radius: var(--r);
	padding: clamp(1.1rem, 3vw, 1.9rem);
}

.pricelist__row {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	padding-block: 0.62rem;
	border-bottom: 1px solid #22222a;
}

.pricelist__row:last-child {
	border-bottom: 0;
}

.pricelist__name {
	font-family: var(--display);
	font-size: 1.04rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--text);
}

.pricelist__dots {
	flex: 1;
	border-bottom: 1px dotted #43434d;
	transform: translateY(-0.28em);
	min-width: 1.5rem;
}

.pricelist__price {
	font-family: var(--display);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--white);
	white-space: nowrap;
}

.pricelist__price span {
	color: var(--red);
	margin-right: 0.1em;
}

/* ----------------------------------------------------- bakery (warm side) -- */

.bakery {
	background: var(--cream);
	color: var(--cream-ink);
}

.bakery::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--grain);
	opacity: 0.34;
	mix-blend-mode: multiply;
	pointer-events: none;
}

.bakery > * {
	position: relative;
	z-index: 1;
}

.bakery .eyebrow {
	color: var(--red-ink);
}

.bakery .section-head > p,
.bakery .group__head > p {
	color: var(--cream-muted);
}

.bakery .pill {
	box-shadow: 0 0 0 4px var(--red), 0 10px 22px -16px rgb(80 40 20 / 60%);
}

.bakery .dish {
	background: #fffdf8;
	border-color: var(--cream-2);
}

.bakery .dish:hover {
	border-color: var(--red);
}

.bakery .dish__shot {
	background: linear-gradient(180deg, #fff, var(--cream-2));
}

.bakery .dish__body p {
	color: var(--cream-muted);
}

.bakery .price {
	color: var(--cream-ink);
}

.bakery .group__note {
	background: #fffdf8;
	color: var(--cream-muted);
}

.bakery .tiers {
	border-top-color: var(--cream-2);
}

/* Prices are white on the dark side; on cream they need the dark ink. */
.bakery .tier__price {
	color: var(--cream-ink);
}

.bakery .tier__label {
	color: var(--cream-muted);
}

.bakery .tier__dots,
.bakery .pricelist__dots {
	border-bottom-color: #cdbfa8;
}

.bakery .pricelist {
	background: #fffdf8;
	border-color: var(--cream-2);
}

.bakery .pricelist__row {
	border-bottom-color: var(--cream-2);
}

.bakery .pricelist__name {
	color: var(--cream-ink);
}

.bakery .pricelist__price {
	color: var(--cream-ink);
}

/* ----------------------------------------------------------------- info -- */

.info__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
	gap: clamp(1rem, 2.6vw, 1.7rem);
}

.card {
	background: var(--ink-2);
	border: 1px solid #262630;
	border-radius: var(--r-lg);
	padding: clamp(1.2rem, 3vw, 1.7rem);
}

.card h3 {
	font-size: 1.16rem;
	margin-bottom: 0.9rem;
	color: var(--white);
}

.card address {
	font-style: normal;
	line-height: 1.75;
}

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

.hours {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.96rem;
}

.hours th,
.hours td {
	text-align: left;
	padding: 0.5rem 0;
	border-bottom: 1px solid #22222a;
	font-weight: 400;
}

.hours tr:last-child :is(th, td) {
	border-bottom: 0;
}

.hours th {
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted);
	font-weight: 500;
}

.hours td {
	text-align: right;
	font-family: var(--display);
	letter-spacing: 0.03em;
	color: var(--white);
}

.hours tr.is-today :is(th, td) {
	color: var(--red);
}

.hours tr.is-shut td {
	color: var(--muted);
}

.halal {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin-top: 1.1rem;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.78rem;
	color: var(--muted);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.42em 0.9em 0.36em;
}

/* --------------------------------------------------------------- footer -- */

.site-footer {
	position: relative;
	z-index: 2;
	background: #08080a;
	border-top: 1px solid #1c1c22;
	padding-block: clamp(2.4rem, 6vw, 3.4rem) 1.6rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
	gap: 1.8rem 2.4rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #1c1c22;
}

.site-footer h4 {
	font-size: 0.86rem;
	letter-spacing: 0.16em;
	color: var(--red);
	margin-bottom: 0.9rem;
}

.site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.45rem;
	font-size: 0.94rem;
	color: var(--muted);
}

.site-footer a:hover {
	color: var(--red);
}

.site-footer__base {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	padding-top: 1.4rem;
	font-size: 0.82rem;
	color: #7c7c86;			/* was #6f6f79 at 4.0:1 — under AA */
}

/* Sticky call bar, phones only — the shop takes orders by phone */
.callbar {
	position: fixed;
	inset: auto 0 0;
	z-index: 45;
	display: none;
	gap: 0.6rem;
	padding: 0.7rem var(--gut) calc(0.7rem + env(safe-area-inset-bottom));
	background: rgb(8 8 10 / 96%);
	border-top: 1px solid #1e1e24;
	backdrop-filter: blur(10px);
}

.callbar .btn {
	flex: 1;
	justify-content: center;
}

/* ------------------------------------------------------------ page/misc -- */

.page-head {
	padding-block: clamp(2.4rem, 6vw, 4rem) 0;
}

.page-head h1 {
	font-size: clamp(2.2rem, 6.4vw, 3.6rem);
	margin-top: 0.8rem;
}

.prose {
	max-width: 68ch;
	padding-block: 2rem clamp(3rem, 7vw, 5rem);
}

.prose :is(h2, h3) {
	margin-top: 2.2rem;
	margin-bottom: 0.7rem;
}

.prose h2 {
	font-size: 1.7rem;
}

.prose h3 {
	font-size: 1.3rem;
}

.prose p,
.prose ul,
.prose ol {
	margin-bottom: 1.1rem;
	color: var(--text);
}

.prose a {
	color: var(--red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.is-hidden {
	display: none !important;
}

.no-hits {
	color: var(--muted);
	padding: 2.5rem 0;
	text-align: center;
}

/* -------------------------------------------------------------- responsive -- */

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

	.hero__art {
		order: -1;
		max-width: 400px;
	}

	.hero__facts {
		gap: 0.5rem 1.4rem;
	}
}

@media (max-width: 820px) {
	html {
		scroll-padding-top: 128px;
	}

	.burger {
		display: flex;
	}

	.nav {
		position: absolute;
		inset: 100% 0 auto;
		background: #0e0e11;
		border-bottom: 1px solid #1e1e24;
		padding: 0.5rem var(--gut) 1.1rem;
		box-shadow: var(--shadow);
	}

	.nav,
	.nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav__list {
		width: 100%;
	}

	.nav:not(.is-open) {
		display: none;
	}

	.nav a {
		display: block;
		padding-block: 0.85rem;
		border-bottom: 1px solid #1c1c22;
	}

	.nav a:hover,
	.nav a[aria-current] {
		border-bottom-color: #1c1c22;
	}

	.header-cta {
		display: none;
	}

	.callbar {
		display: flex;
	}

	body {
		padding-bottom: 72px;
	}

	.catnav {
		top: 66px;
	}

	.site-header__in {
		min-height: 64px;
	}

	.topbar__in {
		justify-content: center;
		text-align: center;
	}
}

@media (max-width: 560px) {
	/* One dish per row, photo alongside the text: the pattern that actually
	   reads on a phone, and it keeps the price rows on one line. */
	.dishes {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.dish {
		flex-direction: row;
		align-items: stretch;
	}

	.dish__shot {
		flex: none;
		width: 112px;
		aspect-ratio: auto;
		border-right: 1px solid #262630;
	}

	.dish__body {
		padding: 0.75rem 0.85rem 0.8rem;
		min-width: 0;
	}

	.dish__body h3 {
		font-size: 1rem;
	}

	.dish__body p {
		font-size: 0.83rem;
		margin-top: 0.2rem;
	}

	.dish__badge {
		left: 0.4rem;
		top: 0.4rem;
	}

	.pill--sm {
		font-size: 0.66rem;
		padding: 0.4em 0.6em 0.34em;
		box-shadow: 0 0 0 2px var(--red);
	}

	.tiers {
		margin-top: 0.6rem;
		padding-top: 0.55rem;
	}

	.tier {
		font-size: 0.84rem;
		gap: 0.4rem;
	}

	.tier__label {
		flex: 1 1 auto;
		min-width: 0;
	}

	.tier__dots {
		display: none;
	}

	.tier__price {
		margin-left: auto;
	}

	.bakery .dish__shot {
		border-right-color: var(--cream-2);
	}

	.price {
		font-size: 1.16rem;
	}

	.pricelist {
		padding: 0.9rem 1rem;
	}

	.pricelist__name {
		font-size: 0.95rem;
		flex: 1 1 auto;
		min-width: 0;
	}

	.pricelist__dots {
		display: none;
	}

	.pricelist__price {
		margin-left: auto;
	}

	.hero__tag {
		right: 0;
		padding: 0.55rem 0.85rem;
	}

	.hero__tag b {
		font-size: 1.3rem;
	}

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

	.sig__card {
		padding: 0.8rem 0.8rem 1rem;
	}

	.sig__shot {
		height: 120px;
	}

	.sig__card p {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.site-header,
	.topbar,
	.catnav,
	.callbar,
	.hero__art,
	.site-footer__grid,
	.menu-tools {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		padding: 0;
	}

	body::before {
		display: none;
	}

	.dish,
	.pricelist,
	.card {
		border-color: #bbb;
		background: #fff;
		break-inside: avoid;
	}

	.price,
	.pricelist__price,
	.pricelist__name {
		color: #000;
	}
}

/* ------------------------------------------------- exploded kapsalon -- */

.explode-section {
	background:
		radial-gradient(58% 74% at 22% 42%, rgb(236 34 39 / 13%), transparent 66%),
		var(--ink-2);
	border-block: 1px solid #1e1e24;
}

.explode {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	align-items: center;
	gap: clamp(1.6rem, 5vw, 4.4rem);
}

.explode__stack {
	position: relative;
	width: 100%;
	max-width: 420px;
	justify-self: center;
	aspect-ratio: var(--ratio, 0.82);
	margin-block: 1.4rem 2.6rem;
	--pull: 1;
	transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Assembling moves every layer down, so lift the whole stack to keep the
   finished kapsalon centred in its frame. */
.explode__stack.is-built {
	transform: translateY(calc(-76px * var(--pull)));
}

.explode__glow {
	position: absolute;
	inset: 14% -12% 4%;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgb(236 34 39 / 34%),
		rgb(236 34 39 / 5%) 58%,
		transparent 72%
	);
	filter: blur(16px);
}

.explode__layer {
	position: absolute;
	left: var(--l);
	top: var(--t);
	width: var(--w);
	height: auto;
	--rest: 0px;
	--built: 0px;
	--z: 1;
	z-index: var(--z);
	transform: translateY(calc(var(--rest) * var(--pull)));
	filter: drop-shadow(0 12px 14px rgb(0 0 0 / 58%));
	transition: transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1),
		opacity 0.5s ease, filter 0.3s ease;
	transition-delay: calc(var(--i) * 80ms);
	will-change: transform;
}

/* Collapsed start state: layers sit closer together, then settle apart.
   They never separate further than the artwork, so the slice seams that
   the cut created stay hidden behind their neighbours. */
.explode__stack:not(.is-in) .explode__layer {
	transform: translateY(calc(var(--rest) * var(--pull) + var(--d) * -20px))
		scale(0.985);
	opacity: 0;
}

.explode__stack.is-in .explode__layer {
	transform: translateY(calc(var(--rest) * var(--pull)));
	opacity: 1;
}

/* Pointing at a step lifts that layer clear of the stack. */
.explode__stack.is-built .explode__layer {
	transform: translateY(calc(var(--built) * var(--pull)));
	transition-delay: max(0ms, calc((3 - var(--i)) * 130ms));
	animation: none;
}

.explode__stack.is-built .explode__layer.is-hot,
.explode__stack.is-built .explode__layer.is-cool {
	opacity: 1;
}

.explode__stack.is-in:not(.is-built) .explode__layer.is-hot {
	transform: translateY(calc(var(--rest) * var(--pull) + var(--d) * 8px))
		scale(1.02);
	filter: drop-shadow(0 16px 18px rgb(0 0 0 / 62%))
		drop-shadow(0 0 22px rgb(236 34 39 / 45%));
	transition-delay: 0s;
}

.explode__stack.is-in:not(.is-built) .explode__layer.is-cool {
	opacity: 0.42;
	transition-delay: 0s;
}

/* A slow idle bob on the airborne layers. Uses the independent `translate`
   property so it never fights the `transform` that positions them. */
@keyframes star-hover {
	0%,
	100% {
		translate: 0 0;
	}

	50% {
		translate: 0 -6px;
	}
}

.explode__stack.is-in:not(.is-built) .explode__layer:not([data-layer="bak"]) {
	animation: star-hover 4.6s ease-in-out infinite;
	animation-delay: calc(var(--i) * -0.85s);
}

/* ------------------------------------------------ the play control -- */

.explode__side {
	display: grid;
	gap: 0.6rem;
}

.explode__play {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 0.55em 1.1em 0.55em 0.75em;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--text);
	transition: border-color 0.18s ease, color 0.18s ease,
		background-color 0.18s ease;
}

.explode__play:hover {
	border-color: var(--red);
	color: var(--red);
}

.explode__play-icon {
	position: relative;
	width: 1.5rem;
	height: 1.5rem;
	flex: none;
	border-radius: 50%;
	background: var(--red-ink);
}

/* Two chevrons pointing inwards: "bring the layers together". */
.explode__play-icon::before,
.explode__play-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transition: transform 0.25s ease;
}

.explode__play-icon::before {
	top: 0.24rem;
	transform: translateX(-50%) rotate(-135deg) translateY(-1px);
}

.explode__play-icon::after {
	bottom: 0.24rem;
	transform: translateX(-50%) rotate(45deg) translateY(-1px);
}

.explode__play[aria-pressed="true"] .explode__play-icon::before {
	transform: translateX(-50%) rotate(45deg) translateY(-1px);
}

.explode__play[aria-pressed="true"] .explode__play-icon::after {
	transform: translateX(-50%) rotate(-135deg) translateY(-1px);
}

.explode__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.15rem;
}

.explode__step {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.85rem 1rem;
	border-radius: 12px;
	border: 1px solid transparent;
	cursor: default;
	transition: background-color 0.18s ease, border-color 0.18s ease,
		transform 0.18s ease;
}

.explode__step:hover,
.explode__step:focus-visible {
	background: rgb(255 255 255 / 4%);
	border-color: #33333c;
	transform: translateX(4px);
	outline: none;
}

.explode__num {
	flex: none;
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: transparent;
	border: 1.5px solid var(--red);
	color: var(--red);
	font-family: var(--display);
	font-weight: 700;
	font-size: 0.94rem;
	line-height: 1;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.explode__step:hover .explode__num,
.explode__step:focus-visible .explode__num {
	background: var(--red);
	color: #fff;
}

.explode__text b {
	display: block;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: 1.06rem;
	font-weight: 600;
	color: var(--white);
	line-height: 1.2;
}

.explode__text span {
	color: var(--muted);
	font-size: 0.9rem;
}

.explode__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.9rem 1.4rem;
	margin-top: 0.9rem;
	padding: 1rem;
	border-top: 1px solid #26262e;
}

.explode__price small {
	display: block;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.68rem;
	color: var(--muted);
	margin-bottom: 0.15rem;
}

.explode__price b {
	font-family: var(--display);
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.explode__price b span {
	color: var(--red);
}

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

	.explode__stack {
		max-width: 300px;
		/* Scale the separation with the artwork so gaps stay in proportion. */
		--pull: 0.7;
		margin-block: 1rem 2rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.explode__stack:not(.is-in) .explode__layer {
		transform: translateY(calc(var(--rest) * var(--pull)));
		opacity: 1;
	}

	.explode__stack.is-built .explode__layer {
	transform: translateY(calc(var(--built) * var(--pull)));
	transition-delay: max(0ms, calc((3 - var(--i)) * 130ms));
	animation: none;
}

.explode__stack.is-built .explode__layer.is-hot,
.explode__stack.is-built .explode__layer.is-cool {
	opacity: 1;
}

.explode__stack.is-in:not(.is-built) .explode__layer.is-hot {
		transform: translateY(calc(var(--rest) * var(--pull)));
	}
}

/* ----------------------------------------------------- extra polish -- */

/* Cut-outs lift off the card on hover, like picking the dish up. */
.dish__shot--cut img,
.dish__shot--fit img {
	transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dish:hover .dish__shot--cut img,
.dish:hover .dish__shot--fit img {
	transform: translateY(-5px) scale(1.035);
}

.dish__shot::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 40%;
	background: linear-gradient(to top, rgb(0 0 0 / 34%), transparent);
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.dish:hover .dish__shot::after {
	opacity: 1;
}

.bakery .dish__shot::after {
	background: linear-gradient(to top, rgb(80 55 25 / 12%), transparent);
}

/* A hairline rule where two dark sections meet, so they read as pages. */
.sig::before,
.explode-section::after {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 1px;
	background: linear-gradient(
		to right,
		transparent,
		rgb(236 34 39 / 55%) 22%,
		rgb(236 34 39 / 55%) 78%,
		transparent
	);
}

.explode-section::after {
	inset: auto 0 0;
}

.sig,
.explode-section {
	position: relative;
}

/* Signature cards get a quiet rank marker. */
.sig__card {
	counter-increment: sig;
}

.sig__grid {
	counter-reset: sig;
}

.sig__card::after {
	content: counter(sig, decimal-leading-zero);
	position: absolute;
	right: 0.9rem;
	top: 0.7rem;
	font-family: var(--display);
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #3b3b45;
	transition: color 0.2s ease;
}

.sig__card:hover::after {
	color: var(--red);
}

/* The pill badges pick up a faint inner ring, like the printed boards. */
.pill {
	background-image: linear-gradient(180deg, #fff, #f3f3f5);
}

/* Optional footer menu, shown only when one is assigned in wp-admin */
.site-footer__nav {
	padding-top: 1.3rem;
}

.site-footer__nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.5rem;
	font-family: var(--display);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.86rem;
}

.site-footer__nav-list a:hover {
	color: var(--red);
}

/* "vanaf" on a highlight card whose dish has several sizes */
.sig__from {
	display: block;
	font-family: var(--body);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--muted);
	margin-bottom: -0.15rem;
}

.bakery .sig__from { color: var(--cream-muted); }

/* Designer credit, last line on the page */
.site-footer__credit {
	padding-top: 1rem;
	text-align: center;
	font-size: 0.78rem;
	color: #7c7c86;			/* 4.8:1 on #08080a — AA for small text */
	letter-spacing: 0.02em;
}

.site-footer__credit a {
	color: #9a9aa4;			/* 7.2:1 */
	text-decoration: none;
	border-bottom: 1px solid #3a3a44;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.site-footer__credit a:hover {
	color: var(--red);
	border-bottom-color: var(--red);
}
