:root {
	--bb-ink: #1b1712;
	--bb-muted: #6f6254;
	--bb-cream: #fff6e7;
	--bb-paper: #fffbf3;
	--bb-line: #ead9bf;
	--bb-red: #d9361f;
	--bb-orange: #f08a22;
	--bb-green: #1f7a4a;
	--bb-dark: #12110f;
	--bb-shadow: 0 18px 45px rgba(36, 22, 8, 0.14);
	--bb-radius: 8px;
	--bb-container: 1180px;
	--bb-header-height: 72px;
	--bb-display-font: "Arial Narrow", "HelveticaNeue-CondensedBold", Impact, Haettenschweiler, "Segoe UI", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bb-cream);
	color: var(--bb-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	letter-spacing: 0;
}

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

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

button,
input,
textarea {
	font: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--bb-green);
	outline-offset: 3px;
}

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

.skip-link:focus {
	position: fixed;
	z-index: 9999;
	top: 12px;
	left: 12px;
	padding: 0.8rem 1rem;
	background: var(--bb-dark);
	color: #fff;
	border-radius: var(--bb-radius);
}

.bb-container {
	width: min(100% - 32px, var(--bb-container));
	margin-inline: auto;
}

.bb-topbar {
	background: var(--bb-dark);
	color: #fff3df;
	font-size: 0.86rem;
	font-weight: 800;
	padding: 0.48rem 0;
	text-align: center;
}

.bb-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 246, 231, 0.94);
	border-bottom: 1px solid rgba(27, 23, 18, 0.08);
	backdrop-filter: blur(14px);
	transition: box-shadow 180ms ease, background 180ms ease;
}

.bb-header.is-scrolled {
	background: rgba(255, 251, 243, 0.98);
	box-shadow: 0 10px 30px rgba(27, 23, 18, 0.1);
}

.bb-header__inner {
	min-height: var(--bb-header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.bb-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-weight: 950;
	text-decoration: none;
	line-height: 1;
}

.bb-brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	aspect-ratio: 1;
	background: var(--bb-red);
	color: #fff;
	border-radius: 50%;
	font-weight: 950;
}

.bb-brand__text {
	font-size: 1.05rem;
}

.bb-brand__logo {
	width: auto;
	max-width: 186px;
	max-height: 54px;
	object-fit: contain;
}

.bb-nav-toggle {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--bb-line);
	border-radius: 50%;
	background: var(--bb-paper);
}

.bb-nav-toggle__bar,
.bb-nav-toggle__bar::before,
.bb-nav-toggle__bar::after {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--bb-ink);
	content: "";
}

.bb-nav-toggle__bar::before {
	transform: translateY(-6px);
}

.bb-nav-toggle__bar::after {
	transform: translateY(4px);
}

.bb-nav {
	position: fixed;
	inset: calc(var(--bb-header-height) + 34px) 16px auto;
	display: none;
	background: var(--bb-paper);
	border: 1px solid var(--bb-line);
	border-radius: var(--bb-radius);
	box-shadow: var(--bb-shadow);
}

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

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

.bb-nav__list a {
	display: block;
	padding: 1rem;
	font-weight: 850;
	text-decoration: none;
}

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

.bb-header__cta {
	display: none;
}

.bb-button,
.bb-header__cta {
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.86rem 1.1rem;
	border: 2px solid var(--bb-red);
	border-radius: 999px;
	background: var(--bb-red);
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(217, 54, 31, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.bb-button:hover,
.bb-header__cta:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 30px rgba(217, 54, 31, 0.28);
}

.bb-button--ghost {
	background: transparent;
	color: var(--bb-red);
	box-shadow: none;
}

.bb-button--light {
	background: #fff;
	border-color: #fff;
	color: var(--bb-ink);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.bb-button--ghost-light {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.72);
	color: #fff;
	box-shadow: none;
}

.bb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.bb-hero {
	position: relative;
	min-height: 680px;
	display: grid;
	align-items: end;
	overflow: hidden;
	background: var(--bb-dark);
	color: #fff;
}

.bb-hero__media,
.bb-hero__shade {
	position: absolute;
	inset: 0;
}

.bb-hero__image,
.bb-image-fallback {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bb-image-fallback {
	background:
		linear-gradient(120deg, rgba(217, 54, 31, 0.78), rgba(31, 122, 74, 0.62)),
		repeating-linear-gradient(45deg, #24170e 0 12px, #3b2614 12px 24px);
}

.bb-hero__shade {
	background: linear-gradient(180deg, rgba(18, 17, 15, 0.2), rgba(18, 17, 15, 0.86));
}

.bb-hero__content {
	position: relative;
	z-index: 1;
	padding: 7rem 0 4rem;
}

.bb-kicker {
	margin: 0 0 0.75rem;
	color: var(--bb-red);
	font-size: 0.78rem;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0;
}

.bb-hero .bb-kicker,
.bb-cta-band .bb-kicker {
	color: #ffd2bd;
}

.bb-hero h1,
.bb-page-hero h1 {
	max-width: 880px;
	margin: 0;
	font-size: 3.2rem;
	line-height: 0.98;
	letter-spacing: 0;
	text-wrap: balance;
}

.bb-hero p:not(.bb-kicker),
.bb-page-hero p:not(.bb-kicker) {
	max-width: 660px;
	margin: 1rem 0 0;
	font-size: 1.12rem;
}

.bb-hero__actions {
	margin-top: 1.5rem;
}

.bb-hero__hours {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1.5rem;
}

.bb-hero__hours span,
.bb-hours span,
.bb-badges span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0.32rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 0.86rem;
	font-weight: 850;
}

.bb-ticker,
.bb-full-menu-band {
	overflow: hidden;
	background: var(--bb-orange);
	color: var(--bb-dark);
	border-block: 2px solid var(--bb-dark);
}

.bb-ticker__track,
.bb-full-menu-band__track {
	display: flex;
	width: max-content;
	animation: bb-marquee 24s linear infinite;
	font-size: 2rem;
	font-weight: 950;
	white-space: nowrap;
}

.bb-ticker__track span,
.bb-full-menu-band__track {
	padding: 0.55rem 0;
}

@keyframes bb-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

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

	.bb-ticker__track,
	.bb-full-menu-band__track {
		animation: none;
	}

	* {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

.bb-section {
	padding: 4rem 0;
}

.bb-section-heading {
	display: grid;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.bb-section-heading h2,
.bb-split h2,
.bb-location h2,
.bb-faq-layout h2,
.bb-cta-band h2 {
	margin: 0;
	font-size: 2.1rem;
	line-height: 1.05;
	letter-spacing: 0;
	text-wrap: balance;
}

.bb-link {
	color: var(--bb-red);
	font-weight: 900;
}

.bb-highlight-grid,
.bb-feature-grid,
.bb-menu-grid {
	display: grid;
	gap: 1rem;
}

.bb-highlight-card,
.bb-feature,
.bb-menu-card,
.bb-contact-panel,
.bb-contact-form,
.bb-post-card {
	border: 1px solid var(--bb-line);
	border-radius: var(--bb-radius);
	background: var(--bb-paper);
	box-shadow: 0 10px 24px rgba(42, 25, 11, 0.07);
}

.bb-highlight-card {
	display: grid;
	min-height: 170px;
	align-content: space-between;
	padding: 1.1rem;
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease;
}

.bb-highlight-card:hover {
	transform: translateY(-2px);
	border-color: var(--bb-red);
}

.bb-highlight-card span {
	font-size: 1.8rem;
	font-weight: 950;
	line-height: 1;
}

.bb-highlight-card p,
.bb-feature p,
.bb-copy p,
.bb-menu-card p {
	color: var(--bb-muted);
}

.bb-full-menu-band {
	background: var(--bb-dark);
	color: var(--bb-paper);
}

.bb-full-menu-band__track {
	animation-duration: 34s;
	font-size: 2.8rem;
	padding-inline: 1rem;
}

.bb-split,
.bb-location__grid,
.bb-faq-layout,
.bb-contact-grid,
.bb-cta-band__inner {
	display: grid;
	gap: 2rem;
}

.bb-copy {
	max-width: 680px;
}

.bb-feature {
	padding: 1.25rem;
}

.bb-feature span {
	display: inline-grid;
	place-items: center;
	width: 42px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--bb-green);
	color: #fff;
	font-weight: 950;
}

.bb-feature h3 {
	margin: 1rem 0 0.35rem;
	font-size: 1.35rem;
}

.bb-image-strip {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	background: var(--bb-dark);
}

.bb-image-strip__item {
	margin: 0;
	aspect-ratio: 1;
	overflow: hidden;
}

.bb-image-strip__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.bb-image-strip__item:hover .bb-image-strip__image {
	transform: scale(1.04);
}

.bb-location {
	background: var(--bb-paper);
}

.bb-location address,
.bb-footer address {
	font-style: normal;
	font-weight: 800;
}

.bb-hours {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 1.2rem 0;
}

.bb-hours span {
	background: var(--bb-dark);
	color: #fff;
}

.bb-map-card {
	min-height: 320px;
	display: grid;
	align-content: space-between;
	padding: 1.4rem;
	border: 1px solid var(--bb-dark);
	border-radius: var(--bb-radius);
	background:
		linear-gradient(135deg, rgba(31, 122, 74, 0.92), rgba(217, 54, 31, 0.86)),
		repeating-linear-gradient(0deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 42px),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 42px);
	color: #fff;
	box-shadow: var(--bb-shadow);
}

.bb-map-card__pin {
	width: max-content;
	max-width: 100%;
	padding: 0.8rem 0.9rem;
	border-radius: var(--bb-radius);
	background: var(--bb-dark);
	font-weight: 900;
}

.bb-map-card a {
	justify-self: start;
	padding: 0.75rem 1rem;
	border-radius: 999px;
	background: #fff;
	color: var(--bb-dark);
	font-weight: 900;
	text-decoration: none;
}

.bb-faq__item {
	border-top: 1px solid var(--bb-line);
}

.bb-faq__item:last-child {
	border-bottom: 1px solid var(--bb-line);
}

.bb-faq button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 0;
	border: 0;
	background: transparent;
	color: var(--bb-ink);
	font-weight: 950;
	text-align: left;
}

.bb-faq button::after {
	content: "+";
	font-size: 1.5rem;
	line-height: 1;
}

.bb-faq button[aria-expanded="true"]::after {
	content: "-";
}

.bb-faq__panel p {
	margin-top: 0;
	color: var(--bb-muted);
}

.bb-cta-band {
	padding: 4rem 0;
	background: var(--bb-dark);
	color: #fff;
}

.bb-catering-note {
	margin-top: 1.5rem;
	color: #ffd2bd;
	font-weight: 850;
}

.bb-page-hero {
	padding: 4rem 0 3rem;
	background: var(--bb-dark);
	color: #fff;
}

.bb-page-hero--image {
	position: relative;
	overflow: hidden;
	min-height: 460px;
	display: grid;
	align-items: end;
}

.bb-page-hero__media {
	position: absolute;
	inset: 0;
	opacity: 0.48;
}

.bb-page-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bb-page-hero--image .bb-container {
	position: relative;
	z-index: 1;
}

.bb-menu-tools {
	display: grid;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.bb-menu-tools label {
	font-weight: 950;
}

.bb-menu-tools input,
.bb-contact-form input,
.bb-contact-form textarea {
	width: 100%;
	border: 1px solid var(--bb-line);
	border-radius: var(--bb-radius);
	background: #fff;
	color: var(--bb-ink);
	padding: 0.9rem 1rem;
}

.bb-filter-tabs {
	display: flex;
	gap: 0.5rem;
	overflow-x: auto;
	padding-bottom: 0.4rem;
	margin-bottom: 0.5rem;
	scrollbar-width: thin;
}

.bb-filter-tabs button {
	flex: 0 0 auto;
	border: 1px solid var(--bb-line);
	border-radius: 999px;
	background: var(--bb-paper);
	color: var(--bb-ink);
	font-weight: 900;
	padding: 0.7rem 0.95rem;
}

.bb-filter-tabs button.is-active {
	background: var(--bb-red);
	border-color: var(--bb-red);
	color: #fff;
}

.bb-menu-count {
	color: var(--bb-muted);
	font-weight: 850;
}

.bb-menu-section {
	margin-top: 2rem;
}

.bb-menu-section__heading {
	display: grid;
	gap: 0.25rem;
	margin-bottom: 0.9rem;
}

.bb-menu-section__heading h2 {
	margin: 0;
	font-size: 1.7rem;
}

.bb-menu-section__heading p {
	margin: 0;
	color: var(--bb-muted);
	font-weight: 750;
}

.bb-menu-card {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
}

.bb-menu-card[hidden],
.bb-menu-section[hidden],
.bb-menu-empty[hidden] {
	display: none;
}

.bb-menu-card h3 {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.18;
}

.bb-menu-card p {
	margin: 0.35rem 0 0;
}

.bb-menu-card__price {
	flex: 0 0 auto;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	background: var(--bb-green);
	color: #fff;
	white-space: nowrap;
}

.bb-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 0.65rem;
}

.bb-badges span {
	background: #ffe8d6;
	color: var(--bb-dark);
	font-size: 0.78rem;
}

.bb-contact-panel,
.bb-contact-form,
.bb-post-card {
	padding: 1.25rem;
}

.bb-contact-form {
	display: grid;
	gap: 1rem;
}

.bb-contact-form label {
	display: grid;
	gap: 0.35rem;
	font-weight: 900;
}

.bb-content {
	max-width: 780px;
}

.bb-legal {
	border: 1px solid var(--bb-line);
	border-radius: var(--bb-radius);
	background: var(--bb-paper);
	padding: 1.25rem;
}

.bb-footer {
	padding: 3rem 0 6rem;
	background: #0f0f0e;
	color: #fff6e7;
}

.bb-footer__grid {
	display: grid;
	gap: 2rem;
}

.bb-footer h2 {
	margin: 0 0 0.8rem;
	font-size: 1rem;
	color: #ffd2bd;
}

.bb-footer p {
	color: #e5d6bf;
}

.bb-footer__hours {
	display: grid;
	gap: 0.35rem;
}

.bb-footer__nav {
	display: grid;
	gap: 0.45rem;
}

.bb-footer__nav a,
.bb-footer__legal a,
.bb-footer a {
	color: inherit;
	font-weight: 800;
}

.bb-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1rem;
}

.bb-mobile-cta {
	position: fixed;
	z-index: 1001;
	right: 12px;
	bottom: 12px;
	left: 12px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.35rem;
	padding: 0.35rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(18, 17, 15, 0.94);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(14px);
}

.bb-mobile-cta a {
	display: grid;
	place-items: center;
	min-height: 44px;
	border-radius: 999px;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 950;
	text-decoration: none;
}

.bb-mobile-cta a:first-child {
	background: var(--bb-red);
}

@media (min-width: 720px) {
	.bb-container {
		width: min(100% - 56px, var(--bb-container));
	}

	.bb-hero h1,
	.bb-page-hero h1 {
		font-size: 5.4rem;
	}

	.bb-section-heading {
		grid-template-columns: 1fr auto;
		align-items: end;
	}

	.bb-highlight-grid,
	.bb-feature-grid,
	.bb-menu-grid,
	.bb-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bb-image-strip {
		grid-template-columns: 1.15fr 0.85fr 1fr 1fr;
	}

	.bb-image-strip__item {
		aspect-ratio: 4 / 5;
	}

	.bb-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr 1fr;
	}
}

@media (min-width: 920px) {
	.bb-nav-toggle {
		display: none;
	}

	.bb-nav {
		position: static;
		display: block;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.bb-nav__list {
		display: flex;
		align-items: center;
		gap: 0.2rem;
	}

	.bb-nav__list a {
		padding: 0.6rem 0.85rem;
		border-radius: 999px;
	}

	.bb-nav__list a:hover {
		background: #fff;
	}

	.bb-header__cta {
		display: inline-flex;
	}

	.bb-hero {
		min-height: 760px;
	}

	.bb-section {
		padding: 5rem 0;
	}

	.bb-section-heading h2,
	.bb-split h2,
	.bb-location h2,
	.bb-faq-layout h2,
	.bb-cta-band h2 {
		font-size: 3.3rem;
	}

	.bb-highlight-grid,
	.bb-feature-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

	.bb-split,
	.bb-location__grid,
	.bb-faq-layout,
	.bb-cta-band__inner {
		grid-template-columns: 0.9fr 1.1fr;
		align-items: center;
	}

	.bb-cta-band__inner {
		grid-template-columns: 1fr auto;
	}

	.bb-mobile-cta {
		display: none;
	}

	.bb-footer {
		padding-bottom: 3rem;
	}
}

@media (max-width: 919px) {
	body {
		padding-bottom: 78px;
	}
}

@media (max-width: 480px) {
	.bb-topbar {
		font-size: 0.78rem;
	}

	.bb-brand__text {
		max-width: 128px;
		line-height: 1.05;
	}

	.bb-hero h1,
	.bb-page-hero h1 {
		font-size: 2.55rem;
	}

	.bb-hero {
		min-height: 620px;
	}

	.bb-button {
		width: 100%;
	}

	.bb-hero__hours span {
		font-size: 0.8rem;
	}

	.bb-menu-card {
		display: grid;
	}

	.bb-menu-card__price {
		justify-self: start;
	}
}

/* Brotkorb streetfood refresh: own black/orange direction inspired by the supplied mood screenshots. */
body {
	background: #050505;
	color: #fffaf2;
}

.bb-topbar {
	background: #050505;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.bb-header {
	background: #f36b22;
	border-bottom: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.bb-header.is-scrolled {
	background: #f36b22;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.bb-brand__mark {
	background: #fff;
	color: #f36b22;
}

.bb-brand__text {
	color: #fff;
	font-family: var(--bb-display-font);
	font-size: 1.8rem;
	font-weight: 950;
	text-transform: uppercase;
}

.bb-brand__logo {
	display: none;
}

.bb-nav__list a {
	color: #fff;
	font-weight: 950;
}

.bb-nav__list a:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.bb-header__cta {
	border-color: #050505;
	background: #050505;
	color: #fff;
	box-shadow: none;
}

.bb-nav-toggle {
	border-color: rgba(255, 255, 255, 0.55);
	background: #fff;
}

.bb-hero {
	min-height: 760px;
	background: #050505;
	color: #fff;
	align-items: center;
}

.bb-hero__media {
	inset: 0 0 0 48%;
	overflow: hidden;
}

.bb-hero__image {
	filter: saturate(1.08) contrast(1.04);
}

.bb-hero__shade {
	background:
		linear-gradient(90deg, #050505 0%, #050505 44%, rgba(5, 5, 5, 0.76) 58%, rgba(5, 5, 5, 0.18) 100%),
		linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.42));
}

.bb-hero__content {
	padding: 8rem 0 5rem;
}

.bb-kicker {
	color: #f36b22;
	font-weight: 950;
}

.bb-hero .bb-kicker {
	color: #f36b22;
}

.bb-hero h1,
.bb-page-hero h1,
.bb-section-heading h2,
.bb-split h2,
.bb-location h2,
.bb-faq-layout h2,
.bb-cta-band h2,
.bb-menu-section__heading h2 {
	font-family: var(--bb-display-font);
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0;
}

.bb-hero h1 {
	max-width: 640px;
	font-size: 6.4rem;
	line-height: 0.82;
}

.bb-hero p:not(.bb-kicker) {
	max-width: 560px;
	color: #fff6e9;
	font-size: 1.25rem;
	font-weight: 800;
}

.bb-hero__stamp {
	position: absolute;
	right: 4rem;
	bottom: 2rem;
	display: grid;
	place-items: center;
	width: 138px;
	aspect-ratio: 1;
	padding: 1rem;
	border-radius: 50%;
	background: #f36b22;
	color: #fff;
	font-size: 1rem;
	font-weight: 950;
	line-height: 1.1;
	text-align: center;
	text-transform: uppercase;
	transform: rotate(-12deg);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.bb-button,
.bb-header__cta {
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.bb-button {
	border-color: #f36b22;
	background: #f36b22;
	color: #fff;
	box-shadow: none;
}

.bb-button--light {
	border-color: #fff;
	background: #fff;
	color: #050505;
}

.bb-button--ghost,
.bb-button--ghost-light {
	border-color: #fff;
	background: transparent;
	color: #fff;
}

.bb-ticker,
.bb-full-menu-band {
	border: 0;
	background: #f36b22;
	color: #fff;
}

.bb-ticker__track,
.bb-full-menu-band__track {
	font-family: var(--bb-display-font);
	font-size: 5rem;
	line-height: 0.9;
	font-weight: 950;
	text-transform: uppercase;
}

.bb-ticker__track span,
.bb-full-menu-band__track {
	padding: 1.1rem 0;
}

.bb-slogan-wall {
	padding: 4rem 0;
	background: #050505;
}

.bb-slogan-wall__grid {
	display: grid;
	gap: 1rem;
}

.bb-slogan {
	min-height: 220px;
	display: grid;
	align-content: space-between;
	padding: 1.25rem;
	border-radius: var(--bb-radius);
	overflow: hidden;
}

.bb-slogan span {
	font-size: 0.9rem;
	font-weight: 950;
	text-transform: uppercase;
}

.bb-slogan strong {
	font-family: var(--bb-display-font);
	font-size: 4.2rem;
	line-height: 0.82;
	font-weight: 950;
	text-transform: uppercase;
}

.bb-slogan--orange {
	background: #f36b22;
	color: #fff;
}

.bb-slogan--dark {
	background: #0d0d0d;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.bb-slogan--light {
	background: #fff;
	color: #050505;
}

.bb-menu-highlight,
.bb-faq-section {
	background: #050505;
	color: #fff;
}

.bb-menu-highlight .bb-section-heading h2,
.bb-faq-section h2 {
	color: #fff;
}

.bb-highlight-card {
	min-height: 250px;
	background: #0d0d0d;
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
	box-shadow: none;
}

.bb-highlight-card:nth-child(2n) {
	background: #f36b22;
	border-color: #f36b22;
}

.bb-highlight-card:nth-child(3n) {
	background: #fff;
	border-color: #fff;
	color: #050505;
}

.bb-highlight-card span {
	font-family: var(--bb-display-font);
	font-size: 3rem;
	text-transform: uppercase;
}

.bb-highlight-card p {
	color: inherit;
	font-weight: 850;
}

.bb-section--split,
.bb-menu-page,
.bb-contact-grid,
.bb-content,
.bb-location {
	background: #fffaf2;
	color: #050505;
}

.bb-section--split {
	padding: 5rem 0;
}

.bb-section:not(.bb-menu-highlight):not(.bb-location):not(.bb-faq-section) {
	background: #fffaf2;
	color: #050505;
}

.bb-feature {
	background: #050505;
	border-color: #050505;
	color: #fff;
	box-shadow: none;
}

.bb-feature:nth-child(2) {
	background: #f36b22;
	border-color: #f36b22;
}

.bb-feature:nth-child(3) {
	background: #fff;
	border-color: #050505;
	color: #050505;
}

.bb-feature h3 {
	font-family: var(--bb-display-font);
	font-size: 2.2rem;
	line-height: 0.9;
	text-transform: uppercase;
}

.bb-feature p {
	color: inherit;
	font-weight: 750;
}

.bb-image-strip {
	background: #050505;
	padding: 0;
}

.bb-image-strip__item {
	border: 0;
}

.bb-page-hero {
	background: #050505;
}

.bb-page-hero h1 {
	font-size: 5rem;
	line-height: 0.86;
}

.bb-menu-page {
	padding-top: 3rem;
}

.bb-filter-tabs button {
	border-color: #050505;
	background: #fff;
	color: #050505;
	text-transform: uppercase;
}

.bb-filter-tabs button.is-active {
	background: #f36b22;
	border-color: #f36b22;
	color: #fff;
}

.bb-menu-card {
	border-color: #050505;
	background: #fff;
	box-shadow: none;
}

.bb-menu-card h3 {
	font-family: var(--bb-display-font);
	font-size: 1.8rem;
	line-height: 0.95;
	text-transform: uppercase;
}

.bb-menu-card__price {
	background: #050505;
	color: #fff;
}

.bb-map-card {
	border: 0;
	background:
		linear-gradient(135deg, rgba(243, 107, 34, 0.96), rgba(5, 5, 5, 0.88)),
		repeating-linear-gradient(0deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 42px),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 42px);
}

.bb-faq button {
	color: #fff;
}

.bb-faq__panel p {
	color: #fff0df;
}

.bb-cta-band {
	background: #f36b22;
	color: #fff;
}

.bb-footer {
	background: #050505;
}

.bb-footer .bb-brand__mark {
	background: #f36b22;
	color: #fff;
}

@media (min-width: 720px) {
	.bb-slogan-wall__grid {
		grid-template-columns: 1.25fr 0.85fr 1fr;
	}
}

@media (min-width: 920px) {
	.bb-nav__list a:hover {
		background: rgba(255, 255, 255, 0.18);
	}

	.bb-hero h1 {
		font-size: 8.5rem;
	}

	.bb-section-heading h2,
	.bb-split h2,
	.bb-location h2,
	.bb-faq-layout h2,
	.bb-cta-band h2 {
		font-size: 4.6rem;
		line-height: 0.86;
	}
}

@media (max-width: 919px) {
	.bb-nav {
		background: #050505;
		border-color: rgba(255, 255, 255, 0.16);
	}

	.bb-nav__list a {
		color: #fff;
	}

	.bb-hero {
		min-height: 720px;
	}

	.bb-hero__media {
		inset: 0;
		opacity: 0.64;
	}

	.bb-hero__shade {
		background: linear-gradient(180deg, rgba(5, 5, 5, 0.28), #050505 92%);
	}

	.bb-hero h1 {
		font-size: 4.1rem;
	}

	.bb-hero__stamp {
		right: 1rem;
		bottom: -1.5rem;
		width: 112px;
		font-size: 0.82rem;
	}

	.bb-ticker__track,
	.bb-full-menu-band__track {
		font-size: 3.6rem;
	}
}

@media (max-width: 480px) {
	.bb-brand__text {
		max-width: 160px;
		font-size: 1.25rem;
	}

	.bb-hero h1,
	.bb-page-hero h1 {
		font-size: 3.2rem;
	}

	.bb-slogan strong {
		font-size: 3.2rem;
	}

	.bb-highlight-card span {
		font-size: 2.45rem;
	}

	.bb-menu-card h3 {
		font-size: 1.45rem;
	}
}

/* Modern type pass: big, direct, reduced. Uses local/system fonts only. */
:root {
	--bb-body-font: "Aptos", "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	--bb-display-font: "Avenir Next Condensed", "DIN Condensed", "Helvetica Neue Condensed Black", "Arial Narrow", Impact, Haettenschweiler, sans-serif;
}

body {
	font-family: var(--bb-body-font);
	font-size: 18px;
	line-height: 1.38;
}

.bb-topbar {
	font-size: 0.78rem;
	font-weight: 900;
	text-transform: uppercase;
}

.bb-brand__text {
	font-family: var(--bb-body-font);
	font-size: 1.45rem;
	font-weight: 950;
	text-transform: none;
}

.bb-nav__list a,
.bb-button,
.bb-header__cta,
.bb-mobile-cta a {
	font-size: 0.96rem;
	font-weight: 950;
	text-transform: none;
}

.bb-kicker {
	font-family: var(--bb-body-font);
	font-size: 0.82rem;
	font-weight: 950;
	text-transform: uppercase;
}

.bb-hero h1 {
	max-width: 720px;
	font-size: 5.6rem;
	line-height: 0.86;
}

.bb-hero p:not(.bb-kicker) {
	max-width: 560px;
	font-size: 1.45rem;
	line-height: 1.22;
	font-weight: 650;
}

.bb-hero__actions {
	margin-top: 2rem;
}

.bb-hero__hours {
	margin-top: 1.1rem;
}

.bb-hero__hours span {
	min-height: 34px;
	font-size: 0.82rem;
}

.bb-ticker__track,
.bb-full-menu-band__track {
	font-size: 4.8rem;
	line-height: 0.82;
}

.bb-slogan strong {
	font-size: 4.9rem;
	line-height: 0.82;
}

.bb-section-heading {
	margin-bottom: 2rem;
}

.bb-section-heading h2,
.bb-split h2,
.bb-location h2,
.bb-faq-layout h2,
.bb-cta-band h2 {
	font-size: 3.8rem;
	line-height: 0.9;
}

.bb-copy p,
.bb-location address,
.bb-location .bb-hours,
.bb-faq__panel p {
	font-size: 1.18rem;
	line-height: 1.34;
}

.bb-highlight-card {
	min-height: 280px;
	padding: 1.35rem;
}

.bb-highlight-card span {
	font-size: 3.9rem;
	line-height: 0.84;
}

.bb-highlight-card p {
	max-width: 18rem;
	font-size: 1rem;
	line-height: 1.25;
}

.bb-feature h3 {
	font-size: 2.8rem;
	line-height: 0.86;
}

.bb-feature p {
	font-size: 1rem;
	line-height: 1.25;
}

.bb-menu-section__heading h2 {
	font-size: 3rem;
	line-height: 0.88;
}

.bb-menu-section__heading p {
	max-width: 42rem;
	font-size: 1rem;
	line-height: 1.25;
}

.bb-menu-card h3 {
	font-size: 2rem;
	line-height: 0.95;
}

.bb-menu-card p {
	max-width: 34rem;
	font-size: 0.96rem;
	line-height: 1.25;
}

@media (min-width: 920px) {
	.bb-hero h1 {
		font-size: 9rem;
	}

	.bb-hero p:not(.bb-kicker) {
		font-size: 1.62rem;
	}

	.bb-section-heading h2,
	.bb-split h2,
	.bb-location h2,
	.bb-faq-layout h2,
	.bb-cta-band h2 {
		font-size: 5.4rem;
	}

	.bb-slogan strong {
		font-size: 5.8rem;
	}
}

@media (max-width: 919px) {
	body {
		font-size: 17px;
	}

	.bb-hero h1 {
		font-size: 4.6rem;
	}

	.bb-hero p:not(.bb-kicker) {
		font-size: 1.18rem;
	}

	.bb-section-heading h2,
	.bb-split h2,
	.bb-location h2,
	.bb-faq-layout h2,
	.bb-cta-band h2 {
		font-size: 3.3rem;
	}
}

@media (max-width: 480px) {
	.bb-brand__text {
		max-width: none;
		font-size: 1.12rem;
	}

	.bb-topbar {
		font-size: 0.7rem;
	}

	.bb-hero h1,
	.bb-page-hero h1 {
		font-size: 3.55rem;
	}

	.bb-hero p:not(.bb-kicker) {
		font-size: 1.08rem;
	}

	.bb-ticker__track,
	.bb-full-menu-band__track {
		font-size: 3.05rem;
	}

	.bb-slogan strong {
		font-size: 3.55rem;
	}

	.bb-highlight-card {
		min-height: 230px;
	}

	.bb-highlight-card span {
		font-size: 3.15rem;
	}

	.bb-menu-card h3 {
		font-size: 1.7rem;
	}
}

/* Aarau city-red pass. Official CD lists Aarau-Rot as #c90c0f; no official city logo is embedded. */
:root {
	--bb-city-red: #c90c0f;
	--bb-red: #c90c0f;
}

.bb-header,
.bb-header.is-scrolled,
.bb-button,
.bb-ticker,
.bb-full-menu-band,
.bb-slogan--orange,
.bb-highlight-card:nth-child(2n),
.bb-feature:nth-child(2),
.bb-filter-tabs button.is-active,
.bb-cta-band,
.bb-mobile-cta a:first-child {
	background: var(--bb-city-red);
}

.bb-button,
.bb-highlight-card:nth-child(2n),
.bb-feature:nth-child(2),
.bb-filter-tabs button.is-active {
	border-color: var(--bb-city-red);
}

.bb-kicker,
.bb-hero .bb-kicker,
.bb-link,
.bb-button--ghost,
.bb-brand__mark,
.bb-footer h2 {
	color: var(--bb-city-red);
}

.bb-brand__mark {
	background: #fff;
}

.bb-hero__stamp {
	background: var(--bb-city-red);
}

.bb-map-card {
	background:
		linear-gradient(135deg, rgba(201, 12, 15, 0.96), rgba(5, 5, 5, 0.88)),
		repeating-linear-gradient(0deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 42px),
		repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 1px, transparent 1px 42px);
}

.bb-aarau-mark {
	position: absolute;
	right: 0;
	top: 7.6rem;
	display: grid;
	gap: 0.25rem;
	min-width: 180px;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: rgba(5, 5, 5, 0.74);
	color: #fff;
}

.bb-aarau-mark span,
.bb-local-line span {
	display: block;
	width: 100%;
	height: 18px;
	background: var(--bb-city-red);
}

.bb-aarau-mark strong {
	font-family: var(--bb-body-font);
	font-size: 1.28rem;
	font-weight: 950;
	line-height: 1;
}

.bb-aarau-mark small {
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.bb-local-line {
	display: inline-grid;
	grid-template-columns: 62px auto;
	align-items: center;
	gap: 0.7rem;
	margin: 0.2rem 0 1.25rem;
	color: #050505;
	font-weight: 950;
	text-transform: uppercase;
}

@media (max-width: 919px) {
	.bb-aarau-mark {
		position: static;
		width: max-content;
		max-width: 100%;
		margin-top: 1.1rem;
	}
}

/* Aarau line-art illustration based on the provided street reference. */
.bb-hero {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.bb-hero::after {
  aspect-ratio: 16 / 9;
  background: url("../img/aarau-line-karikatur.svg") center / contain no-repeat;
  bottom: clamp(3.5rem, 7vw, 7.5rem);
  content: "";
  opacity: .94;
  pointer-events: none;
  position: absolute;
  right: clamp(-9rem, -6vw, -2rem);
  width: min(48vw, 640px);
  z-index: 1;
}

.bb-hero__content,
.bb-hero__inner,
.bb-hero__actions,
.bb-hero__stamp,
.bb-aarau-mark {
  position: relative;
  z-index: 2;
}

.bb-location-card {
  overflow: hidden;
  position: relative;
}

.bb-location-card::after {
  aspect-ratio: 16 / 9;
  background: url("../img/aarau-line-karikatur.svg") center / contain no-repeat;
  bottom: -42px;
  content: "";
  opacity: .11;
  pointer-events: none;
  position: absolute;
  right: -100px;
  width: min(52vw, 520px);
}

.bb-location-card > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .bb-hero::after {
    bottom: 7rem;
    opacity: .24;
    right: -48vw;
    width: 112vw;
  }
}

@media (max-width: 640px) {
  .bb-hero::after {
    bottom: 6rem;
    opacity: .2;
    right: -58vw;
    width: 128vw;
  }

  .bb-location-card::after {
    opacity: .08;
    right: -180px;
    width: 720px;
  }
}

/* Aarau old-town top-view illustration from the provided aerial reference. */
.bb-slogan-wall,
.bb-menu-highlight,
.bb-menu-preview,
.bb-home-menu {
  overflow: hidden;
  position: relative;
}

.bb-slogan-wall::after,
.bb-menu-highlight::after {
  aspect-ratio: 16 / 9;
  background: url("../img/aarau-map-karikatur.svg") center / contain no-repeat;
  content: "";
  opacity: .18;
  pointer-events: none;
  position: absolute;
  right: clamp(-220px, -10vw, -80px);
  top: clamp(1.5rem, 5vw, 5rem);
  width: min(58vw, 760px);
  z-index: 0;
}

.bb-slogan-wall > *,
.bb-menu-highlight > *,
.bb-menu-preview > *,
.bb-home-menu > * {
  position: relative;
  z-index: 1;
}

.bb-menu-preview::before,
.bb-home-menu::before {
  aspect-ratio: 16 / 9;
  background: url("../img/aarau-map-karikatur.svg") center / contain no-repeat;
  bottom: -8rem;
  content: "";
  left: clamp(-280px, -16vw, -120px);
  opacity: .08;
  pointer-events: none;
  position: absolute;
  width: min(64vw, 860px);
  z-index: 0;
}

@media (max-width: 760px) {
  .bb-slogan-wall::after,
  .bb-menu-highlight::after {
    opacity: .1;
    right: -340px;
    top: 3rem;
    width: 760px;
  }

  .bb-menu-preview::before,
  .bb-home-menu::before {
    bottom: -5rem;
    left: -360px;
    opacity: .06;
    width: 780px;
  }
}

/* Fix: keep the Aarau caricature out of the hero. The food photo must lead. */
.bb-hero::after {
  display: none !important;
}

.bb-location-card::after {
  opacity: .05 !important;
  right: -180px !important;
  width: min(62vw, 520px) !important;
}

.bb-slogan-wall::after,
.bb-menu-highlight::after {
  opacity: .07 !important;
  right: clamp(-360px, -18vw, -180px) !important;
  transform: rotate(-2deg);
}

.bb-menu-preview::before,
.bb-home-menu::before {
  opacity: .045 !important;
}

@media (max-width: 900px) {
  .bb-location-card::after,
  .bb-slogan-wall::after,
  .bb-menu-highlight::after,
  .bb-menu-preview::before,
  .bb-home-menu::before {
    display: none !important;
  }
}


/* Hero repair: keep the first viewport bold, but stop overlaps and broken bars. */
.bb-hero {
  min-height: clamp(660px, 74vh, 860px) !important;
}

.bb-hero__inner {
  align-items: center !important;
  display: grid !important;
  grid-template-columns: minmax(0, 48%) minmax(0, 52%) !important;
  min-height: clamp(660px, 74vh, 860px) !important;
  position: relative !important;
}

.bb-hero__content {
  max-width: 760px !important;
  padding-bottom: clamp(8rem, 13vh, 11rem) !important;
  padding-top: clamp(4rem, 7vh, 7rem) !important;
}

.bb-hero h1,
.bb-hero__title,
.bb-hero-title {
  font-size: clamp(4.25rem, 7.1vw, 8.3rem) !important;
  letter-spacing: 0 !important;
  line-height: .88 !important;
  max-width: 760px !important;
  text-wrap: balance !important;
}

.bb-hero__subtitle,
.bb-hero__lead,
.bb-hero p {
  font-size: clamp(1.18rem, 1.45vw, 1.7rem) !important;
  line-height: 1.18 !important;
  max-width: 640px !important;
}

.bb-hero__stamp {
  bottom: clamp(10rem, 14vh, 13rem) !important;
  height: 128px !important;
  left: clamp(2rem, 10vw, 8rem) !important;
  position: absolute !important;
  transform: rotate(-7deg) !important;
  width: 128px !important;
  z-index: 3 !important;
}

.bb-hero__actions,
.bb-hero .bb-actions,
.bb-hero .bb-quick-actions,
.bb-hero .hero-actions {
  align-items: center !important;
  background: rgba(0, 0, 0, .72) !important;
  border: 1px solid rgba(255, 248, 236, .18) !important;
  border-radius: 0 !important;
  bottom: clamp(2.2rem, 4vh, 3.6rem) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .7rem !important;
  left: clamp(1.25rem, 10vw, 8rem) !important;
  max-width: min(760px, calc(100vw - 2.5rem)) !important;
  padding: .8rem !important;
  position: absolute !important;
  right: auto !important;
  width: auto !important;
  z-index: 4 !important;
}

.bb-hero__actions::before,
.bb-hero__actions::after,
.bb-hero .bb-actions::before,
.bb-hero .bb-actions::after,
.bb-hero .bb-quick-actions::before,
.bb-hero .bb-quick-actions::after,
.bb-hero .hero-actions::before,
.bb-hero .hero-actions::after {
  display: none !important;
}

.bb-hero__actions a,
.bb-hero .bb-actions a,
.bb-hero .bb-quick-actions a,
.bb-hero .hero-actions a,
.bb-hero .bb-button,
.bb-hero .button {
  border-radius: 999px !important;
  box-shadow: none !important;
  flex: 0 0 auto !important;
  min-height: 50px !important;
  white-space: nowrap !important;
  width: auto !important;
}

.bb-hero .bb-hours,
.bb-hero__hours,
.bb-hero .bb-meta,
.bb-hero__meta {
  flex-basis: 100% !important;
  margin-top: .1rem !important;
  max-width: 100% !important;
}

@media (max-width: 1100px) {
  .bb-hero__inner {
    grid-template-columns: 1fr !important;
  }

  .bb-hero__content {
    max-width: 720px !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .bb-hero h1,
  .bb-hero__title,
  .bb-hero-title {
    font-size: clamp(3.7rem, 12vw, 6.8rem) !important;
  }
}

@media (max-width: 760px) {
  .bb-hero {
    min-height: 680px !important;
  }

  .bb-hero__inner {
    min-height: 680px !important;
  }

  .bb-hero__content {
    padding-bottom: 13.5rem !important;
    padding-top: 3.5rem !important;
  }

  .bb-hero h1,
  .bb-hero__title,
  .bb-hero-title {
    font-size: clamp(3.05rem, 15vw, 5.15rem) !important;
    max-width: 11ch !important;
  }

  .bb-hero__subtitle,
  .bb-hero__lead,
  .bb-hero p {
    font-size: 1.08rem !important;
    max-width: 22rem !important;
  }

  .bb-hero__stamp {
    bottom: 12.8rem !important;
    height: 92px !important;
    left: 1.25rem !important;
    width: 92px !important;
  }

  .bb-hero__actions,
  .bb-hero .bb-actions,
  .bb-hero .bb-quick-actions,
  .bb-hero .hero-actions {
    bottom: 1rem !important;
    left: 1rem !important;
    max-width: calc(100vw - 2rem) !important;
    right: 1rem !important;
  }
}

/* Animated Brotkorb wordmark in the hero, adapted from the supplied Recursive demo. */
.bb-word-fan-sr {
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.bb-hero h1.has-brotkorb-fan,
.bb-hero__title.has-brotkorb-fan,
.bb-hero-title.has-brotkorb-fan {
  display: block !important;
  font-size: 1rem !important;
  line-height: 1 !important;
  max-width: 820px !important;
}

.bb-word-fan {
  color: rgba(255, 248, 236, .96) !important;
  display: inline-flex !important;
  font-family: "Recursive", var(--bb-display-font, Impact), sans-serif !important;
  font-size: clamp(4.25rem, 8.1vw, 8.8rem) !important;
  font-variation-settings: "wght" 940, "CASL" .25, "MONO" 0, "slnt" -6, "CRSV" .5 !important;
  font-weight: 940 !important;
  letter-spacing: 0 !important;
  line-height: .78 !important;
  margin: .06em 0 .16em !important;
  position: relative !important;
  text-transform: none !important;
}

.bb-word-fan-wrap {
  align-items: center !important;
  display: inline-flex !important;
  justify-content: flex-start !important;
  position: relative !important;
}

.bb-word-fan-text {
  display: flex !important;
  line-height: .78 !important;
}

.bb-word-fan-ghost {
  opacity: .16 !important;
  pointer-events: none !important;
  user-select: none !important;
}

.bb-word-fan-live {
  display: flex !important;
  left: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  top: 0 !important;
}

.bb-word-fan-char {
  display: inline-block !important;
  white-space: pre !important;
  will-change: transform, opacity !important;
}

.bb-hero-slogan-line {
  color: #fff8ec !important;
  display: block !important;
  font-family: var(--bb-display-font, Impact), sans-serif !important;
  font-size: clamp(2.55rem, 4.65vw, 5.45rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  line-height: .9 !important;
  max-width: 11ch !important;
  text-transform: uppercase !important;
}

@media (prefers-reduced-motion: reduce) {
  .bb-word-fan-char {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .bb-word-fan {
    font-size: clamp(3.2rem, 16vw, 4.7rem) !important;
  }

  .bb-hero-slogan-line {
    font-size: clamp(2.5rem, 13vw, 4rem) !important;
    max-width: 10ch !important;
  }
}

/* Separate animated Brotkorb section. This must not modify the hero title. */
.bb-word-fan-section {
  background: #070707;
  border-block: 10px solid var(--bb-city-red, #c90c0f);
  color: #fff8ec;
  overflow: hidden;
  padding: clamp(3.25rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
  position: relative;
}

.bb-word-fan-section::after {
  background: var(--bb-city-red, #c90c0f);
  content: "";
  height: 100%;
  opacity: .82;
  position: absolute;
  right: clamp(-9rem, -6vw, -3rem);
  top: 0;
  transform: skewX(-13deg);
  width: clamp(8rem, 18vw, 18rem);
}

.bb-word-fan-section__inner {
  margin-inline: auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.bb-word-fan-kicker {
  color: var(--bb-city-red, #c90c0f);
  font-family: var(--bb-body-font, sans-serif);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 900;
  letter-spacing: .02em;
  margin: 0 0 .85rem;
  text-transform: uppercase;
}

.bb-word-fan-heading {
  font-size: 1rem;
  line-height: 1;
  margin: 0;
}

.bb-word-fan-section .bb-word-fan {
  color: #fff8ec !important;
  display: inline-flex !important;
  font-size: clamp(4.8rem, 12vw, 12.5rem) !important;
  margin: 0 !important;
  max-width: 100%;
}

.bb-word-fan-copy {
  color: #fff8ec;
  font-family: var(--bb-display-font, Impact), sans-serif;
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .9;
  margin: clamp(1.1rem, 2vw, 1.8rem) 0 0;
  max-width: 11ch;
  text-transform: uppercase;
}

.bb-hero .bb-word-fan,
.bb-hero .bb-hero-slogan-line {
  display: none !important;
}

@media (max-width: 760px) {
  .bb-word-fan-section {
    padding: 3rem 1rem 3.4rem;
  }

  .bb-word-fan-section::after {
    opacity: .28;
    right: -9rem;
    width: 13rem;
  }

  .bb-word-fan-section .bb-word-fan {
    font-size: clamp(3.25rem, 18vw, 5.4rem) !important;
  }

  .bb-word-fan-copy {
    font-size: clamp(2.15rem, 12vw, 3.9rem);
  }
}

/* Final hero layout reset: remove earlier absolute-position experiments. */
body .bb-hero {
  display: block !important;
  min-height: auto !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: relative !important;
}

body .bb-hero::after {
  display: none !important;
}

body .bb-hero__inner {
  align-items: stretch !important;
  display: grid !important;
  grid-template-columns: minmax(0, 50%) minmax(0, 50%) !important;
  min-height: clamp(660px, 76vh, 840px) !important;
  position: relative !important;
}

body .bb-hero__content {
  align-self: center !important;
  display: flex !important;
  flex-direction: column !important;
  gap: clamp(1rem, 2vw, 1.35rem) !important;
  justify-content: center !important;
  max-width: 760px !important;
  padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 5vw, 5rem) clamp(4rem, 7vw, 6rem) !important;
  position: relative !important;
  z-index: 3 !important;
}

body .bb-hero h1,
body .bb-hero__title,
body .bb-hero-title {
  display: block !important;
  font-family: var(--bb-display-font, Impact), sans-serif !important;
  font-size: clamp(4.2rem, 7vw, 7.8rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  line-height: .86 !important;
  margin: 0 !important;
  max-width: 9.8ch !important;
  text-transform: uppercase !important;
}

body .bb-hero__subtitle,
body .bb-hero__lead {
  font-size: clamp(1.18rem, 1.5vw, 1.62rem) !important;
  font-weight: 850 !important;
  line-height: 1.14 !important;
  margin: 0 !important;
  max-width: 28rem !important;
}

body .bb-hero__stamp {
  align-items: center !important;
  align-self: flex-start !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  height: clamp(88px, 9vw, 124px) !important;
  justify-content: center !important;
  left: auto !important;
  margin: .2rem 0 0 !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: rotate(-7deg) !important;
  width: clamp(88px, 9vw, 124px) !important;
  z-index: 3 !important;
}

body .bb-hero__actions,
body .bb-hero .bb-actions,
body .bb-hero .bb-quick-actions,
body .bb-hero .hero-actions {
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  bottom: auto !important;
  box-shadow: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .75rem !important;
  left: auto !important;
  margin: .25rem 0 0 !important;
  max-width: 100% !important;
  padding: 0 !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  width: auto !important;
  z-index: 3 !important;
}

body .bb-hero__actions::before,
body .bb-hero__actions::after,
body .bb-hero .bb-actions::before,
body .bb-hero .bb-actions::after,
body .bb-hero .bb-quick-actions::before,
body .bb-hero .bb-quick-actions::after,
body .bb-hero .hero-actions::before,
body .bb-hero .hero-actions::after {
  display: none !important;
}

body .bb-hero__actions a,
body .bb-hero .bb-actions a,
body .bb-hero .bb-quick-actions a,
body .bb-hero .hero-actions a,
body .bb-hero .bb-button,
body .bb-hero .button {
  border-radius: 999px !important;
  flex: 0 0 auto !important;
  min-height: 50px !important;
  padding-inline: 1.35rem !important;
  white-space: nowrap !important;
  width: auto !important;
}

body .bb-hero .bb-hours,
body .bb-hero__hours,
body .bb-hero .bb-meta,
body .bb-hero__meta,
body .bb-hero .bb-location-card,
body .bb-hero .bb-hero-card,
body .bb-hero__card {
  bottom: auto !important;
  left: auto !important;
  margin: .25rem 0 0 !important;
  max-width: min(100%, 44rem) !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  width: 100% !important;
  z-index: 2 !important;
}

body .bb-hero .bb-location-card::before,
body .bb-hero .bb-hero-card::before,
body .bb-hero__card::before {
  max-width: 100% !important;
  width: 100% !important;
}

body .bb-hero .bb-location-card::after,
body .bb-hero .bb-hero-card::after,
body .bb-hero__card::after {
  display: none !important;
}

body .bb-hero .bb-location-card .bb-hero__actions,
body .bb-hero .bb-hero-card .bb-hero__actions,
body .bb-hero__card .bb-hero__actions {
  background: rgba(0, 0, 0, .88) !important;
  padding: .85rem !important;
}

body .bb-hero__media,
body .bb-hero__image,
body .bb-hero-media {
  min-height: 100% !important;
  position: relative !important;
}

body .bb-hero__media img,
body .bb-hero__image img,
body .bb-hero-media img {
  height: 100% !important;
  object-fit: cover !important;
  width: 100% !important;
}

@media (max-width: 1020px) {
  body .bb-hero__inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  body .bb-hero__content {
    padding: 4rem 1.25rem 3rem !important;
  }

  body .bb-hero h1,
  body .bb-hero__title,
  body .bb-hero-title {
    font-size: clamp(3.4rem, 13vw, 6.4rem) !important;
  }
}

@media (max-width: 640px) {
  body .bb-hero__content {
    gap: .9rem !important;
    padding: 3rem 1rem 2.4rem !important;
  }

  body .bb-hero h1,
  body .bb-hero__title,
  body .bb-hero-title {
    font-size: clamp(3rem, 15vw, 4.75rem) !important;
    max-width: 9ch !important;
  }

  body .bb-hero__subtitle,
  body .bb-hero__lead {
    font-size: 1.08rem !important;
  }

  body .bb-hero__actions,
  body .bb-hero .bb-actions,
  body .bb-hero .bb-quick-actions,
  body .bb-hero .hero-actions {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  body .bb-hero__actions a,
  body .bb-hero .bb-actions a,
  body .bb-hero .bb-quick-actions a,
  body .bb-hero .hero-actions a,
  body .bb-hero .bb-button,
  body .bb-hero .button {
    justify-content: center !important;
    width: 100% !important;
  }
}

/* Hero-specific cleanup: the Aarau location mark belongs below, not inside the hero CTA area. */
body .bb-hero .bb-aarau-mark {
  display: none !important;
}

body .bb-hero__content > * {
  bottom: auto !important;
  left: auto !important;
  max-width: 100% !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
}

body .bb-hero__content > .bb-hero__stamp {
  max-width: none !important;
}

/* About page story. */
.bb-about-page {
  background: #070707;
  color: #fff8ec;
}

.bb-about-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .72) 48%, rgba(0, 0, 0, .2) 100%),
    var(--bb-city-red, #c90c0f);
  border-bottom: 10px solid var(--bb-city-red, #c90c0f);
  min-height: clamp(360px, 48vh, 560px);
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 6vw, 6rem);
}

.bb-about-hero__inner {
  margin-inline: auto;
  max-width: 1180px;
}

.bb-about-page .bb-kicker {
  color: var(--bb-city-red, #c90c0f);
  font-size: clamp(.88rem, 1.2vw, 1.1rem);
  font-weight: 950;
  letter-spacing: .03em;
  margin: 0 0 .7rem;
  text-transform: uppercase;
}

.bb-about-hero h1,
.bb-about-story h2 {
  color: #fff8ec;
  font-family: var(--bb-display-font, Impact), sans-serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .84;
  margin: 0;
  max-width: 8.5ch;
  text-transform: uppercase;
}

.bb-about-hero p:not(.bb-kicker) {
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  font-weight: 850;
  line-height: 1.16;
  margin: 1.4rem 0 0;
  max-width: 37rem;
}

.bb-about-story {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 6vw, 6rem);
}

.bb-about-story__grid {
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  margin-inline: auto;
  max-width: 1180px;
}

.bb-about-story h2 {
  font-size: clamp(3.4rem, 7vw, 7.8rem);
}

.bb-about-story__copy {
  display: grid;
  gap: 1.2rem;
}

.bb-about-story__copy p {
  color: rgba(255, 248, 236, .88);
  font-size: clamp(1.1rem, 1.55vw, 1.45rem);
  font-weight: 650;
  line-height: 1.32;
  margin: 0;
}

.bb-about-facts {
  border-top: 1px solid rgba(255, 248, 236, .18);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-inline: auto;
  max-width: 1180px;
  padding: 0 clamp(1.25rem, 6vw, 6rem) clamp(4rem, 8vw, 7rem);
}

.bb-about-fact {
  border-right: 1px solid rgba(255, 248, 236, .18);
  padding: clamp(1.35rem, 3vw, 2.2rem);
}

.bb-about-fact:first-child {
  border-left: 1px solid rgba(255, 248, 236, .18);
}

.bb-about-fact span {
  color: var(--bb-city-red, #c90c0f);
  display: block;
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: .04em;
  margin-bottom: .35rem;
  text-transform: uppercase;
}

.bb-about-fact strong {
  color: #fff8ec;
  display: block;
  font-family: var(--bb-display-font, Impact), sans-serif;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  font-weight: 950;
  line-height: .9;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .bb-about-story__grid,
  .bb-about-facts {
    grid-template-columns: 1fr;
  }

  .bb-about-fact,
  .bb-about-fact:first-child {
    border-left: 1px solid rgba(255, 248, 236, .18);
  }
}

/* Icon for telephone buttons, including the header call button. */
a[href^="tel:"] {
  align-items: center;
  display: inline-flex;
  gap: .52rem;
}

a[href^="tel:"]::before {
  align-items: center;
  background: rgba(255, 255, 255, .15);
  border-radius: 50%;
  content: "☎";
  display: inline-flex;
  flex: 0 0 auto;
  font-size: .92em;
  height: 1.65em;
  justify-content: center;
  line-height: 1;
  width: 1.65em;
}

.bb-clean-actions a[href^="tel:"]::before {
  display: none;
}

/* Header brand logo: scoped replacement for the text wordmark only. */
:root {
  --bb-header-vector-logo: url("https://static.wixstatic.com/media/76e043_11c88d46d8b04c7aad248ecfb829dc7f~mv2.png/v1/fill/w_348,h_150,al_c,q_90,usm_0.66_1.00_0.01,enc_avif,quality_auto/logo.png");
}

header .site-title a,
header .custom-logo-link,
header .bb-brand,
header .bb-site-brand,
header .site-brand,
header .bb-header__brand,
header .bb-brand-link {
  align-items: center !important;
  background-color: #fff8ec !important;
  background-image: none !important;
  -webkit-mask: var(--bb-header-vector-logo) left center / contain no-repeat !important;
  mask: var(--bb-header-vector-logo) left center / contain no-repeat !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  height: 58px !important;
  min-width: 190px !important;
  overflow: hidden !important;
  padding: 0 !important;
  text-indent: -9999px !important;
  white-space: nowrap !important;
}

header .site-title a *,
header .custom-logo-link *,
header .bb-brand *,
header .bb-site-brand *,
header .site-brand *,
header .bb-header__brand *,
header .bb-brand-link * {
  opacity: 0 !important;
  pointer-events: none !important;
}

header .custom-logo-link img,
header img.custom-logo {
  display: none !important;
}

@media (max-width: 760px) {
  header .site-title a,
  header .custom-logo-link,
  header .bb-brand,
  header .bb-site-brand,
  header .site-brand,
  header .bb-header__brand,
  header .bb-brand-link {
    height: 44px !important;
    min-width: 142px !important;
  }
}

/* Global wide content rhythm: max 2000px with 10% side spacing. */
:root {
  --bb-page-max: 2000px;
  --bb-page-pad: clamp(1rem, 10vw, 200px);
}

header :is(.container, .bb-container, .site-header__inner, .bb-header__inner, .header-inner, .main-navigation-wrap) {
  max-width: var(--bb-page-max) !important;
  padding-left: var(--bb-page-pad) !important;
  padding-right: var(--bb-page-pad) !important;
  width: 100% !important;
}

@media (max-width: 760px) {
  :root {
    --bb-page-pad: 1rem;
  }
}

/* Header scale pass: make navigation/topline about 1.5x stronger. */
header :is(nav a, .menu a, .main-navigation a):not([href^="tel:"]) {
  font-size: clamp(1.25rem, 1.45vw, 1.55rem) !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

header a[href^="tel:"] {
  font-size: clamp(1.05rem, 1.25vw, 1.35rem) !important;
  font-weight: 950 !important;
  min-height: 58px !important;
  padding: .95rem 1.45rem !important;
}

:is(.bb-topbar, .bb-announcement, .bb-announcement-bar, .site-topbar, .topbar, .top-bar) {
  font-size: clamp(1rem, 1.2vw, 1.22rem) !important;
  font-weight: 950 !important;
  line-height: 1.2 !important;
}

@media (max-width: 760px) {
  header :is(nav a, .menu a, .main-navigation a):not([href^="tel:"]) {
    font-size: 1.08rem !important;
  }

  header a[href^="tel:"] {
    font-size: 1rem !important;
    min-height: 48px !important;
    padding: .75rem 1rem !important;
  }
}

/* Footer brand: use the real Bistro Brotkorb logo in white instead of the BB placeholder. */
footer :is(.bb-footer__brand, .footer-brand, .site-footer__brand) {
  align-items: flex-start !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.1rem !important;
}

footer :is(.bb-footer__brand, .footer-brand, .site-footer__brand)::before {
  background-color: #fff8ec !important;
  content: "" !important;
  display: block !important;
  height: clamp(64px, 6vw, 92px) !important;
  -webkit-mask: var(--bb-header-vector-logo) left center / contain no-repeat !important;
  mask: var(--bb-header-vector-logo) left center / contain no-repeat !important;
  width: clamp(210px, 19vw, 310px) !important;
}

footer :is(.bb-footer__brand, .footer-brand, .site-footer__brand) :is(.bb-footer__logo, .footer-logo, .site-footer__logo, .bb-badge, .footer-badge, h2, h3, strong):first-child {
  display: none !important;
}

footer :is(.bb-footer__brand, .footer-brand, .site-footer__brand) > :not(p) {
  display: none !important;
}

footer :is(.bb-footer__brand, .footer-brand, .site-footer__brand) > p {
  margin-top: .2rem !important;
}

/* Hide the redundant "Start" item in the primary header navigation. */
header :is(nav, .menu, .main-navigation) a[href$="/bistro-brotkorb-wp/"],
header :is(nav, .menu, .main-navigation) a[href="/"],
header :is(nav, .menu, .main-navigation) a[href="#start"] {
  display: none !important;
}

/* Footer production credit. */
footer::after {
  content: none !important;
  display: none !important;
}

.bb-footer-credit {
  border-top: 1px solid rgba(255, 248, 236, .14);
  color: rgba(255, 248, 236, .45);
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .01em;
  margin: 2.25rem auto 0;
  max-width: var(--bb-page-max, 2000px);
  padding: 1rem var(--bb-page-pad, 10vw) 0;
  text-align: center;
}

.bb-footer-credit a {
  color: rgba(255, 248, 236, .62);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}
